We shared this request example with FAB participants: url_qparams = { "limit": count, "offset": offset, "has_group": "false", "order_by": "-activity", "forecast_type": "binary", "project": tournament_id, "status": "open", "type": "forecast", "include_description": "true", } url = f"{api_info.base_url}/questions/" response = requests.get( url, headers={"Authorization": f"Token {api_info.token}"}, params=url_qparams )

But we don't want to support all these parameters, and the ones relevant are: - order_by - status - project - forecast_type - we ignore this, but assume it's binary - FAB only supports binary for now.

GET /api2/questions/?format=api&offset=40
HTTP 200 OK
Allow: GET, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 4974,
    "next": "http://www.metaculus.com/api2/questions/?format=api&limit=20&offset=60",
    "previous": "http://www.metaculus.com/api2/questions/?format=api&limit=20&offset=20",
    "results": [
        {
            "id": 35776,
            "title": "Will the proportion of people suffering from obesity be higher in 2050 compared to the current level?",
            "url_title": "obesity statistics",
            "slug": "obesity-statistics",
            "author_id": 265480,
            "author_username": "malysheva.katencka",
            "coauthors": [],
            "created_at": "2025-03-07T07:35:53.508645Z",
            "published_at": null,
            "edited_at": "2025-03-14T07:27:19.174027Z",
            "curation_status": "pending",
            "curation_status_updated_at": "2025-03-14T07:27:19.174022Z",
            "comment_count": 1,
            "status": "pending",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2049-12-31T21:00:00Z",
            "scheduled_resolve_time": "2050-01-01T19:47:00Z",
            "open_time": null,
            "nr_forecasters": 0,
            "projects": {
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "meta_description": "",
                        "is_ongoing": null,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-02-17T13:57:56.366243Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "meta_description": "",
                    "is_ongoing": null,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-02-17T13:57:56.366243Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false
                },
                "category": [
                    {
                        "id": 3691,
                        "name": "Health & Pandemics",
                        "slug": "health-pandemics",
                        "description": "Health & Pandemics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 35214,
                "title": "Will the proportion of people suffering from obesity be higher in 2050 compared to the current level?",
                "description": "Today, 2.11 billion adults over the age of 25 and 493 million children and adolescents aged five to 24 suffer from obesity or overweight. In 1990, these figures were significantly lower — 731 million and 198 million, respectively. By 2050, the number of obese people will reach 360 million.\nBillions of people: According to the World Health Organization (WHO), in 2016, more than 1.9 billion adults (over the age of 18) were overweight, of which more than 650 million were obese. These numbers have probably increased significantly since then.\n\nloneliness is found in all regions of the world, especially many people suffering from this disease are found in North America, some regions of Europe, and some other rapidly developing countries. This is due to a sharp change in diet over the past 50-70 years. The development of the sugar industry, the spread of products with a high content of sugar, salt, a large number of calories, affordable and cheap fast food, a lot of fatty unhealthy food, food additives that allow us to feel an enhanced taste of products, all this contributes to overeating and weight gain, and also affects the consumption of healthy and healthy foods such as vegetables, fruits, whole grains. It should be noted that healthy and natural food is now expensive, unlike a burger at McDonald's. It should also be noted that the world has changed, and now most people work in offices at desks and computers, come to work by car and have a lack of physical activity, which also contributes to the accumulation of fat and the development of diseases. There are also genetic factors, but this is only a small percentage.  The situation with childhood obesity is particularly alarming, the increase in the number of children with obesity leads to failures in the endocrine system, and serious problems in the future. For example, obesity is associated with a number of diseases, including type 2 diabetes, cardiovascular diseases, some types of cancer. This all leads to an increase in mortality and a decrease in the quality of life. I assume that by 2050 the number of people suffering from obesity will increase, although now there is a trend towards a healthy lifestyle and proper nutrition, the amount of sugar consumed has still not decreased",
                "created_at": "2025-03-07T07:35:53.509053Z",
                "open_time": null,
                "cp_reveal_time": null,
                "scheduled_resolve_time": "2050-01-01T19:47:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2049-12-31T21:00:00Z",
                "actual_close_time": "2049-12-31T21:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "upcoming",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "resolution_criteria": "The question will be resolved as \"yes\" if the number of obese people on the official website of the World Health Organization in 2049 is higher than in 2025, and \"no\" if the opposite is true.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35776,
                "aggregations": {
                    "recency_weighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 1,
                "user_vote": null
            },
            "forecasts_count": 0,
            "is_current_content_translated": false,
            "description": "Today, 2.11 billion adults over the age of 25 and 493 million children and adolescents aged five to 24 suffer from obesity or overweight. In 1990, these figures were significantly lower — 731 million and 198 million, respectively. By 2050, the number of obese people will reach 360 million.\nBillions of people: According to the World Health Organization (WHO), in 2016, more than 1.9 billion adults (over the age of 18) were overweight, of which more than 650 million were obese. These numbers have probably increased significantly since then.\n\nloneliness is found in all regions of the world, especially many people suffering from this disease are found in North America, some regions of Europe, and some other rapidly developing countries. This is due to a sharp change in diet over the past 50-70 years. The development of the sugar industry, the spread of products with a high content of sugar, salt, a large number of calories, affordable and cheap fast food, a lot of fatty unhealthy food, food additives that allow us to feel an enhanced taste of products, all this contributes to overeating and weight gain, and also affects the consumption of healthy and healthy foods such as vegetables, fruits, whole grains. It should be noted that healthy and natural food is now expensive, unlike a burger at McDonald's. It should also be noted that the world has changed, and now most people work in offices at desks and computers, come to work by car and have a lack of physical activity, which also contributes to the accumulation of fat and the development of diseases. There are also genetic factors, but this is only a small percentage.  The situation with childhood obesity is particularly alarming, the increase in the number of children with obesity leads to failures in the endocrine system, and serious problems in the future. For example, obesity is associated with a number of diseases, including type 2 diabetes, cardiovascular diseases, some types of cancer. This all leads to an increase in mortality and a decrease in the quality of life. I assume that by 2050 the number of people suffering from obesity will increase, although now there is a trend towards a healthy lifestyle and proper nutrition, the amount of sugar consumed has still not decreased"
        },
        {
            "id": 35769,
            "title": "Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",
            "url_title": "Israel resumes aid into Gaza before April 7, 2025?",
            "slug": "israel-resumes-aid-into-gaza-before-april-7-2025",
            "author_id": 126626,
            "author_username": "skmmcj",
            "coauthors": [],
            "created_at": "2025-03-06T03:10:42.990365Z",
            "published_at": "2025-03-09T01:33:55.696093Z",
            "edited_at": "2025-03-14T18:22:38.864312Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2025-03-09T01:33:55.696091Z",
            "comment_count": 0,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2025-03-31T11:00:00Z",
            "scheduled_resolve_time": "2025-04-07T11:00:00Z",
            "open_time": "2025-03-10T17:00:00Z",
            "nr_forecasters": 40,
            "projects": {
                "tag": [
                    {
                        "id": 32607,
                        "name": "2025 Leaderboard",
                        "slug": "2025_leaderboard",
                        "type": "tag",
                        "is_global_leaderboard": true
                    }
                ],
                "tournament": [
                    {
                        "id": 32630,
                        "type": "tournament",
                        "name": "🏆 Quarterly Cup 🏆",
                        "slug": "quarterly-cup",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/qc-hires-scaled_1_BRJlq2q.webp",
                        "prize_pool": null,
                        "start_date": "2025-01-13T06:00:00Z",
                        "close_date": "2025-04-07T18:00:00Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-10T19:55:20.161665Z",
                        "edited_at": "2025-03-12T08:39:03.765812Z",
                        "score_type": "peer_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32630,
                    "type": "tournament",
                    "name": "🏆 Quarterly Cup 🏆",
                    "slug": "quarterly-cup",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/qc-hires-scaled_1_BRJlq2q.webp",
                    "prize_pool": null,
                    "start_date": "2025-01-13T06:00:00Z",
                    "close_date": "2025-04-07T18:00:00Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-10T19:55:20.161665Z",
                    "edited_at": "2025-03-12T08:39:03.765812Z",
                    "score_type": "peer_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false
                },
                "category": [
                    {
                        "id": 3687,
                        "name": "Geopolitics",
                        "slug": "geopolitics",
                        "description": "Geopolitics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 35210,
                "title": "Will Israel lift the blockade to humanitarian aid into Gaza before April 7, 2025?",
                "description": "On January 17, 2025, Israel and Hamas agreed to a [ceasefire deal](https://en.wikipedia.org/wiki/2025_Gaza_war_ceasefire#July_2024_to_January_2025:_Philadelphi_Corridor). The deal would consist of three phases, each lasting 6 weeks. In the first phase, Hamas [released 25 hostages and the bodies of 8 more](https://apnews.com/article/israel-palestinians-hamas-war-remaining-hostages-gaza-dbedb436b04fac1c790a794a4ef03853), while Israel released hundreds of Palestinian prisoners. Israel also allowed humanitarian aid to enter Gaza, [25,000 trucks](https://x.com/gidonsaar/status/1897280908450836820) according to Israel's Minister of Foreign Affairs.\n\nThe original plan was that, in the second phase, Hamas would release all remaining alive male Israelis and Israel would release an agreed upon number of Palestinian prisoners, while the parties would also agree to a withdrawal of remaining Israeli soldiers from the Gaza Strip and a more permanent cessation of hostilities. Then, in the third phase, both Israel and Hamas would release all the remaining bodies of dead captives, Israel would end the [blockade of the Gaza Strip](https://en.wikipedia.org/wiki/Blockade_of_the_Gaza_Strip \"Blockade of the Gaza Strip\"), and Hamas would not rebuild its military capabilities.\n\nHowever, after the end of the first phase, on March 2, 2025, Israel [halted](https://www.bbc.co.uk/news/articles/ckgz7p85mdgo) all humanitarian aid and goods from entering Gaza, with the goal of pressuring Hamas into accepting a new agreement, backed by the United States. This would extend the first phase for seven more weeks and would involve Hamas releasing half of the remaining hostages.\n\nAfter the blockade, prices for essentials like sugar, oil, and chicken [rose significantly](https://apnews.com/article/israel-gaza-aid-cutoff-netanyahu-hunger-war-940ceea2c2b754d197a4f07c0cad86de). The UN called the blockade [alarming](https://www.nbcnews.com/news/world/israel-hamas-gaza-aid-barred-ceasefire-talks-criticized-un-red-cross-rcna194464) and condemned it along with [UK, France, and Germany](https://www.theguardian.com/world/2025/mar/05/uk-france-germany-israel-gaza-aid-freeze-could-breach-international-law), citing violations of humanitarian law that mandates aid access. Hamas [has insisted](https://www.nytimes.com/2025/03/02/world/middleeast/israel-aid-halt-gaza.html) on moving to the agreed second phase of the ceasefire, which would involve a full Israeli withdrawal and a permanent end to the conflict.",
                "created_at": "2025-03-06T03:10:42.990712Z",
                "open_time": "2025-03-10T17:00:00Z",
                "cp_reveal_time": "2025-03-13T17:00:00Z",
                "scheduled_resolve_time": "2025-04-07T11:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-31T11:00:00Z",
                "actual_close_time": "2025-03-31T11:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "open",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "resolution_criteria": "This question will resolve as **Yes** if, before April 7, 2025, humanitarian aid into Gaza has resumed, according to credible sources.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35769,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741626136.237312,
                                "end_time": 1741626410.770833,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.2
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741626410.770833,
                                "end_time": 1741627067.878473,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.475
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.475
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741627067.878473,
                                "end_time": 1741628619.484351,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.55
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.5396867207036312
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741628619.484351,
                                "end_time": 1741628625.739753,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.51
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.5286486887174897
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741628625.739753,
                                "end_time": 1741628628.498218,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.45
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.5063396595128097
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741628628.498218,
                                "end_time": 1741632979.36335,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.32
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.4580034295693363
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741632979.36335,
                                "end_time": 1741634895.146621,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.57
                                ],
                                "means": [
                                    0.49385419451996526
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741634895.146621,
                                "end_time": 1741638003.497139,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.57
                                ],
                                "means": [
                                    0.46721821935043095
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741638003.497139,
                                "end_time": 1741640214.054872,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.18
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.3934907542526709
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741640214.054872,
                                "end_time": 1741641862.156025,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.18
                                ],
                                "centers": [
                                    0.32
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.33142349787666187
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741641862.156025,
                                "end_time": 1741641866.440195,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.18
                                ],
                                "centers": [
                                    0.33
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3311124144119457
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741641866.440195,
                                "end_time": 1741644132.81403,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.18
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.36826328753144166
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741644132.81403,
                                "end_time": 1741648811.929414,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.18
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.3747527708190311
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741648811.929414,
                                "end_time": 1741662264.036871,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.4104388665287374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741662264.036871,
                                "end_time": 1741662266.632628,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.57
                                ],
                                "means": [
                                    0.4815365274289856
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741662266.632628,
                                "end_time": 1741685002.634734,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.57
                                ],
                                "means": [
                                    0.4815365274289856
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741685002.634734,
                                "end_time": 1741696869.979696,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.4673723274519158
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741696869.979696,
                                "end_time": 1741701441.966604,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.44954824952362626
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741701441.966604,
                                "end_time": 1741724341.843154,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.45757858976465277
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741724341.843154,
                                "end_time": 1741724409.819235,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.4028464074051198
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741724409.819235,
                                "end_time": 1741724415.023077,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.418152743949362
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741724415.023077,
                                "end_time": 1741738297.28582,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.4258059122214831
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741738297.28582,
                                "end_time": 1741739615.360685,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.40724087950142374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741739615.360685,
                                "end_time": 1741761030.835874,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.4447082617639841
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741761030.835874,
                                "end_time": 1741761037.835611,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.40402123988556093
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741761037.835611,
                                "end_time": 1741765367.019191,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.40402123988556093
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741765367.019191,
                                "end_time": 1741781412.270419,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.36
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.3767012016022903
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741781412.270419,
                                "end_time": 1741838564.146519,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.327826261628974
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741838564.146519,
                                "end_time": 1741838577.697822,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.36
                                ],
                                "interval_upper_bounds": [
                                    0.48
                                ],
                                "means": [
                                    0.34471132607528926
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741838577.697822,
                                "end_time": 1741886384.433523,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.36
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ],
                                "means": [
                                    0.34861402373222045
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741886384.433523,
                                "end_time": 1741891003.577829,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ],
                                "means": [
                                    0.3476740480821401
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741891003.577829,
                                "end_time": 1741891415.02674,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.36
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.3562171480671583
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741891415.02674,
                                "end_time": 1741928920.147532,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ],
                                "means": [
                                    0.37571879473564757
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741928920.147532,
                                "end_time": 1741929763.56313,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.43
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ],
                                "means": [
                                    0.38541771523392165
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741929763.56313,
                                "end_time": 1741962422.465995,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.45
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.40245094963722905
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741962422.465995,
                                "end_time": 1741962427.743953,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.43416655111924995
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741962427.743953,
                                "end_time": 1741966018.636776,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.4316352767493857
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741966018.636776,
                                "end_time": 1741973359.074388,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.32
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.43416655111924995
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741973359.074388,
                                "end_time": 1741973363.278558,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.46152621664569227
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741973363.278558,
                                "end_time": 1741973596.925975,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.46785440257035293
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741973596.925975,
                                "end_time": 1741974748.626297,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.38
                                ],
                                "centers": [
                                    0.45
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.45702242179876434
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741974748.626297,
                                "end_time": 1741976228.565069,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.38
                                ],
                                "centers": [
                                    0.45
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.4525703391116095
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741976228.565069,
                                "end_time": 1741976548.304395,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.42
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.42878534896708503
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741976548.304395,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.42
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.41501556329075323
                                ],
                                "histogram": [
                                    [
                                        0.2841245407359965,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.03808445092208783,
                                        0.0,
                                        0.21526221595892353,
                                        0.0,
                                        0.0,
                                        0.027714863046207582,
                                        0.0,
                                        0.2479696983050695,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.03924977263846,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.1591795704967758,
                                        0.0,
                                        0.01831563888873418,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.7337519574005283,
                                        0.0,
                                        0.15800822019738164,
                                        0.0,
                                        0.8153249963609456,
                                        0.3678794411714424,
                                        0.0,
                                        0.46890301972848125,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.1637852392905943,
                                        0.3239984154485755,
                                        0.9427852392835064,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.5898635470599414,
                                        0.0,
                                        0.1857459851945321,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.6587413533585318,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.07804183443061195,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741976548.304395,
                            "end_time": null,
                            "forecast_values": [
                                0.5800000000000001,
                                0.42
                            ],
                            "forecaster_count": 25,
                            "interval_lower_bounds": [
                                0.3
                            ],
                            "centers": [
                                0.42
                            ],
                            "interval_upper_bounds": [
                                0.52
                            ],
                            "means": [
                                0.41501556329075323
                            ],
                            "histogram": [
                                [
                                    0.2841245407359965,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.03808445092208783,
                                    0.0,
                                    0.21526221595892353,
                                    0.0,
                                    0.0,
                                    0.027714863046207582,
                                    0.0,
                                    0.2479696983050695,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.03924977263846,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.1591795704967758,
                                    0.0,
                                    0.01831563888873418,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.7337519574005283,
                                    0.0,
                                    0.15800822019738164,
                                    0.0,
                                    0.8153249963609456,
                                    0.3678794411714424,
                                    0.0,
                                    0.46890301972848125,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.1637852392905943,
                                    0.3239984154485755,
                                    0.9427852392835064,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5898635470599414,
                                    0.0,
                                    0.1857459851945321,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6587413533585318,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.07804183443061195,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 3,
                "user_vote": null
            },
            "forecasts_count": 97,
            "is_current_content_translated": false,
            "description": "On January 17, 2025, Israel and Hamas agreed to a [ceasefire deal](https://en.wikipedia.org/wiki/2025_Gaza_war_ceasefire#July_2024_to_January_2025:_Philadelphi_Corridor). The deal would consist of three phases, each lasting 6 weeks. In the first phase, Hamas [released 25 hostages and the bodies of 8 more](https://apnews.com/article/israel-palestinians-hamas-war-remaining-hostages-gaza-dbedb436b04fac1c790a794a4ef03853), while Israel released hundreds of Palestinian prisoners. Israel also allowed humanitarian aid to enter Gaza, [25,000 trucks](https://x.com/gidonsaar/status/1897280908450836820) according to Israel's Minister of Foreign Affairs.\n\nThe original plan was that, in the second phase, Hamas would release all remaining alive male Israelis and Israel would release an agreed upon number of Palestinian prisoners, while the parties would also agree to a withdrawal of remaining Israeli soldiers from the Gaza Strip and a more permanent cessation of hostilities. Then, in the third phase, both Israel and Hamas would release all the remaining bodies of dead captives, Israel would end the [blockade of the Gaza Strip](https://en.wikipedia.org/wiki/Blockade_of_the_Gaza_Strip \"Blockade of the Gaza Strip\"), and Hamas would not rebuild its military capabilities.\n\nHowever, after the end of the first phase, on March 2, 2025, Israel [halted](https://www.bbc.co.uk/news/articles/ckgz7p85mdgo) all humanitarian aid and goods from entering Gaza, with the goal of pressuring Hamas into accepting a new agreement, backed by the United States. This would extend the first phase for seven more weeks and would involve Hamas releasing half of the remaining hostages.\n\nAfter the blockade, prices for essentials like sugar, oil, and chicken [rose significantly](https://apnews.com/article/israel-gaza-aid-cutoff-netanyahu-hunger-war-940ceea2c2b754d197a4f07c0cad86de). The UN called the blockade [alarming](https://www.nbcnews.com/news/world/israel-hamas-gaza-aid-barred-ceasefire-talks-criticized-un-red-cross-rcna194464) and condemned it along with [UK, France, and Germany](https://www.theguardian.com/world/2025/mar/05/uk-france-germany-israel-gaza-aid-freeze-could-breach-international-law), citing violations of humanitarian law that mandates aid access. Hamas [has insisted](https://www.nytimes.com/2025/03/02/world/middleeast/israel-aid-halt-gaza.html) on moving to the agreed second phase of the ceasefire, which would involve a full Israeli withdrawal and a permanent end to the conflict."
        },
        {
            "id": 35764,
            "title": "Will Dwayne \"The Rock\" Johnson be the highest-paid actor in 2025?",
            "url_title": "\"The Rock\" is the highest-paid actor in 2025?",
            "slug": "the-rock-is-the-highest-paid-actor-in-2025",
            "author_id": 139876,
            "author_username": "Perspectus",
            "coauthors": [],
            "created_at": "2025-03-05T02:10:16.650894Z",
            "published_at": "2025-03-05T22:47:07.043775Z",
            "edited_at": "2025-03-10T16:03:58.878151Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2025-03-05T22:47:07.043773Z",
            "comment_count": 1,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2026-01-01T04:59:00Z",
            "scheduled_resolve_time": "2026-03-01T05:00:00Z",
            "open_time": "2025-03-06T22:46:43Z",
            "nr_forecasters": 2,
            "projects": {
                "tag": [
                    {
                        "id": 32607,
                        "name": "2025 Leaderboard",
                        "slug": "2025_leaderboard",
                        "type": "tag",
                        "is_global_leaderboard": true
                    }
                ],
                "category": [
                    {
                        "id": 3696,
                        "name": "Sports & Entertainment",
                        "slug": "sports-entertainment",
                        "description": "Sports & Entertainment",
                        "type": "category"
                    }
                ],
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "meta_description": "",
                        "is_ongoing": null,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-02-17T13:57:56.366243Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "meta_description": "",
                    "is_ongoing": null,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-02-17T13:57:56.366243Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35208,
                "title": "Will Dwayne \"The Rock\" Johnson be the highest-paid actor in 2025?",
                "description": "Dwayne \"The Rock\" Johnson has now been the highest paid actor in the following years: [2016](https://www.forbes.com/actors/#28a1c26b40fe), [2019](https://www.forbes.com/sites/maddieberg/2019/08/21/the-highest-paid-actors-2019-dwayne-johnson-bradley-cooper-and-chris-hemsworth/), [2020](https://www.forbes.com/sites/maddieberg/2020/08/11/the-highest-paid-actors-of-2020-dwayne-johnson-ryan-reynolds/#7084b268112b), 2021, [2022](https://www.forbes.com/sites/lisettevoytko/2022/02/09/the-highest-paid-entertainers-2022/), and [2024](https://www.forbes.com/sites/mattcraig/2025/02/28/the-highest-paid-actors-of-2024/). \n\nAs of this writing, there is one film set to be released in 2025 in which \"The Rock\" appears:\n\n* [The Smashing Machine](https://www.imdb.com/title/tt11214558/). \"The story of mixed-martial arts and UFC champion Mark Kerr.\" Along with The Rock, it stars Emily Blunt and is directed by Benny Sadfie.\n\nThere are a number of movies in varying states of readiness including two in pre-production ([Fast X: Part 2](https://www.imdb.com/title/tt27550022/?ref_=nm_flmg_job_1_unrel_t_9); [Untitled Fast & Furious Film](https://www.imdb.com/title/tt27920268/?ref_=nm_flmg_job_1_unrel_t_8)) and two in production ([A live action version of Moana](https://www.imdb.com/title/tt27419466/?ref_=nm_flmg_job_1_unrel_t_2); [Big Trouble Little China](https://www.imdb.com/title/tt4728328/?ref_=nm_flmg_job_1_unrel_t_5))",
                "created_at": "2025-03-05T02:10:16.651254Z",
                "open_time": "2025-03-06T22:46:43Z",
                "cp_reveal_time": "2025-03-10T21:46:43Z",
                "scheduled_resolve_time": "2026-03-01T05:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2026-01-01T04:59:00Z",
                "actual_close_time": "2026-01-01T04:59:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "open",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "resolution_criteria": "* **Yes:** If Dwayne Johnson ranks as the highest-paid actor on Forbes' highest-paid actors of 2025 list.​\n* **No:** If another actor holds the top position.",
                "fine_print": "If Forbes does not publish the list for 2025 before January 1, 2027, the question will be **annulled**. ",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35764,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741326949.44424,
                                "end_time": 1741622628.674032,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.33
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.33
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741622628.674032,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.265
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.265
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741622628.674032,
                            "end_time": null,
                            "forecast_values": [
                                0.735,
                                0.265
                            ],
                            "forecaster_count": 2,
                            "interval_lower_bounds": [
                                0.2
                            ],
                            "centers": [
                                0.265
                            ],
                            "interval_upper_bounds": [
                                0.33
                            ],
                            "means": [
                                0.265
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 2,
            "is_current_content_translated": false,
            "description": "Dwayne \"The Rock\" Johnson has now been the highest paid actor in the following years: [2016](https://www.forbes.com/actors/#28a1c26b40fe), [2019](https://www.forbes.com/sites/maddieberg/2019/08/21/the-highest-paid-actors-2019-dwayne-johnson-bradley-cooper-and-chris-hemsworth/), [2020](https://www.forbes.com/sites/maddieberg/2020/08/11/the-highest-paid-actors-of-2020-dwayne-johnson-ryan-reynolds/#7084b268112b), 2021, [2022](https://www.forbes.com/sites/lisettevoytko/2022/02/09/the-highest-paid-entertainers-2022/), and [2024](https://www.forbes.com/sites/mattcraig/2025/02/28/the-highest-paid-actors-of-2024/). \n\nAs of this writing, there is one film set to be released in 2025 in which \"The Rock\" appears:\n\n* [The Smashing Machine](https://www.imdb.com/title/tt11214558/). \"The story of mixed-martial arts and UFC champion Mark Kerr.\" Along with The Rock, it stars Emily Blunt and is directed by Benny Sadfie.\n\nThere are a number of movies in varying states of readiness including two in pre-production ([Fast X: Part 2](https://www.imdb.com/title/tt27550022/?ref_=nm_flmg_job_1_unrel_t_9); [Untitled Fast & Furious Film](https://www.imdb.com/title/tt27920268/?ref_=nm_flmg_job_1_unrel_t_8)) and two in production ([A live action version of Moana](https://www.imdb.com/title/tt27419466/?ref_=nm_flmg_job_1_unrel_t_2); [Big Trouble Little China](https://www.imdb.com/title/tt4728328/?ref_=nm_flmg_job_1_unrel_t_5))"
        },
        {
            "id": 35760,
            "title": "Will the Democrats control the House of Representatives at any point before Jan 3, 2027?",
            "url_title": "Dem House before 2027?",
            "slug": "dem-house-before-2027",
            "author_id": 265213,
            "author_username": "ChastityQM",
            "coauthors": [],
            "created_at": "2025-03-04T17:52:57.998445Z",
            "published_at": "2025-03-09T14:18:35.216213Z",
            "edited_at": "2025-03-14T05:15:33.463625Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2025-03-09T14:18:35.216211Z",
            "comment_count": 3,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2027-01-03T06:00:00Z",
            "scheduled_resolve_time": "2027-01-03T06:00:00Z",
            "open_time": "2025-03-11T14:18:00Z",
            "nr_forecasters": 7,
            "projects": {
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "meta_description": "",
                        "is_ongoing": null,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-02-17T13:57:56.366243Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "meta_description": "",
                    "is_ongoing": null,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-02-17T13:57:56.366243Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false
                },
                "category": [
                    {
                        "id": 3689,
                        "name": "Politics",
                        "slug": "politics",
                        "description": "Politics",
                        "type": "category"
                    },
                    {
                        "id": 3685,
                        "name": "Elections",
                        "slug": "elections",
                        "description": "Elections",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 35205,
                "title": "Will the Democrats control the House of Representatives at any point before Jan 3, 2027?",
                "description": "At time of writing, the United States House of Representatives has a 218-215 R majority, and two vacant seats. This is the slimmest majority in the House for any party since the [72nd Congress](https://en.wikipedia.org/wiki/72nd_United_States_Congress \"72nd United States Congress\") in 1931; in that case, control switched from a 217-216 R majority at the start, to a 220-206 D majority at the end.\n\nOn November 3, 2026, there will be an election for all sitting Representatives, and some will pass on their seats to their successors on January 3, 2027; this is regarding changes in number of Representatives for both parties that take place *before* January 3, 2027, for any reason. Seats can change parties or become vacant due to things such as resignations, deaths, and special elections.",
                "created_at": "2025-03-04T17:52:57.998863Z",
                "open_time": "2025-03-11T14:18:00Z",
                "cp_reveal_time": "2025-03-15T14:18:00Z",
                "scheduled_resolve_time": "2027-01-03T06:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2027-01-03T06:00:00Z",
                "actual_close_time": "2027-01-03T06:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "open",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "resolution_criteria": "Resolves **Yes** if at any point before January 3, 2027, there are more Democrats than Republicans in the United States House of Representatives. Resolves **No** if this does not occur. Note that if the number of Democrats only becomes equal to the number of Republicans, it still resolves **No**.",
                "fine_print": "Independents who caucus with the Republicans will be counted as Republicans; likewise independents who caucus with Democrats.\n\nIf the extremely unlikely event that the date the 120th Congress starts changes, then that will be the new resolution date.",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35760,
                "aggregations": {
                    "recency_weighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 1,
                "user_vote": null
            },
            "forecasts_count": 7,
            "is_current_content_translated": false,
            "description": "At time of writing, the United States House of Representatives has a 218-215 R majority, and two vacant seats. This is the slimmest majority in the House for any party since the [72nd Congress](https://en.wikipedia.org/wiki/72nd_United_States_Congress \"72nd United States Congress\") in 1931; in that case, control switched from a 217-216 R majority at the start, to a 220-206 D majority at the end.\n\nOn November 3, 2026, there will be an election for all sitting Representatives, and some will pass on their seats to their successors on January 3, 2027; this is regarding changes in number of Representatives for both parties that take place *before* January 3, 2027, for any reason. Seats can change parties or become vacant due to things such as resignations, deaths, and special elections."
        },
        {
            "id": 35745,
            "title": "Will Sam Altman formally take equity in OpenAI by December 31, 2025, 11:59 PM ET?",
            "url_title": "Sam Altman to take equity in OpenAI in 2025?",
            "slug": "sam-altman-to-take-equity-in-openai-in-2025",
            "author_id": 124170,
            "author_username": "Skoogeer",
            "coauthors": [],
            "created_at": "2025-03-03T14:47:36.583354Z",
            "published_at": null,
            "edited_at": "2025-03-03T14:47:40.434515Z",
            "curation_status": "pending",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "pending",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2026-01-01T07:59:00Z",
            "scheduled_resolve_time": "2026-01-09T22:41:00Z",
            "open_time": null,
            "nr_forecasters": 0,
            "projects": {
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "meta_description": "",
                        "is_ongoing": null,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-02-17T13:57:56.366243Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "meta_description": "",
                    "is_ongoing": null,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-02-17T13:57:56.366243Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false
                },
                "category": [
                    {
                        "id": 3698,
                        "name": "Economy & Business",
                        "slug": "economy-business",
                        "description": "Economy & Business",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 35192,
                "title": "Will Sam Altman formally take equity in OpenAI by December 31, 2025, 11:59 PM ET?",
                "description": "OpenAI began as a nonprofit research organization focused on developing safe AI for the benefit of humanity. In 2019, it introduced a for-profit subsidiary (OpenAI LP) operating under a capped-profit model, whereby investor returns are limited to a predetermined multiple while ultimate control remains with the nonprofit board. Historically, CEO Sam Altman has deliberately foregone any personal equity stake—accepting only modest compensation—in order to preserve the nonprofit’s independent oversight.\n\n## Recent Developments\n\nIn November 2023, a boardroom dispute briefly resulted in Altman’s ouster, only to be reversed after significant internal and investor pushback. This event highlighted internal tensions regarding OpenAI’s unconventional governance.\n\nIn 2024, discussions emerged about restructuring OpenAI into a more conventional corporate form — potentially as a Public Benefit Corporation (PBC). Such a change would allow for conventional equity arrangements and address investor concerns that leadership should have “skin in the game.”\n\nCredible reports from major outlets (e.g., Reuters and Fortune) indicate that investors and internal stakeholders are increasingly in favor of aligning Altman’s compensation with company performance through an equity stake. Although Altman has dismissed rumors of a large (e.g., 7%) stake as excessive, he has not ruled out receiving a more modest equity interest.\n\n## Key Considerations\n\n**Governance Structure**: Transitioning from the current capped-profit model to a PBC is viewed as a necessary step to facilitate large-scale fundraising and align executive incentives with investor interests.\n\n**Investor Pressure**: Upcoming funding rounds, with valuations reportedly exceeding \\$150 billion, hinge on adopting a conventional equity model—making the grant of equity to Altman a likely component of the restructuring.\n\n**Industry Norms**: In contrast to OpenAI’s past structure, nearly every high-growth tech company provides its CEO with equity to ensure alignment between leadership and company success.\n\n**Legal and Regulatory Challenges**: Although converting to a PBC and issuing equity involves navigating potential legal and regulatory hurdles, the process is expected to proceed if executed with proper governance safeguards.",
                "created_at": "2025-03-03T14:47:36.583722Z",
                "open_time": null,
                "cp_reveal_time": null,
                "scheduled_resolve_time": "2026-01-09T22:41:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2026-01-01T07:59:00Z",
                "actual_close_time": "2026-01-01T07:59:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "upcoming",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "resolution_criteria": "This question will resolve to ”Yes” if Sam Altman owns - whether directly or via an entity he controls, such as a trust or holding corporation - any equity in OpenAI before the end of 2025 in the San Francisco Time Zone. This question will resolve to “No” otherwise.",
                "fine_print": "## Definition of “Taking Equity”\n\nSam Altman is deemed to have taken equity if he is documented to have acquired or been granted shares, stock options, or any other form of ownership interest in OpenAI.\n\nEquity acquired indirectly (e.g., through prior holdings via Y Combinator’s investment fund or other arrangements established before Altman’s full-time tenure at OpenAI) shall not count.\n\n## Credible Reporting Requirement\n\nThe outcome will be resolved based on a consensus of independent and authoritative sources (for example, major financial or technology news outlets and official OpenAI disclosures).\n\nAt least two independent credible reports or official corporate records must confirm that Altman has formally taken equity, with these sources reaching a clear consensus.\n\n## Documentation\n\nThe confirmation must stem from verifiable corporate actions (such as board-approved equity issuances, documented grants, or equivalent formal records) that are publicly accessible or reported by reputable media.\n\nIf, by the cutoff date, the consensus among credible reporting confirms the above conditions have been met, the resolution will be “Yes.” Otherwise, if no such consensus is reached or the criteria are not fully satisfied, the resolution will be “No.”",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35745,
                "aggregations": {
                    "recency_weighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 0,
            "is_current_content_translated": false,
            "description": "OpenAI began as a nonprofit research organization focused on developing safe AI for the benefit of humanity. In 2019, it introduced a for-profit subsidiary (OpenAI LP) operating under a capped-profit model, whereby investor returns are limited to a predetermined multiple while ultimate control remains with the nonprofit board. Historically, CEO Sam Altman has deliberately foregone any personal equity stake—accepting only modest compensation—in order to preserve the nonprofit’s independent oversight.\n\n## Recent Developments\n\nIn November 2023, a boardroom dispute briefly resulted in Altman’s ouster, only to be reversed after significant internal and investor pushback. This event highlighted internal tensions regarding OpenAI’s unconventional governance.\n\nIn 2024, discussions emerged about restructuring OpenAI into a more conventional corporate form — potentially as a Public Benefit Corporation (PBC). Such a change would allow for conventional equity arrangements and address investor concerns that leadership should have “skin in the game.”\n\nCredible reports from major outlets (e.g., Reuters and Fortune) indicate that investors and internal stakeholders are increasingly in favor of aligning Altman’s compensation with company performance through an equity stake. Although Altman has dismissed rumors of a large (e.g., 7%) stake as excessive, he has not ruled out receiving a more modest equity interest.\n\n## Key Considerations\n\n**Governance Structure**: Transitioning from the current capped-profit model to a PBC is viewed as a necessary step to facilitate large-scale fundraising and align executive incentives with investor interests.\n\n**Investor Pressure**: Upcoming funding rounds, with valuations reportedly exceeding \\$150 billion, hinge on adopting a conventional equity model—making the grant of equity to Altman a likely component of the restructuring.\n\n**Industry Norms**: In contrast to OpenAI’s past structure, nearly every high-growth tech company provides its CEO with equity to ensure alignment between leadership and company success.\n\n**Legal and Regulatory Challenges**: Although converting to a PBC and issuing equity involves navigating potential legal and regulatory hurdles, the process is expected to proceed if executed with proper governance safeguards."
        },
        {
            "id": 35744,
            "title": "Will WTI crude oil drop below $65 per barrel and stays there for 1 week before the 3rd quarter of 2025?",
            "url_title": "Will WTI crude oil drop below $65 per barrel?",
            "slug": "will-wti-crude-oil-drop-below-65-per-barrel",
            "author_id": 245211,
            "author_username": "aimsdesire@gmail.com",
            "coauthors": [],
            "created_at": "2025-03-03T11:33:15.565902Z",
            "published_at": "2025-03-09T15:29:17.502961Z",
            "edited_at": "2025-03-14T02:14:47.533294Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2025-03-09T15:29:17.502959Z",
            "comment_count": 5,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2025-05-29T19:00:00Z",
            "scheduled_resolve_time": "2025-06-29T19:00:00Z",
            "open_time": "2025-03-12T15:28:00Z",
            "nr_forecasters": 6,
            "projects": {
                "site_main": [
                    {
                        "id": 144,
                        "type": "site_main",
                        "name": "Metaculus Community",
                        "slug": null,
                        "header_image": null,
                        "prize_pool": null,
                        "start_date": null,
                        "close_date": null,
                        "meta_description": "",
                        "is_ongoing": null,
                        "user_permission": null,
                        "created_at": "2023-11-08T16:55:29.484707Z",
                        "edited_at": "2025-02-17T13:57:56.366243Z",
                        "score_type": null,
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 144,
                    "type": "site_main",
                    "name": "Metaculus Community",
                    "slug": null,
                    "header_image": null,
                    "prize_pool": null,
                    "start_date": null,
                    "close_date": null,
                    "meta_description": "",
                    "is_ongoing": null,
                    "user_permission": null,
                    "created_at": "2023-11-08T16:55:29.484707Z",
                    "edited_at": "2025-02-17T13:57:56.366243Z",
                    "score_type": null,
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false
                },
                "category": [
                    {
                        "id": 3697,
                        "name": "Environment & Climate",
                        "slug": "environment-climate",
                        "description": "Environment & Climate",
                        "type": "category"
                    },
                    {
                        "id": 3698,
                        "name": "Economy & Business",
                        "slug": "economy-business",
                        "description": "Economy & Business",
                        "type": "category"
                    },
                    {
                        "id": 3687,
                        "name": "Geopolitics",
                        "slug": "geopolitics",
                        "description": "Geopolitics",
                        "type": "category"
                    },
                    {
                        "id": 3689,
                        "name": "Politics",
                        "slug": "politics",
                        "description": "Politics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 35191,
                "title": "Will WTI crude oil drop below $65 per barrel and stays there for 1 week before the 3rd quarter of 2025?",
                "description": "According to [ChatGPT](https://chatgpt.com/):\n\n> West Texas Intermediate (WTI) crude oil is a key benchmark for global oil prices, primarily sourced from U.S. oil fields, particularly in Texas. Known for its high quality and low sulfur content, WTI is often used as a pricing standard for oil traded in North America. Its price is influenced by factors such as supply and demand dynamics, geopolitical events, production policies of major oil producers and broader economic conditions. WTI is traded on the New York Mercantile Exchange (NYMEX) and serves as a key reference point for energy markets worldwide.\n\nOil prices are influenced by various factors, with OPEC and non-OPEC members playing a significant role. However, the U.S. also has a major impact on price movements. Given Trump's \"drill, baby, drill\" stance, a slowing U.S. economy, and the uncertainty caused by tariffs, these factors could further shape the market dynamics.",
                "created_at": "2025-03-03T11:33:15.566247Z",
                "open_time": "2025-03-12T15:28:00Z",
                "cp_reveal_time": "2025-03-16T15:28:00Z",
                "scheduled_resolve_time": "2025-06-29T19:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-05-29T19:00:00Z",
                "actual_close_time": "2025-05-29T19:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "open",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "resolution_criteria": "This question resolves as **Yes** if the closing price of West Texas Intermediate (WTI) crude oil according to [Yahoo Finance](https://finance.yahoo.com/quote/CL%3DF/history/) closes below \\$65.00 for five consecutive trading days after the launch of this question and before July 1, 2025. Otherwise resolves as **No**. ",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35744,
                "aggregations": {
                    "recency_weighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 7,
            "is_current_content_translated": false,
            "description": "According to [ChatGPT](https://chatgpt.com/):\n\n> West Texas Intermediate (WTI) crude oil is a key benchmark for global oil prices, primarily sourced from U.S. oil fields, particularly in Texas. Known for its high quality and low sulfur content, WTI is often used as a pricing standard for oil traded in North America. Its price is influenced by factors such as supply and demand dynamics, geopolitical events, production policies of major oil producers and broader economic conditions. WTI is traded on the New York Mercantile Exchange (NYMEX) and serves as a key reference point for energy markets worldwide.\n\nOil prices are influenced by various factors, with OPEC and non-OPEC members playing a significant role. However, the U.S. also has a major impact on price movements. Given Trump's \"drill, baby, drill\" stance, a slowing U.S. economy, and the uncertainty caused by tariffs, these factors could further shape the market dynamics."
        },
        {
            "id": 35733,
            "title": "Will there be a new world record in the 2025 World Figure Skating Championships?",
            "url_title": "New record in the 2025 World Figure Skating Championships?",
            "slug": "new-record-in-the-2025-world-figure-skating-championships",
            "author_id": 126626,
            "author_username": "skmmcj",
            "coauthors": [],
            "created_at": "2025-03-03T02:01:37.157569Z",
            "published_at": "2025-03-03T03:07:07.125275Z",
            "edited_at": "2025-03-13T17:57:59.296467Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2025-03-03T03:07:07.125273Z",
            "comment_count": 0,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2025-03-25T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T11:00:00Z",
            "open_time": "2025-03-03T17:00:00Z",
            "nr_forecasters": 44,
            "projects": {
                "category": [
                    {
                        "id": 3696,
                        "name": "Sports & Entertainment",
                        "slug": "sports-entertainment",
                        "description": "Sports & Entertainment",
                        "type": "category"
                    }
                ],
                "tournament": [
                    {
                        "id": 32630,
                        "type": "tournament",
                        "name": "🏆 Quarterly Cup 🏆",
                        "slug": "quarterly-cup",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/qc-hires-scaled_1_BRJlq2q.webp",
                        "prize_pool": null,
                        "start_date": "2025-01-13T06:00:00Z",
                        "close_date": "2025-04-07T18:00:00Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-10T19:55:20.161665Z",
                        "edited_at": "2025-03-12T08:39:03.765812Z",
                        "score_type": "peer_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32630,
                    "type": "tournament",
                    "name": "🏆 Quarterly Cup 🏆",
                    "slug": "quarterly-cup",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/qc-hires-scaled_1_BRJlq2q.webp",
                    "prize_pool": null,
                    "start_date": "2025-01-13T06:00:00Z",
                    "close_date": "2025-04-07T18:00:00Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-10T19:55:20.161665Z",
                    "edited_at": "2025-03-12T08:39:03.765812Z",
                    "score_type": "peer_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35189,
                "title": "Will there be a new world record in the 2025 World Figure Skating Championships?",
                "description": "[Figure skating](https://en.wikipedia.org/wiki/Figure_skating) is a winter sport in which individuals, pairs, or groups perform on ice while incorporating jumps, spins, lifts, and footwork into choreographed routines set to music. The [World Figure Skating Championships](https://en.wikipedia.org/wiki/2025_World_Figure_Skating_Championships), organised annually by the [International Skating Union](https://en.wikipedia.org/wiki/International_Skating_Union) (ISU) since 1896, represents the most prestigious annual competition in the sport outside the Olympic Games. The [2025 World Championships](https://en.wikipedia.org/wiki/2025_World_Figure_Skating_Championships) are scheduled to take place in Boston, from March 25 to March 30.\n\nIn all official competitions, athletes are scored using the [ISU Judging System](https://en.wikipedia.org/wiki/ISU_Judging_System), which consists of two components: the Technical Score (TES) and the Program Components Score (PCS). The Technical Score assesses the difficulty and execution of specific elements (jumps, spins, and step sequences) with each element receiving a base value [ranging](https://www.usfigureskating.org/sites/default/files/media-files/ISU%202656%20ISU_SOV_SinglesPairs_2024-25_final.pdf) from 0.40 to 14, which is then adjusted using a -5 to +5 grade based on the athlete's execution. The Program Components Score evaluates five aspects of the performance: skating skills, transitions, performance, composition, and interpretation of music, with judges awarding points on a scale of 0.25 to 10.00 in each category.\n\nThe TES and PCS are added together to form the Total Segment Score (TSS), which is calculated for both short programs and free skating and added together to determine an athlete's final ranking.",
                "created_at": "2025-03-03T02:01:37.157939Z",
                "open_time": "2025-03-03T17:00:00Z",
                "cp_reveal_time": "2025-03-08T17:00:00Z",
                "scheduled_resolve_time": "2025-04-01T11:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-25T12:00:00Z",
                "actual_close_time": "2025-03-25T12:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "open",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "resolution_criteria": "This question will resolve as **Yes** if in the 2025 World Figure Skating Championships, there is a new world record in any category (men's singles, women's singles, pairs, ice dance), for any segment, on any of the possible scores:\n\n* TES – Technical element score\n* PCS – Program component score\n* TSS – Total segment score\n* Combine Total TSS across segments.",
                "fine_print": "* If at least half of the 2025 World Figure Skating Championships events do not take place before April 7, 2025, this question will be **annulled**.\n* In case a performance setting a new record is announced, but has not been officially verified (in case of potential disputes), it will count for the purposes of this question if it has not been cancelled as of April 7, 2025.\n* The [current world records](https://en.wikipedia.org/wiki/List_of_highest_scores_in_figure_skating) are presented below:\n\n| Category        | Segment        | Score type | Score  |\n| --------------- | -------------- | ---------- | ------ |\n| Men's singles   | Combined total | TSS        | 335.30 |\n| Men's singles   | Short program  | TSS        | 113.97 |\n| Men's singles   | Short program  | TES        | 65.98  |\n| Men's singles   | Short program  | PCS        | 48.47  |\n| Men's singles   | Free skating   | TSS        | 227.79 |\n| Men's singles   | Free skating   | TES        | 137.18 |\n| Men's singles   | Free skating   | PCS        | 97.22  |\n| Women's singles | Combined total | TSS        | 272.71 |\n| Women's singles | Short program  | TSS        | 87.52  |\n| Women's singles | Short program  | TES        | 49.97  |\n| Women's singles | Short program  | PCS        | 37.56  |\n| Women's singles | Free skating   | TSS        | 185.29 |\n| Women's singles | Free skating   | TES        | 109.02 |\n| Women's singles | Free skating   | PCS        | 76.27  |\n| Pairs           | Combined total | TSS        | 239.88 |\n| Pairs           | Short program  | TSS        | 84.41  |\n| Pairs           | Short program  | TES        | 46.04  |\n| Pairs           | Short program  | PCS        | 38.45  |\n| Pairs           | Free skating   | TSS        | 157.46 |\n| Pairs           | Free skating   | TES        | 81.45  |\n| Pairs           | Free skating   | PCS        | 76.99  |\n| Ice dance       | Combined total | TSS        | 232.32 |\n| Ice dance       | Rhythm dance   | TSS        | 93.91  |\n| Ice dance       | Rhythm dance   | TES        | 55.16  |\n| Ice dance       | Rhythm dance   | PCS        | 39.57  |\n| Ice dance       | Free dance     | TSS        | 138.41 |\n| Ice dance       | Free dance     | TES        | 79.41  |\n| Ice dance       | Free dance     | PCS        | 59.70  |\n\n‎",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35733,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741021295.487508,
                                "end_time": 1741022886.038982,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.705
                                ],
                                "centers": [
                                    0.705
                                ],
                                "interval_upper_bounds": [
                                    0.705
                                ],
                                "means": [
                                    0.705
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741022886.038982,
                                "end_time": 1741034137.082813,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.705
                                ],
                                "centers": [
                                    0.7175
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.7175
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741034137.082813,
                                "end_time": 1741035970.290109,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.705
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.6204200219910335
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741035970.290109,
                                "end_time": 1741037710.311593,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.58
                                ],
                                "interval_upper_bounds": [
                                    0.705
                                ],
                                "means": [
                                    0.6053911644735039
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741037710.311593,
                                "end_time": 1741037733.420011,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.57
                                ],
                                "centers": [
                                    0.57
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.594062243293242
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741037733.420011,
                                "end_time": 1741040682.618066,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.51
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.574855888234634
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741040682.618066,
                                "end_time": 1741048209.395787,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.553611663716922
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741048209.395787,
                                "end_time": 1741105857.944963,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.5141803261057093
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741105857.944963,
                                "end_time": 1741105908.528971,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.5885740585301397
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741105908.528971,
                                "end_time": 1741105923.766574,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.705
                                ],
                                "means": [
                                    0.5692175667058337
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741105923.766574,
                                "end_time": 1741113594.006642,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.705
                                ],
                                "means": [
                                    0.5255106571534855
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741113594.006642,
                                "end_time": 1741122434.415537,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.5202942698727618
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741122434.415537,
                                "end_time": 1741158760.509532,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.66
                                ],
                                "means": [
                                    0.5472072341236044
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741158760.509532,
                                "end_time": 1741305954.249541,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.66
                                ],
                                "means": [
                                    0.47288903510341446
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741305954.249541,
                                "end_time": 1741316734.102582,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.4515412426099223
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741316734.102582,
                                "end_time": 1741366205.930342,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.24
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ],
                                "means": [
                                    0.41642486129635703
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741366205.930342,
                                "end_time": 1741410089.207953,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.38993523015062975
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741410089.207953,
                                "end_time": 1741410092.977317,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.66
                                ],
                                "means": [
                                    0.48316073359618905
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741410092.977317,
                                "end_time": 1741433873.855841,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.66
                                ],
                                "means": [
                                    0.48316073359618905
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741433873.855841,
                                "end_time": 1741453404.426838,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.24
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.66
                                ],
                                "means": [
                                    0.4120088327238187
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741453404.426838,
                                "end_time": 1741455725.286742,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.24
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.4316852869735643
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741455725.286742,
                                "end_time": 1741460747.243341,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.24
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ],
                                "means": [
                                    0.42455568055087045
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741460747.243341,
                                "end_time": 1741468503.215624,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.43603331756974234
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741468503.215624,
                                "end_time": 1741480353.865683,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.48
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.44210329796070336
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741480353.865683,
                                "end_time": 1741480896.656341,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ],
                                "means": [
                                    0.45119519692211474
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741480896.656341,
                                "end_time": 1741481558.136299,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.51
                                ],
                                "means": [
                                    0.4562841973841162
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741481558.136299,
                                "end_time": 1741488102.236863,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.53
                                ],
                                "means": [
                                    0.4603014318100899
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741488102.236863,
                                "end_time": 1741513015.319589,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.42
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.46403170736812266
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741513015.319589,
                                "end_time": 1741532800.661743,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.42
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.52
                                ],
                                "means": [
                                    0.4687108197473974
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741532800.661743,
                                "end_time": 1741546232.389226,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.42
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.53
                                ],
                                "means": [
                                    0.4970858901424715
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741546232.389226,
                                "end_time": 1741585555.727472,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.48
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.62
                                ],
                                "means": [
                                    0.5104724855566002
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741585555.727472,
                                "end_time": 1741588013.541903,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.48
                                ],
                                "centers": [
                                    0.52
                                ],
                                "interval_upper_bounds": [
                                    0.62
                                ],
                                "means": [
                                    0.5130781856105615
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741588013.541903,
                                "end_time": 1741616499.330964,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.48
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.705
                                ],
                                "means": [
                                    0.555720263281169
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741616499.330964,
                                "end_time": 1741632836.034671,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.52
                                ],
                                "interval_upper_bounds": [
                                    0.62
                                ],
                                "means": [
                                    0.5545960423246735
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741632836.034671,
                                "end_time": 1741643998.214639,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.62
                                ],
                                "means": [
                                    0.5530200347755754
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741643998.214639,
                                "end_time": 1741651934.464372,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.62
                                ],
                                "means": [
                                    0.5537839667261415
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741651934.464372,
                                "end_time": 1741653052.988815,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.48
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.5039995502883787
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741653052.988815,
                                "end_time": 1741671820.110848,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.52
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.5047211264840544
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741671820.110848,
                                "end_time": 1741683765.992791,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.62
                                ],
                                "means": [
                                    0.5182567056931012
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741683765.992791,
                                "end_time": 1741684894.770725,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.62
                                ],
                                "means": [
                                    0.514649901439464
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741684894.770725,
                                "end_time": 1741764653.235816,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.5164114831990175
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741764653.235816,
                                "end_time": 1741764663.101539,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.42
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.4921153088153554
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741764663.101539,
                                "end_time": 1741844405.659596,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.42
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.4808884672335164
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741844405.659596,
                                "end_time": 1741882388.246663,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.48
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.48084937742879585
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741882388.246663,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.48986883649803736
                                ],
                                "histogram": [
                                    [
                                        0.13082761184065436,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.07805035281635142,
                                        0.48480115213825536,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.8218869508967813,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.06414156534256711,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.09369360910749297,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.05181454149830181,
                                        0.0,
                                        0.20380305925474834,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.15266220141285267,
                                        0.0,
                                        1.9832032235518247,
                                        0.7496332419041599,
                                        0.0,
                                        0.7429155235659053,
                                        0.0,
                                        0.8182831282961611,
                                        0.0,
                                        1.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.8693512287508836,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.01505338459998825,
                                        0.0,
                                        0.23351825246045652,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.30235531220200856,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.11123030328809189
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741882388.246663,
                            "end_time": null,
                            "forecast_values": [
                                0.49,
                                0.51
                            ],
                            "forecaster_count": 27,
                            "interval_lower_bounds": [
                                0.5
                            ],
                            "centers": [
                                0.51
                            ],
                            "interval_upper_bounds": [
                                0.58
                            ],
                            "means": [
                                0.48986883649803736
                            ],
                            "histogram": [
                                [
                                    0.13082761184065436,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.07805035281635142,
                                    0.48480115213825536,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.8218869508967813,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.06414156534256711,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.09369360910749297,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.05181454149830181,
                                    0.0,
                                    0.20380305925474834,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.15266220141285267,
                                    0.0,
                                    1.9832032235518247,
                                    0.7496332419041599,
                                    0.0,
                                    0.7429155235659053,
                                    0.0,
                                    0.8182831282961611,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.8693512287508836,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.01505338459998825,
                                    0.0,
                                    0.23351825246045652,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.30235531220200856,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.11123030328809189
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 2,
                "user_vote": null
            },
            "forecasts_count": 159,
            "is_current_content_translated": false,
            "description": "[Figure skating](https://en.wikipedia.org/wiki/Figure_skating) is a winter sport in which individuals, pairs, or groups perform on ice while incorporating jumps, spins, lifts, and footwork into choreographed routines set to music. The [World Figure Skating Championships](https://en.wikipedia.org/wiki/2025_World_Figure_Skating_Championships), organised annually by the [International Skating Union](https://en.wikipedia.org/wiki/International_Skating_Union) (ISU) since 1896, represents the most prestigious annual competition in the sport outside the Olympic Games. The [2025 World Championships](https://en.wikipedia.org/wiki/2025_World_Figure_Skating_Championships) are scheduled to take place in Boston, from March 25 to March 30.\n\nIn all official competitions, athletes are scored using the [ISU Judging System](https://en.wikipedia.org/wiki/ISU_Judging_System), which consists of two components: the Technical Score (TES) and the Program Components Score (PCS). The Technical Score assesses the difficulty and execution of specific elements (jumps, spins, and step sequences) with each element receiving a base value [ranging](https://www.usfigureskating.org/sites/default/files/media-files/ISU%202656%20ISU_SOV_SinglesPairs_2024-25_final.pdf) from 0.40 to 14, which is then adjusted using a -5 to +5 grade based on the athlete's execution. The Program Components Score evaluates five aspects of the performance: skating skills, transitions, performance, composition, and interpretation of music, with judges awarding points on a scale of 0.25 to 10.00 in each category.\n\nThe TES and PCS are added together to form the Total Segment Score (TSS), which is calculated for both short programs and free skating and added together to determine an athlete's final ranking."
        },
        {
            "id": 35732,
            "title": "Will Volodymyr Zelenskyy meet with Donald Trump again before April 7, 2025?",
            "url_title": "Will Zelenskyy get a 2nd meeting with Trump in early 2025?",
            "slug": "will-zelenskyy-get-a-2nd-meeting-with-trump-in-early-2025",
            "author_id": 126626,
            "author_username": "skmmcj",
            "coauthors": [],
            "created_at": "2025-03-03T01:27:52.338365Z",
            "published_at": "2025-03-03T03:02:27.891757Z",
            "edited_at": "2025-03-14T14:35:25.131320Z",
            "curation_status": "approved",
            "curation_status_updated_at": "2025-03-03T03:02:27.891756Z",
            "comment_count": 7,
            "status": "open",
            "resolved": false,
            "actual_close_time": null,
            "scheduled_close_time": "2025-03-31T11:00:00Z",
            "scheduled_resolve_time": "2025-04-07T11:00:00Z",
            "open_time": "2025-03-03T17:00:00Z",
            "nr_forecasters": 83,
            "projects": {
                "tag": [
                    {
                        "id": 32607,
                        "name": "2025 Leaderboard",
                        "slug": "2025_leaderboard",
                        "type": "tag",
                        "is_global_leaderboard": true
                    }
                ],
                "tournament": [
                    {
                        "id": 32630,
                        "type": "tournament",
                        "name": "🏆 Quarterly Cup 🏆",
                        "slug": "quarterly-cup",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/qc-hires-scaled_1_BRJlq2q.webp",
                        "prize_pool": null,
                        "start_date": "2025-01-13T06:00:00Z",
                        "close_date": "2025-04-07T18:00:00Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-10T19:55:20.161665Z",
                        "edited_at": "2025-03-12T08:39:03.765812Z",
                        "score_type": "peer_tournament",
                        "default_permission": "forecaster",
                        "visibility": "normal",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32630,
                    "type": "tournament",
                    "name": "🏆 Quarterly Cup 🏆",
                    "slug": "quarterly-cup",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/qc-hires-scaled_1_BRJlq2q.webp",
                    "prize_pool": null,
                    "start_date": "2025-01-13T06:00:00Z",
                    "close_date": "2025-04-07T18:00:00Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-10T19:55:20.161665Z",
                    "edited_at": "2025-03-12T08:39:03.765812Z",
                    "score_type": "peer_tournament",
                    "default_permission": "forecaster",
                    "visibility": "normal",
                    "is_current_content_translated": false
                },
                "category": [
                    {
                        "id": 3687,
                        "name": "Geopolitics",
                        "slug": "geopolitics",
                        "description": "Geopolitics",
                        "type": "category"
                    }
                ]
            },
            "question": {
                "id": 35188,
                "title": "Will Volodymyr Zelenskyy meet with Donald Trump again before April 7, 2025?",
                "description": "Relations between Ukrainian President Volodymyr Zelenskyy and US President Donald Trump broke down after a [tense Oval Office meeting](https://www.bbc.co.uk/news/articles/c2erwgwy8vgo) on February 28 ([video](https://www.youtube.com/watch?v=W6qFzWaaZ_o)) The discussion was meant to seal a deal granting the US access to Ukraine's rare earth minerals in exchange for continued support against Russia. Instead, Trump criticised Zelenskyy for lacking gratitude for US aid and questioned his approach to the war, while Zelenskyy insisted on security guarantees from the US and emphasised Russia's role as the aggressor in the war.\n\nThe unresolved meeting left US support for Ukraine uncertain, with Zelenskyy not signing the deal before departing from the White House. Various European leaders voiced support for Ukraine, Keir Starmer [insisted](https://www.politico.eu/article/europe-leaders-pledge-increase-defense-spending-nato-mark-rutte-keir-starmer-london-summit/) that any peace plan must have US' backing. A few days after leaving the Oval Office, [Zelenskyy said](https://www.bbc.co.uk/news/articles/c8j0ggm3mdwo) that he would still be willing to sign a deal on rare earth minerals.\n\nDuring his 2024 campaign, Trump [promised](https://www.nytimes.com/2025/01/19/us/politics/trump-promise-ending-ukraine-war.html) to end the Russia-Ukraine war early in his presidency, often suggesting he could broker peace through direct talks with Moscow, a stance he framed as pragmatic and cost-saving for the US.",
                "created_at": "2025-03-03T01:27:52.338775Z",
                "open_time": "2025-03-03T17:00:00Z",
                "cp_reveal_time": "2025-03-06T17:00:00Z",
                "scheduled_resolve_time": "2025-04-07T11:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-31T11:00:00Z",
                "actual_close_time": "2025-03-31T11:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "open",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": false,
                "question_weight": 1.0,
                "resolution_criteria": "This question will resolve as **Yes** if Volodymyr Zelenskyy meets with Donald Trump after March 3 and before April 7, 2025.",
                "fine_print": "* The meeting has to be in person. \n* The overall duration of the meeting does not matter, as long as Trump and Zelenskyy speak directly to each other for at least one minute, continuously.",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35732,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741021284.961007,
                                "end_time": 1741022156.733691,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.19
                                ],
                                "centers": [
                                    0.19
                                ],
                                "interval_upper_bounds": [
                                    0.19
                                ],
                                "means": [
                                    0.19
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741022156.733691,
                                "end_time": 1741022537.271256,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.19
                                ],
                                "centers": [
                                    0.29500000000000004
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.29500000000000004
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741022537.271256,
                                "end_time": 1741026081.981394,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.4674651577530252
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741026081.981394,
                                "end_time": 1741026106.080243,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.65
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.5725164585368157
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741026106.080243,
                                "end_time": 1741026113.450923,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.65
                                ],
                                "interval_upper_bounds": [
                                    0.71
                                ],
                                "means": [
                                    0.5576437724003623
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741026113.450923,
                                "end_time": 1741026188.534786,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.65
                                ],
                                "interval_upper_bounds": [
                                    0.7
                                ],
                                "means": [
                                    0.5539256008662491
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741026188.534786,
                                "end_time": 1741026199.77654,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.4051987395017154
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741026199.77654,
                                "end_time": 1741034208.55367,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.3866078818311487
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741034208.55367,
                                "end_time": 1741036102.031993,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.4229053698711255
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741036102.031993,
                                "end_time": 1741036750.959965,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.3738345407822165
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741036750.959965,
                                "end_time": 1741037528.181021,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.3759728607759182
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741037528.181021,
                                "end_time": 1741037565.169401,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.19
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.32823456745665575
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741037565.169401,
                                "end_time": 1741040530.572135,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.28
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3513371125312862
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741040530.572135,
                                "end_time": 1741048173.218752,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.28
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.31568850167461493
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741048173.218752,
                                "end_time": 1741053877.661166,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.3188160584889459
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741053877.661166,
                                "end_time": 1741066248.965942,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.28
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.294520699395746
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741066248.965942,
                                "end_time": 1741072988.738699,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.27903969923530425
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741072988.738699,
                                "end_time": 1741073942.400985,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.36692934469536725
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741073942.400985,
                                "end_time": 1741078496.474426,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.31550797561662985
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741078496.474426,
                                "end_time": 1741079043.289451,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.28
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.31267766043139633
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741079043.289451,
                                "end_time": 1741079785.239863,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2757321464636926
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741079785.239863,
                                "end_time": 1741080447.426999,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.2741747398779539
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741080447.426999,
                                "end_time": 1741080799.204846,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.2644023437338015
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741080799.204846,
                                "end_time": 1741093518.818631,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.23653314338179096
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741093518.818631,
                                "end_time": 1741103430.426543,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.28
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24706880210384985
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741103430.426543,
                                "end_time": 1741104026.135233,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.28
                                ],
                                "interval_upper_bounds": [
                                    0.33
                                ],
                                "means": [
                                    0.2636690550286751
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741104026.135233,
                                "end_time": 1741105135.048816,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.28
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3395778619048686
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741105135.048816,
                                "end_time": 1741105374.536145,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.21
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3189531202660599
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741105374.536145,
                                "end_time": 1741105658.790072,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.7
                                ],
                                "means": [
                                    0.3772774380694709
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741105658.790072,
                                "end_time": 1741108389.460628,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.28
                                ],
                                "interval_upper_bounds": [
                                    0.7
                                ],
                                "means": [
                                    0.34843300081548
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741108389.460628,
                                "end_time": 1741111359.481434,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.329123553649659
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741111359.481434,
                                "end_time": 1741112900.955076,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3444298901939013
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741112900.955076,
                                "end_time": 1741113740.430483,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.345251864845001
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741113740.430483,
                                "end_time": 1741116784.323299,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.3374921783728181
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741116784.323299,
                                "end_time": 1741117605.414974,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.34640530170365313
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741117605.414974,
                                "end_time": 1741138823.90216,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.426466558528139
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741138823.90216,
                                "end_time": 1741156957.063151,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.4683719727166595
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741156957.063151,
                                "end_time": 1741177100.076874,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.4502391164948245
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741177100.076874,
                                "end_time": 1741178548.751675,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.4867966103403099
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741178548.751675,
                                "end_time": 1741182167.885997,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.22
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.45107045941390367
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741182167.885997,
                                "end_time": 1741188446.413319,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.46158962841282875
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741188446.413319,
                                "end_time": 1741194898.387139,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.4900026165942528
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741194898.387139,
                                "end_time": 1741194907.04722,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.5303456471978372
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741194907.04722,
                                "end_time": 1741195684.530588,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.5238411511029519
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741195684.530588,
                                "end_time": 1741199499.523111,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.5271519122908644
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741199499.523111,
                                "end_time": 1741199522.629832,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.68
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.5665213695253691
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741199522.629832,
                                "end_time": 1741199697.432955,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.5366096417063883
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741199697.432955,
                                "end_time": 1741199726.40693,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.5481241763875397
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741199726.40693,
                                "end_time": 1741199727.745678,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.39
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.518533452313132
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741199727.745678,
                                "end_time": 1741199730.390055,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.5366096417063883
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741199730.390055,
                                "end_time": 1741202944.904284,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.37
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.5160675586402647
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741202944.904284,
                                "end_time": 1741205289.398182,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.37
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.5714856304236684
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741205289.398182,
                                "end_time": 1741205308.609311,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.68
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.589646768890458
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741205308.609311,
                                "end_time": 1741205321.323215,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.64
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.5834820347082896
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741205321.323215,
                                "end_time": 1741217362.053142,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.5588230979796167
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741217362.053142,
                                "end_time": 1741229788.635635,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.44
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.5625722353666447
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741229788.635635,
                                "end_time": 1741280722.74896,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.37
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.5141296716866116
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741280722.74896,
                                "end_time": 1741285968.253871,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.37
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5150540618360298
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741285968.253871,
                                "end_time": 1741286847.112805,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5030801911140501
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741286847.112805,
                                "end_time": 1741286891.817029,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.44
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4917205367596447
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741286891.817029,
                                "end_time": 1741287093.088678,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4736435587134079
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741287093.088678,
                                "end_time": 1741292498.614872,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.4872705841361259
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292498.614872,
                                "end_time": 1741292546.361569,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.37
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4776739075190623
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292546.361569,
                                "end_time": 1741301468.901193,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.37
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4796280516211785
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741301468.901193,
                                "end_time": 1741305890.664878,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4592586330790476
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741305890.664878,
                                "end_time": 1741307164.857168,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.46049131545994565
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741307164.857168,
                                "end_time": 1741323331.336856,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.37
                                ],
                                "centers": [
                                    0.47
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.47297479495033007
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741323331.336856,
                                "end_time": 1741360715.747784,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.59
                                ],
                                "means": [
                                    0.4319386948510705
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741360715.747784,
                                "end_time": 1741364706.233137,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.54
                                ],
                                "means": [
                                    0.41873607814844965
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741364706.233137,
                                "end_time": 1741365011.332217,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.54
                                ],
                                "means": [
                                    0.41101918754515415
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741365011.332217,
                                "end_time": 1741365541.629252,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.54
                                ],
                                "means": [
                                    0.4188779766524415
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741365541.629252,
                                "end_time": 1741367781.156095,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.47
                                ],
                                "means": [
                                    0.41240584440169825
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741367781.156095,
                                "end_time": 1741367806.947057,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.54
                                ],
                                "means": [
                                    0.47174316633010094
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741367806.947057,
                                "end_time": 1741367893.355933,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.54
                                ],
                                "means": [
                                    0.4332695906987246
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741367893.355933,
                                "end_time": 1741369544.249093,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.54
                                ],
                                "means": [
                                    0.4519567560053931
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741369544.249093,
                                "end_time": 1741369574.017205,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.54
                                ],
                                "means": [
                                    0.4574529810955897
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741369574.017205,
                                "end_time": 1741373111.891315,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.54
                                ],
                                "means": [
                                    0.4607507161497077
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741373111.891315,
                                "end_time": 1741375904.193635,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.47534106272363863
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741375904.193635,
                                "end_time": 1741375908.856835,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.42
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.48984581685132034
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741375908.856835,
                                "end_time": 1741381394.437754,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.42
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.48984581685132034
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741381394.437754,
                                "end_time": 1741381443.82992,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.38
                                ],
                                "centers": [
                                    0.47
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.5086174214072642
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741381443.82992,
                                "end_time": 1741414538.066998,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.38
                                ],
                                "centers": [
                                    0.47
                                ],
                                "interval_upper_bounds": [
                                    0.61
                                ],
                                "means": [
                                    0.5032316837722219
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741414538.066998,
                                "end_time": 1741429901.238639,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.38
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.61
                                ],
                                "means": [
                                    0.5084160982987428
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741429901.238639,
                                "end_time": 1741429908.543005,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.61
                                ],
                                "means": [
                                    0.5128084847646712
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741429908.543005,
                                "end_time": 1741435741.488988,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.61
                                ],
                                "means": [
                                    0.5180898391905783
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741435741.488988,
                                "end_time": 1741437801.98053,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5183872574649683
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741437801.98053,
                                "end_time": 1741441999.63533,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.42
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5194665083814756
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741441999.63533,
                                "end_time": 1741443128.400222,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.42
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.61
                                ],
                                "means": [
                                    0.5117970671611138
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741443128.400222,
                                "end_time": 1741460040.401001,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5066549742462977
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741460040.401001,
                                "end_time": 1741460284.692085,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4891112633799715
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741460284.692085,
                                "end_time": 1741468327.404139,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.42
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.61
                                ],
                                "means": [
                                    0.5176111557122208
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741468327.404139,
                                "end_time": 1741472480.476676,
                                "forecast_values": null,
                                "forecaster_count": 31,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.61
                                ],
                                "means": [
                                    0.5168222527119515
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741472480.476676,
                                "end_time": 1741472483.124561,
                                "forecast_values": null,
                                "forecaster_count": 32,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5201989757283123
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741472483.124561,
                                "end_time": 1741472486.434304,
                                "forecast_values": null,
                                "forecaster_count": 32,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5201989757283123
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741472486.434304,
                                "end_time": 1741474087.69711,
                                "forecast_values": null,
                                "forecaster_count": 32,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5201989757283123
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741474087.69711,
                                "end_time": 1741484322.490125,
                                "forecast_values": null,
                                "forecaster_count": 33,
                                "interval_lower_bounds": [
                                    0.38
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.5031797015380467
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741484322.490125,
                                "end_time": 1741503089.988548,
                                "forecast_values": null,
                                "forecaster_count": 33,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.5286859882083373
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741503089.988548,
                                "end_time": 1741507515.197445,
                                "forecast_values": null,
                                "forecaster_count": 34,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.68
                                ],
                                "means": [
                                    0.5435604958517604
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741507515.197445,
                                "end_time": 1741517030.096021,
                                "forecast_values": null,
                                "forecaster_count": 35,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.5528850236593091
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741517030.096021,
                                "end_time": 1741518176.742361,
                                "forecast_values": null,
                                "forecaster_count": 35,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.525932797039143
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741518176.742361,
                                "end_time": 1741522236.041886,
                                "forecast_values": null,
                                "forecaster_count": 35,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.5094958634268892
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741522236.041886,
                                "end_time": 1741541146.244913,
                                "forecast_values": null,
                                "forecaster_count": 36,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.5181070766201389
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741541146.244913,
                                "end_time": 1741541174.0228,
                                "forecast_values": null,
                                "forecaster_count": 36,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.4993673090562218
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741541174.0228,
                                "end_time": 1741565260.936123,
                                "forecast_values": null,
                                "forecaster_count": 36,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.49746436549600265
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741565260.936123,
                                "end_time": 1741571221.825843,
                                "forecast_values": null,
                                "forecaster_count": 37,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.61
                                ],
                                "means": [
                                    0.49676514181674225
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741571221.825843,
                                "end_time": 1741583361.692111,
                                "forecast_values": null,
                                "forecaster_count": 37,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.49
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.46286426454155183
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741583361.692111,
                                "end_time": 1741598641.717476,
                                "forecast_values": null,
                                "forecaster_count": 37,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.47126228896172323
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741598641.717476,
                                "end_time": 1741598696.544837,
                                "forecast_values": null,
                                "forecaster_count": 38,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.47391380773022357
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741598696.544837,
                                "end_time": 1741601070.540138,
                                "forecast_values": null,
                                "forecaster_count": 39,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.48083130937438484
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741601070.540138,
                                "end_time": 1741602835.587146,
                                "forecast_values": null,
                                "forecaster_count": 39,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.4584758451463248
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741602835.587146,
                                "end_time": 1741610770.325634,
                                "forecast_values": null,
                                "forecaster_count": 39,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.48120500742203076
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741610770.325634,
                                "end_time": 1741619977.068587,
                                "forecast_values": null,
                                "forecaster_count": 39,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.56
                                ],
                                "means": [
                                    0.46302167760146595
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741619977.068587,
                                "end_time": 1741626603.956007,
                                "forecast_values": null,
                                "forecaster_count": 39,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4843669181761559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741626603.956007,
                                "end_time": 1741636841.406788,
                                "forecast_values": null,
                                "forecaster_count": 40,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.463362404811253
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741636841.406788,
                                "end_time": 1741638163.866811,
                                "forecast_values": null,
                                "forecaster_count": 40,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4575945688968152
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741638163.866811,
                                "end_time": 1741651517.245685,
                                "forecast_values": null,
                                "forecaster_count": 41,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.4684127202370084
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741651517.245685,
                                "end_time": 1741651803.37586,
                                "forecast_values": null,
                                "forecaster_count": 42,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.46157628190752553
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741651803.37586,
                                "end_time": 1741652431.083369,
                                "forecast_values": null,
                                "forecaster_count": 43,
                                "interval_lower_bounds": [
                                    0.39
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4992966399829373
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741652431.083369,
                                "end_time": 1741659592.732847,
                                "forecast_values": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.482370401924982
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741659592.732847,
                                "end_time": 1741668050.819108,
                                "forecast_values": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.49
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.46283438887469097
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741668050.819108,
                                "end_time": 1741683520.690232,
                                "forecast_values": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.4569891020490693
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741683520.690232,
                                "end_time": 1741685100.879932,
                                "forecast_values": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.44470058836242665
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741685100.879932,
                                "end_time": 1741705169.099753,
                                "forecast_values": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.42
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.4473051281800754
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741705169.099753,
                                "end_time": 1741705178.005645,
                                "forecast_values": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.49
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4651201261998135
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741705178.005645,
                                "end_time": 1741719736.68897,
                                "forecast_values": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.49
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.460873632616328
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741719736.68897,
                                "end_time": 1741720230.468693,
                                "forecast_values": null,
                                "forecaster_count": 44,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.47
                                ],
                                "interval_upper_bounds": [
                                    0.58
                                ],
                                "means": [
                                    0.46097778893948693
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741720230.468693,
                                "end_time": 1741722098.798258,
                                "forecast_values": null,
                                "forecaster_count": 45,
                                "interval_lower_bounds": [
                                    0.36
                                ],
                                "centers": [
                                    0.49
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.4852161996621326
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741722098.798258,
                                "end_time": 1741725685.148979,
                                "forecast_values": null,
                                "forecaster_count": 46,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.47
                                ],
                                "interval_upper_bounds": [
                                    0.64
                                ],
                                "means": [
                                    0.4690454981153552
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741725685.148979,
                                "end_time": 1741725796.770891,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.29
                                ],
                                "centers": [
                                    0.47
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.43884216118258046
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741725796.770891,
                                "end_time": 1741725800.685744,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.47185984591935953
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741725800.685744,
                                "end_time": 1741728256.083892,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.47677035214480074
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741728256.083892,
                                "end_time": 1741730454.085651,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.4869550119724183
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741730454.085651,
                                "end_time": 1741730611.52543,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.5004131282786873
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741730611.52543,
                                "end_time": 1741730620.642175,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.5061420522083686
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741730620.642175,
                                "end_time": 1741732789.771559,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.33
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.503686799095648
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741732789.771559,
                                "end_time": 1741732799.779313,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.39
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.7
                                ],
                                "means": [
                                    0.5121150437269836
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741732799.779313,
                                "end_time": 1741732956.731255,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.39
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.7
                                ],
                                "means": [
                                    0.5072045375015424
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741732956.731255,
                                "end_time": 1741734229.20816,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.5291077024225799
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741734229.20816,
                                "end_time": 1741737673.10279,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.4
                                ],
                                "centers": [
                                    0.5
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.5254933476601878
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741737673.10279,
                                "end_time": 1741739060.490362,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.5284734300843645
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741739060.490362,
                                "end_time": 1741740131.631413,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.51
                                ],
                                "interval_upper_bounds": [
                                    0.7
                                ],
                                "means": [
                                    0.5273916238179641
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741740131.631413,
                                "end_time": 1741741667.115544,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.45
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.7
                                ],
                                "means": [
                                    0.5416740900479226
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741741667.115544,
                                "end_time": 1741753119.024902,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.47
                                ],
                                "centers": [
                                    0.53
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.5620319642998204
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741753119.024902,
                                "end_time": 1741757257.446309,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.49
                                ],
                                "centers": [
                                    0.58
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.5660504130575701
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741757257.446309,
                                "end_time": 1741757311.755656,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.49
                                ],
                                "centers": [
                                    0.6
                                ],
                                "interval_upper_bounds": [
                                    0.7
                                ],
                                "means": [
                                    0.5712526121081365
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741757311.755656,
                                "end_time": 1741758365.026492,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.49
                                ],
                                "centers": [
                                    0.6
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.5835288776717394
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741758365.026492,
                                "end_time": 1741760323.743602,
                                "forecast_values": null,
                                "forecaster_count": 47,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.64
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6047081768786672
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741760323.743602,
                                "end_time": 1741760327.154749,
                                "forecast_values": null,
                                "forecaster_count": 48,
                                "interval_lower_bounds": [
                                    0.47
                                ],
                                "centers": [
                                    0.6
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.5841067883699275
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741760327.154749,
                                "end_time": 1741761148.56322,
                                "forecast_values": null,
                                "forecaster_count": 48,
                                "interval_lower_bounds": [
                                    0.47
                                ],
                                "centers": [
                                    0.6
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.5841067883699275
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741761148.56322,
                                "end_time": 1741764553.505735,
                                "forecast_values": null,
                                "forecaster_count": 48,
                                "interval_lower_bounds": [
                                    0.47
                                ],
                                "centers": [
                                    0.6
                                ],
                                "interval_upper_bounds": [
                                    0.78
                                ],
                                "means": [
                                    0.5931948921702567
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741764553.505735,
                                "end_time": 1741764584.559224,
                                "forecast_values": null,
                                "forecaster_count": 49,
                                "interval_lower_bounds": [
                                    0.49
                                ],
                                "centers": [
                                    0.6
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.5897412592893273
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741764584.559224,
                                "end_time": 1741765876.772013,
                                "forecast_values": null,
                                "forecaster_count": 49,
                                "interval_lower_bounds": [
                                    0.49
                                ],
                                "centers": [
                                    0.69
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6057321911213432
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741765876.772013,
                                "end_time": 1741767719.429777,
                                "forecast_values": null,
                                "forecaster_count": 49,
                                "interval_lower_bounds": [
                                    0.49
                                ],
                                "centers": [
                                    0.74
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6285871163952923
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741767719.429777,
                                "end_time": 1741770759.915972,
                                "forecast_values": null,
                                "forecaster_count": 50,
                                "interval_lower_bounds": [
                                    0.5
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6468819463037482
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741770759.915972,
                                "end_time": 1741780041.990822,
                                "forecast_values": null,
                                "forecaster_count": 50,
                                "interval_lower_bounds": [
                                    0.51
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6585992269906901
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741780041.990822,
                                "end_time": 1741782131.362615,
                                "forecast_values": null,
                                "forecaster_count": 51,
                                "interval_lower_bounds": [
                                    0.51
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.843
                                ],
                                "means": [
                                    0.6735644808816956
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741782131.362615,
                                "end_time": 1741786997.067079,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.53
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6794764688078349
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741786997.067079,
                                "end_time": 1741787010.326652,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.55
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6726403716244367
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741787010.326652,
                                "end_time": 1741788766.646804,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.53
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6710934499852995
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741788766.646804,
                                "end_time": 1741790066.686805,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.53
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.6781237144949284
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741790066.686805,
                                "end_time": 1741791478.353122,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.53
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.6830410459166071
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741791478.353122,
                                "end_time": 1741793344.455699,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.53
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.6808891416391026
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741793344.455699,
                                "end_time": 1741794187.777583,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.55
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.843
                                ],
                                "means": [
                                    0.6904732668594418
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741794187.777583,
                                "end_time": 1741800121.817983,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.693757781423735
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741800121.817983,
                                "end_time": 1741800124.019807,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.58
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.6921912510582504
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741800124.019807,
                                "end_time": 1741800791.688221,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.6937381726973876
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741800791.688221,
                                "end_time": 1741813710.944721,
                                "forecast_values": null,
                                "forecaster_count": 52,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.7014849727243978
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741813710.944721,
                                "end_time": 1741815215.378404,
                                "forecast_values": null,
                                "forecaster_count": 53,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.843
                                ],
                                "means": [
                                    0.7051978191038047
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741815215.378404,
                                "end_time": 1741818075.490424,
                                "forecast_values": null,
                                "forecaster_count": 53,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.6755761695787774
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741818075.490424,
                                "end_time": 1741821131.163234,
                                "forecast_values": null,
                                "forecaster_count": 53,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.74
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.6744991589730798
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741821131.163234,
                                "end_time": 1741821133.88046,
                                "forecast_values": null,
                                "forecaster_count": 54,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.6915781434741544
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741821133.88046,
                                "end_time": 1741821138.570095,
                                "forecast_values": null,
                                "forecaster_count": 54,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.6915781434741544
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741821138.570095,
                                "end_time": 1741821559.318459,
                                "forecast_values": null,
                                "forecaster_count": 54,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.6915781434741544
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741821559.318459,
                                "end_time": 1741821787.823971,
                                "forecast_values": null,
                                "forecaster_count": 54,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.74
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.6926586820289277
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741821787.823971,
                                "end_time": 1741821793.042266,
                                "forecast_values": null,
                                "forecaster_count": 53,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.74
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.6963433262644263
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741821793.042266,
                                "end_time": 1741825167.046048,
                                "forecast_values": null,
                                "forecaster_count": 54,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.72
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.6941209211851466
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741825167.046048,
                                "end_time": 1741825972.192779,
                                "forecast_values": null,
                                "forecaster_count": 54,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.672434634368366
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741825972.192779,
                                "end_time": 1741826179.483837,
                                "forecast_values": null,
                                "forecaster_count": 55,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6745011949902157
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741826179.483837,
                                "end_time": 1741826185.129336,
                                "forecast_values": null,
                                "forecaster_count": 55,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.79
                                ],
                                "means": [
                                    0.6761908522318866
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741826185.129336,
                                "end_time": 1741828026.212266,
                                "forecast_values": null,
                                "forecaster_count": 55,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.79
                                ],
                                "means": [
                                    0.6724423791489139
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741828026.212266,
                                "end_time": 1741830828.251741,
                                "forecast_values": null,
                                "forecaster_count": 55,
                                "interval_lower_bounds": [
                                    0.61
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.78
                                ],
                                "means": [
                                    0.6716644413136067
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741830828.251741,
                                "end_time": 1741833747.618927,
                                "forecast_values": null,
                                "forecaster_count": 56,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6737675937639086
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741833747.618927,
                                "end_time": 1741839084.322695,
                                "forecast_values": null,
                                "forecaster_count": 56,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.79
                                ],
                                "means": [
                                    0.6790504970045702
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741839084.322695,
                                "end_time": 1741843680.879587,
                                "forecast_values": null,
                                "forecaster_count": 56,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6982594490794679
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741843680.879587,
                                "end_time": 1741867530.386296,
                                "forecast_values": null,
                                "forecaster_count": 56,
                                "interval_lower_bounds": [
                                    0.667
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.7013092337970722
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741867530.386296,
                                "end_time": 1741867564.035907,
                                "forecast_values": null,
                                "forecaster_count": 56,
                                "interval_lower_bounds": [
                                    0.62
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6961658103031354
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741867564.035907,
                                "end_time": 1741869315.162046,
                                "forecast_values": null,
                                "forecaster_count": 56,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6768678094014963
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741869315.162046,
                                "end_time": 1741869584.937373,
                                "forecast_values": null,
                                "forecaster_count": 57,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6932675419266223
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741869584.937373,
                                "end_time": 1741870700.145313,
                                "forecast_values": null,
                                "forecaster_count": 57,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6866941879440581
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741870700.145313,
                                "end_time": 1741871838.216561,
                                "forecast_values": null,
                                "forecaster_count": 58,
                                "interval_lower_bounds": [
                                    0.667
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6905744648319216
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741871838.216561,
                                "end_time": 1741871852.131184,
                                "forecast_values": null,
                                "forecaster_count": 58,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.79
                                ],
                                "means": [
                                    0.672728293051405
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741871852.131184,
                                "end_time": 1741873024.677138,
                                "forecast_values": null,
                                "forecaster_count": 58,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.79
                                ],
                                "means": [
                                    0.671272437962361
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741873024.677138,
                                "end_time": 1741874119.144447,
                                "forecast_values": null,
                                "forecaster_count": 59,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.83
                                ],
                                "means": [
                                    0.684159935324166
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741874119.144447,
                                "end_time": 1741875761.228323,
                                "forecast_values": null,
                                "forecaster_count": 60,
                                "interval_lower_bounds": [
                                    0.667
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6852915421945226
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741875761.228323,
                                "end_time": 1741881421.880611,
                                "forecast_values": null,
                                "forecaster_count": 60,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6720649464600188
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741881421.880611,
                                "end_time": 1741886762.980617,
                                "forecast_values": null,
                                "forecaster_count": 61,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6669634870990547
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741886762.980617,
                                "end_time": 1741886931.789557,
                                "forecast_values": null,
                                "forecaster_count": 62,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.78
                                ],
                                "means": [
                                    0.6727890649274186
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741886931.789557,
                                "end_time": 1741890928.214358,
                                "forecast_values": null,
                                "forecaster_count": 62,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.8
                                ],
                                "means": [
                                    0.6829204963068778
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741890928.214358,
                                "end_time": 1741895910.94207,
                                "forecast_values": null,
                                "forecaster_count": 62,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.79
                                ],
                                "means": [
                                    0.6822672675902612
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741895910.94207,
                                "end_time": 1741899737.132972,
                                "forecast_values": null,
                                "forecaster_count": 63,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6668107904819378
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741899737.132972,
                                "end_time": 1741899741.541078,
                                "forecast_values": null,
                                "forecaster_count": 64,
                                "interval_lower_bounds": [
                                    0.46
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6304931035586304
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741899741.541078,
                                "end_time": 1741900154.677852,
                                "forecast_values": null,
                                "forecaster_count": 64,
                                "interval_lower_bounds": [
                                    0.46
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6304931035586304
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741900154.677852,
                                "end_time": 1741908461.075242,
                                "forecast_values": null,
                                "forecaster_count": 64,
                                "interval_lower_bounds": [
                                    0.46
                                ],
                                "centers": [
                                    0.68
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6308896978808652
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741908461.075242,
                                "end_time": 1741909114.183868,
                                "forecast_values": null,
                                "forecaster_count": 64,
                                "interval_lower_bounds": [
                                    0.46
                                ],
                                "centers": [
                                    0.68
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6225935177460803
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741909114.183868,
                                "end_time": 1741925017.216258,
                                "forecast_values": null,
                                "forecaster_count": 64,
                                "interval_lower_bounds": [
                                    0.46
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6297383478276889
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741925017.216258,
                                "end_time": 1741930195.028827,
                                "forecast_values": null,
                                "forecaster_count": 64,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.68
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.6274712710438597
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741930195.028827,
                                "end_time": 1741942118.857511,
                                "forecast_values": null,
                                "forecaster_count": 64,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.6290865302468428
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741942118.857511,
                                "end_time": 1741943211.466407,
                                "forecast_values": null,
                                "forecaster_count": 65,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.6339336321088822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741943211.466407,
                                "end_time": 1741943883.527455,
                                "forecast_values": null,
                                "forecaster_count": 65,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.6424729452993259
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741943883.527455,
                                "end_time": 1741948067.346935,
                                "forecast_values": null,
                                "forecaster_count": 65,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.6419594344816143
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741948067.346935,
                                "end_time": 1741954050.332223,
                                "forecast_values": null,
                                "forecaster_count": 65,
                                "interval_lower_bounds": [
                                    0.55
                                ],
                                "centers": [
                                    0.68
                                ],
                                "interval_upper_bounds": [
                                    0.73
                                ],
                                "means": [
                                    0.6325527916604455
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741954050.332223,
                                "end_time": 1741962914.888738,
                                "forecast_values": null,
                                "forecaster_count": 65,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.74
                                ],
                                "means": [
                                    0.639584958070956
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741962914.888738,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 65,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.7
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.6488979929693826
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.04678195401930797,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.48978511741558245,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.002949293081317581,
                                        0.0,
                                        0.0,
                                        0.02759496933622408,
                                        0.0,
                                        0.0,
                                        0.5604905061740477,
                                        0.0,
                                        0.1455306018962374,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.17576225209385826,
                                        0.0063312489975652355,
                                        0.004442640210629016,
                                        0.0,
                                        0.03081720770343554,
                                        0.3009935988571818,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.457422476445143,
                                        0.04761994327097584,
                                        0.0,
                                        0.0,
                                        0.9084307154976287,
                                        0.010070387089084703,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.01525145653420477,
                                        0.021936199508452464,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.096082840944689,
                                        0.007446731347793363,
                                        0.0,
                                        0.0,
                                        0.017210119101531127,
                                        1.4703018227986098,
                                        0.14989147521115825,
                                        0.19030380486090423,
                                        0.4269214684219575,
                                        0.0,
                                        2.7575979982065624,
                                        0.0,
                                        0.0,
                                        0.5990421518185429,
                                        0.3297087719093377,
                                        1.583811797740852,
                                        0.015157278973843901,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.0,
                                        0.0,
                                        0.0,
                                        0.09022908093720004,
                                        0.0,
                                        0.39711981777129324,
                                        0.06876276127162699,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.40103928017934853,
                                        0.777238463870146,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741962914.888738,
                            "end_time": null,
                            "forecast_values": [
                                0.30000000000000004,
                                0.7
                            ],
                            "forecaster_count": 65,
                            "interval_lower_bounds": [
                                0.6
                            ],
                            "centers": [
                                0.7
                            ],
                            "interval_upper_bounds": [
                                0.75
                            ],
                            "means": [
                                0.6488979929693826
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.04678195401930797,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.48978511741558245,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.002949293081317581,
                                    0.0,
                                    0.0,
                                    0.02759496933622408,
                                    0.0,
                                    0.0,
                                    0.5604905061740477,
                                    0.0,
                                    0.1455306018962374,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.17576225209385826,
                                    0.0063312489975652355,
                                    0.004442640210629016,
                                    0.0,
                                    0.03081720770343554,
                                    0.3009935988571818,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.457422476445143,
                                    0.04761994327097584,
                                    0.0,
                                    0.0,
                                    0.9084307154976287,
                                    0.010070387089084703,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.01525145653420477,
                                    0.021936199508452464,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.096082840944689,
                                    0.007446731347793363,
                                    0.0,
                                    0.0,
                                    0.017210119101531127,
                                    1.4703018227986098,
                                    0.14989147521115825,
                                    0.19030380486090423,
                                    0.4269214684219575,
                                    0.0,
                                    2.7575979982065624,
                                    0.0,
                                    0.0,
                                    0.5990421518185429,
                                    0.3297087719093377,
                                    1.583811797740852,
                                    0.015157278973843901,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    0.09022908093720004,
                                    0.0,
                                    0.39711981777129324,
                                    0.06876276127162699,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.40103928017934853,
                                    0.777238463870146,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "forecaster",
            "vote": {
                "score": 4,
                "user_vote": null
            },
            "forecasts_count": 326,
            "is_current_content_translated": false,
            "description": "Relations between Ukrainian President Volodymyr Zelenskyy and US President Donald Trump broke down after a [tense Oval Office meeting](https://www.bbc.co.uk/news/articles/c2erwgwy8vgo) on February 28 ([video](https://www.youtube.com/watch?v=W6qFzWaaZ_o)) The discussion was meant to seal a deal granting the US access to Ukraine's rare earth minerals in exchange for continued support against Russia. Instead, Trump criticised Zelenskyy for lacking gratitude for US aid and questioned his approach to the war, while Zelenskyy insisted on security guarantees from the US and emphasised Russia's role as the aggressor in the war.\n\nThe unresolved meeting left US support for Ukraine uncertain, with Zelenskyy not signing the deal before departing from the White House. Various European leaders voiced support for Ukraine, Keir Starmer [insisted](https://www.politico.eu/article/europe-leaders-pledge-increase-defense-spending-nato-mark-rutte-keir-starmer-london-summit/) that any peace plan must have US' backing. A few days after leaving the Oval Office, [Zelenskyy said](https://www.bbc.co.uk/news/articles/c8j0ggm3mdwo) that he would still be willing to sign a deal on rare earth minerals.\n\nDuring his 2024 campaign, Trump [promised](https://www.nytimes.com/2025/01/19/us/politics/trump-promise-ending-ukraine-war.html) to end the Russia-Ukraine war early in his presidency, often suggesting he could broker peace through direct talks with Moscow, a stance he framed as pragmatic and cost-saving for the US."
        },
        {
            "id": 35708,
            "title": "Will NOAA's Climate.gov still be online on April 1, 2025?",
            "url_title": "climate.gov up or down?",
            "slug": "climategov-up-or-down",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.818895Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:01.234793Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 25,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35158,
                "title": "Will NOAA's Climate.gov still be online on April 1, 2025?",
                "description": "National Security Archive: [Disappearing Data: Trump Administration Removing Climate Information from Government Websites](https://nsarchive.gwu.edu/briefing-book/climate-change-transparency-project-foia/2025-02-06/disappearing-data-trump)",
                "created_at": "2025-03-02T04:05:19.818895Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 1.0,
                "resolution_criteria": "This question resolves as **Yes** if Climate.gov is online according to [Is It Down Right Now?](https://www.isitdownrightnow.com/climate.gov.html) when accessed by Metaculus on or after April 1, 2025.",
                "fine_print": "As of February 26, 2025, the resolution source returns the mesasge, \"Climate.gov is UP and reachable by us.\"",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35708,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345441.842326,
                                "end_time": 1741345477.792375,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.85
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345477.792375,
                                "end_time": 1741345514.627229,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.865
                                ],
                                "interval_upper_bounds": [
                                    0.88
                                ],
                                "means": [
                                    0.865
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345514.627229,
                                "end_time": 1741345599.9496,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.88
                                ],
                                "means": [
                                    0.8598846383805201
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345599.9496,
                                "end_time": 1741345639.27902,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.8376185026048081
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345639.27902,
                                "end_time": 1741345639.479666,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.873592484954643
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345639.479666,
                                "end_time": 1741345639.656442,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.873592484954643
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345639.656442,
                                "end_time": 1741345639.818964,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.92
                                ],
                                "means": [
                                    0.863989307425339
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345639.818964,
                                "end_time": 1741345640.005148,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.873592484954643
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345640.005148,
                                "end_time": 1741345640.177624,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.873592484954643
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345640.177624,
                                "end_time": 1741345661.964683,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.873592484954643
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.964683,
                                "end_time": 1741345713.814415,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.935
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8910200389849852
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345713.814415,
                                "end_time": 1741345714.005682,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.867655655058927
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.005682,
                                "end_time": 1741345714.20265,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8804904023226106
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.20265,
                                "end_time": 1741345714.401155,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8804904023226106
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.401155,
                                "end_time": 1741345714.597028,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8804904023226106
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.597028,
                                "end_time": 1741345714.798908,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.867655655058927
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.798908,
                                "end_time": 1741345719.171348,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8804904023226106
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345719.171348,
                                "end_time": 1741345719.514718,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8615302742872454
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345719.514718,
                                "end_time": 1741345719.859748,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8615302742872454
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345719.859748,
                                "end_time": 1741345720.228175,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8497523930192579
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345720.228175,
                                "end_time": 1741345720.570304,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8497523930192579
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345720.570304,
                                "end_time": 1741345720.909455,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8497523930192579
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345720.909455,
                                "end_time": 1741345734.383732,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8497523930192579
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.383732,
                                "end_time": 1741345734.756371,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.88
                                ],
                                "means": [
                                    0.7951728667583818
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.756371,
                                "end_time": 1741345735.121806,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.88
                                ],
                                "means": [
                                    0.8170263215345559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345735.121806,
                                "end_time": 1741345735.485371,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.88
                                ],
                                "means": [
                                    0.8170263215345559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345735.485371,
                                "end_time": 1741345735.836678,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.88
                                ],
                                "means": [
                                    0.8170263215345559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345735.836678,
                                "end_time": 1741345735.928563,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.88
                                ],
                                "means": [
                                    0.8170263215345559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345735.928563,
                                "end_time": 1741345736.125944,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.8033208631050471
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345736.125944,
                                "end_time": 1741345736.240745,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.8033208631050471
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345736.240745,
                                "end_time": 1741345736.32811,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.75
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.8017893694488399
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345736.32811,
                                "end_time": 1741345736.530545,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.8135448005938758
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345736.530545,
                                "end_time": 1741345736.728428,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.92
                                ],
                                "means": [
                                    0.8380822505670646
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345736.728428,
                                "end_time": 1741345736.911626,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.8237687380827045
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345736.911626,
                                "end_time": 1741345747.438786,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.8135448005938758
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345747.438786,
                                "end_time": 1741345747.622088,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.7916714876204647
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345747.622088,
                                "end_time": 1741345747.781202,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.7916714876204647
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345747.781202,
                                "end_time": 1741345747.944201,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.7916714876204647
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345747.944201,
                                "end_time": 1741345748.11714,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.7916714876204647
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345748.11714,
                                "end_time": 1741345748.270901,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.7724074501136772
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345748.270901,
                                "end_time": 1741345749.184896,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.85
                                ],
                                "means": [
                                    0.7916714876204647
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345749.184896,
                                "end_time": 1741345749.974562,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.8
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.8114422069690792
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345749.974562,
                                "end_time": 1741345777.783794,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8355119135258211
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345777.783794,
                                "end_time": 1741345777.99452,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.8462170989869147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345777.99452,
                                "end_time": 1741345778.202795,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.8462170989869147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345778.202795,
                                "end_time": 1741345778.409962,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.8462170989869147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345778.409962,
                                "end_time": 1741345778.600019,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.8462170989869147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345778.600019,
                                "end_time": 1741345778.802219,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.8462170989869147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345778.802219,
                                "end_time": 1741345818.046049,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.8462170989869147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345818.046049,
                                "end_time": 1741345822.522021,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8611444027338531
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345822.522021,
                                "end_time": 1741345822.724682,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.8808674741075034
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345822.724682,
                                "end_time": 1741345822.906453,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.8793368404530792
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345822.906453,
                                "end_time": 1741345823.104256,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.8793368404530792
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345823.104256,
                                "end_time": 1741345823.315644,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.8747449394898066
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345823.315644,
                                "end_time": 1741345823.50856,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.877806206798655
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345823.50856,
                                "end_time": 1741345841.344642,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.8793368404530792
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345841.344642,
                                "end_time": 1741345841.542323,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8676291948193467
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345841.542323,
                                "end_time": 1741345841.740088,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8823860789690959
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345841.740088,
                                "end_time": 1741345842.007369,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8823860789690959
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345842.007369,
                                "end_time": 1741345842.206064,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8676291948193467
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345842.206064,
                                "end_time": 1741345842.448656,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8750076368942213
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345842.448656,
                                "end_time": 1741345873.03424,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.85
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8750076368942213
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345873.03424,
                                "end_time": 1741346194.327925,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8300900274702488
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346194.327925,
                                "end_time": 1741346210.13057,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8397417032149755
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346210.13057,
                                "end_time": 1741346383.200287,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.8545061507347764
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346383.200287,
                                "end_time": 1741346582.073437,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.8220000000000001
                                ],
                                "centers": [
                                    0.9
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.850277428124494
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346582.073437,
                                "end_time": 1741346582.306917,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.824929572090801
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346582.306917,
                                "end_time": 1741346582.535453,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.8186013861661403
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346582.535453,
                                "end_time": 1741346582.759138,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.824929572090801
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346582.759138,
                                "end_time": 1741346582.971093,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.824929572090801
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346582.971093,
                                "end_time": 1741346583.198726,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.824929572090801
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346583.198726,
                                "end_time": 1741346592.998243,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.7
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.94
                                ],
                                "means": [
                                    0.824929572090801
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346592.998243,
                                "end_time": 1741346593.196725,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8280206225686694
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346593.196725,
                                "end_time": 1741346593.39602,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.8220000000000001
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8156911542043329
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346593.39602,
                                "end_time": 1741346593.578166,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.8220000000000001
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8156911542043329
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346593.578166,
                                "end_time": 1741346593.787537,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.8220000000000001
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8156911542043329
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346593.787537,
                                "end_time": 1741346593.980962,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.8
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8280206225686694
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346593.980962,
                                "end_time": 1741347559.130348,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.8220000000000001
                                ],
                                "interval_upper_bounds": [
                                    0.935
                                ],
                                "means": [
                                    0.8156911542043329
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347559.130348,
                                "end_time": 1741347869.877442,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.8220000000000001
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.8095151869379935
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347869.877442,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.75
                                ],
                                "centers": [
                                    0.85
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.826010345650712
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.46890301972848125,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.7337519574005283,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.32108126843114476,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.9293231672836759,
                                        0.9039144894018473,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.2089666388646398,
                                        0.0,
                                        0.6587413533585318,
                                        0.0,
                                        0.0,
                                        0.56743799213796,
                                        0.0,
                                        0.0,
                                        0.027714863046207582,
                                        0.0,
                                        1.0260989215162262,
                                        0.0,
                                        0.0,
                                        0.07804183443061195,
                                        0.3239984154485755,
                                        1.9008766376974546,
                                        0.0,
                                        0.0,
                                        0.3678794411714424,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741347869.877442,
                            "end_time": null,
                            "forecast_values": [
                                0.15000000000000002,
                                0.85
                            ],
                            "forecaster_count": 25,
                            "interval_lower_bounds": [
                                0.75
                            ],
                            "centers": [
                                0.85
                            ],
                            "interval_upper_bounds": [
                                0.95
                            ],
                            "means": [
                                0.826010345650712
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.46890301972848125,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.7337519574005283,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.32108126843114476,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.9293231672836759,
                                    0.9039144894018473,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.2089666388646398,
                                    0.0,
                                    0.6587413533585318,
                                    0.0,
                                    0.0,
                                    0.56743799213796,
                                    0.0,
                                    0.0,
                                    0.027714863046207582,
                                    0.0,
                                    1.0260989215162262,
                                    0.0,
                                    0.0,
                                    0.07804183443061195,
                                    0.3239984154485755,
                                    1.9008766376974546,
                                    0.0,
                                    0.0,
                                    0.3678794411714424,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 80,
            "is_current_content_translated": false,
            "description": "National Security Archive: [Disappearing Data: Trump Administration Removing Climate Information from Government Websites](https://nsarchive.gwu.edu/briefing-book/climate-change-transparency-project-foia/2025-02-06/disappearing-data-trump)"
        },
        {
            "id": 35707,
            "title": "Will the US military's climate resiliance portal be back online on April 1, 2025?",
            "url_title": "",
            "slug": "will-the-us-militarys-climate-resiliance-portal-be-back-online-on-april-1-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.788335Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:01.144590Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 26,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35157,
                "title": "Will the US military's climate resiliance portal be back online on April 1, 2025?",
                "description": "The Guardian [Scientists brace ‘for the worst’ as Trump purges climate mentions from websites](https://www.theguardian.com/us-news/2025/feb/04/trump-climate-change-federal-websites)",
                "created_at": "2025-03-02T04:05:19.788335Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 1.0,
                "resolution_criteria": "This question resolves as **Yes** if climate.mil is online according to [Is It Down Right Now?](https://www.isitdownrightnow.com/climate.mil.html) when accessed by Metaculus on or after April 1, 2025.",
                "fine_print": "As of February 26, 2025, the resolution source returns the mesasge, \"Climate.mil is DOWN for everyone.\"",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35707,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345423.498169,
                                "end_time": 1741345491.511347,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345491.511347,
                                "end_time": 1741345505.529212,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345505.529212,
                                "end_time": 1741345559.953986,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.30000000000000004
                                ],
                                "means": [
                                    0.25086380191348945
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345559.953986,
                                "end_time": 1741345649.849536,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.09
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.30000000000000004
                                ],
                                "means": [
                                    0.1910518809990911
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345649.849536,
                                "end_time": 1741345650.023626,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.09
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.17791093096088662
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.023626,
                                "end_time": 1741345650.196013,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.09
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.16190563507871317
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.196013,
                                "end_time": 1741345650.380232,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.09
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.16190563507871317
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.380232,
                                "end_time": 1741345650.545522,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.09
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.16190563507871317
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.545522,
                                "end_time": 1741345650.698383,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.09
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.16190563507871317
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.698383,
                                "end_time": 1741345653.968022,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.09
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.16190563507871317
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.968022,
                                "end_time": 1741345704.422709,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15852679621108345
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345704.422709,
                                "end_time": 1741345704.604251,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1691727579880032
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345704.604251,
                                "end_time": 1741345704.796644,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16465646864475195
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345704.796644,
                                "end_time": 1741345704.84287,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16662292523658187
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345704.84287,
                                "end_time": 1741345705.037423,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16465646864475195
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.037423,
                                "end_time": 1741345705.166768,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16465646864475195
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.166768,
                                "end_time": 1741345705.256712,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16662292523658187
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.256712,
                                "end_time": 1741345705.45794,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15287858737676435
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.45794,
                                "end_time": 1741345705.528675,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16465646864475195
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.528675,
                                "end_time": 1741345705.69187,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16662292523658187
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.69187,
                                "end_time": 1741345705.866374,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16465646864475195
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.866374,
                                "end_time": 1741345706.221245,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15484504396859428
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345706.221245,
                                "end_time": 1741345721.566452,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16662292523658187
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345721.566452,
                                "end_time": 1741345721.760983,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16299024178752822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345721.760983,
                                "end_time": 1741345721.957339,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16299024178752822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345721.957339,
                                "end_time": 1741345722.144795,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16299024178752822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345722.144795,
                                "end_time": 1741345722.327596,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16299024178752822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345722.327596,
                                "end_time": 1741345722.540072,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16299024178752822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345722.540072,
                                "end_time": 1741345722.828116,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16299024178752822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345722.828116,
                                "end_time": 1741345723.183976,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15011007589869038
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345723.183976,
                                "end_time": 1741345723.524814,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15011007589869038
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345723.524814,
                                "end_time": 1741345723.924563,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.17055795087634767
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345723.924563,
                                "end_time": 1741345724.27961,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15011007589869038
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345724.27961,
                                "end_time": 1741345724.626305,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15011007589869038
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345724.626305,
                                "end_time": 1741345734.141096,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15011007589869038
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.141096,
                                "end_time": 1741345734.297529,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15972088958967445
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.297529,
                                "end_time": 1741345734.468831,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15972088958967445
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.468831,
                                "end_time": 1741345734.642066,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15972088958967445
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.642066,
                                "end_time": 1741345734.802103,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15972088958967445
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.802103,
                                "end_time": 1741345734.969004,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15972088958967445
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.969004,
                                "end_time": 1741345759.002466,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15972088958967445
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345759.002466,
                                "end_time": 1741345762.32164,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.157946758516749
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345762.32164,
                                "end_time": 1741345762.5215,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.14788047900332407
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345762.5215,
                                "end_time": 1741345762.722983,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15656627935789902
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345762.722983,
                                "end_time": 1741345762.941272,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15656627935789902
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345762.941272,
                                "end_time": 1741345763.226856,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15656627935789902
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345763.226856,
                                "end_time": 1741345763.431191,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15656627935789902
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345763.431191,
                                "end_time": 1741345812.307864,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15656627935789902
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.307864,
                                "end_time": 1741345812.509562,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14717613391432455
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.509562,
                                "end_time": 1741345812.708713,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14717613391432455
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.708713,
                                "end_time": 1741345812.915724,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14717613391432455
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.915724,
                                "end_time": 1741345813.101608,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13887600745191195
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345813.101608,
                                "end_time": 1741345813.291588,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14717613391432455
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345813.291588,
                                "end_time": 1741345826.810351,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14717613391432455
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345826.810351,
                                "end_time": 1741345827.033018,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1317087336502836
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345827.033018,
                                "end_time": 1741345827.219505,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1317087336502836
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345827.219505,
                                "end_time": 1741345827.433361,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13966716934894896
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345827.433361,
                                "end_time": 1741345827.649758,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14762560504761432
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345827.649758,
                                "end_time": 1741345827.845376,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1317087336502836
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345827.845376,
                                "end_time": 1741345830.233006,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1317087336502836
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345830.233006,
                                "end_time": 1741345868.569002,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13450845643597498
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345868.569002,
                                "end_time": 1741345873.725519,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13679452557272606
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345873.725519,
                                "end_time": 1741346208.697538,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15208118235321855
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346208.697538,
                                "end_time": 1741346220.110137,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15179385714749966
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346220.110137,
                                "end_time": 1741346485.653564,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15824903636784873
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346485.653564,
                                "end_time": 1741346485.861178,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15717591987102392
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346485.861178,
                                "end_time": 1741346486.057474,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15717591987102392
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346486.057474,
                                "end_time": 1741346486.263764,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.25474336129430347
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346486.263764,
                                "end_time": 1741346486.474388,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15717591987102392
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346486.474388,
                                "end_time": 1741346486.673017,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15717591987102392
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346486.673017,
                                "end_time": 1741346531.876322,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15717591987102392
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346531.876322,
                                "end_time": 1741346532.071631,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14993952284387718
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346532.071631,
                                "end_time": 1741346532.245325,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14361133691921651
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346532.245325,
                                "end_time": 1741346532.471375,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14993952284387718
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346532.471375,
                                "end_time": 1741346532.692753,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14993952284387718
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346532.692753,
                                "end_time": 1741346532.893482,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14993952284387718
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346532.893482,
                                "end_time": 1741347122.586028,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14993952284387718
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347122.586028,
                                "end_time": 1741347337.29253,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.18151041836841048
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347337.29253,
                                "end_time": 1741347563.143365,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.244
                                ],
                                "means": [
                                    0.19247229323117826
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347563.143365,
                                "end_time": 1741347876.787725,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.244
                                ],
                                "means": [
                                    0.17222129393533908
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347876.787725,
                                "end_time": 1741348434.455096,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.17540918629410934
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741348434.455096,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.11
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.18379018834001803
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.29345347581623216,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.045093394185345845,
                                        1.1231891263245797,
                                        1.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        2.499163039716675,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.7114650010209351,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.4246972034401506,
                                        0.02510204527210512,
                                        0.0,
                                        0.8186979815576536,
                                        0.0,
                                        0.0,
                                        0.03449404060253258,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.7384602599698556,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741348434.455096,
                            "end_time": null,
                            "forecast_values": [
                                0.85,
                                0.15
                            ],
                            "forecaster_count": 26,
                            "interval_lower_bounds": [
                                0.11
                            ],
                            "centers": [
                                0.15
                            ],
                            "interval_upper_bounds": [
                                0.2
                            ],
                            "means": [
                                0.18379018834001803
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.29345347581623216,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.045093394185345845,
                                    1.1231891263245797,
                                    1.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.499163039716675,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.7114650010209351,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.4246972034401506,
                                    0.02510204527210512,
                                    0.0,
                                    0.8186979815576536,
                                    0.0,
                                    0.0,
                                    0.03449404060253258,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.7384602599698556,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 82,
            "is_current_content_translated": false,
            "description": "The Guardian [Scientists brace ‘for the worst’ as Trump purges climate mentions from websites](https://www.theguardian.com/us-news/2025/feb/04/trump-climate-change-federal-websites)"
        },
        {
            "id": 35706,
            "title": "Will Donald Trump visit China after the launch of this question and before April 1, 2025?",
            "url_title": "trump visits china",
            "slug": "trump-visits-china",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.757860Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:01.102079Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 27,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35156,
                "title": "Will Donald Trump visit China after the launch of this question and before April 1, 2025?",
                "description": "Wikipedia: [List of international presidential trips made by Donald Trump](https://en.wikipedia.org/wiki/List_of_international_presidential_trips_made_by_Donald_Trump)",
                "created_at": "2025-03-02T04:05:19.757860Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": [],
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 0.8,
                "resolution_criteria": "This question resolves as **Yes** if, after the launch of this question and before April 1, 2025, President Donald Trump personally visits China.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35706,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345402.497741,
                                "end_time": 1741345482.783269,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.05
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345482.783269,
                                "end_time": 1741345523.938895,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345523.938895,
                                "end_time": 1741345583.902964,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.06483812598526519
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345583.902964,
                                "end_time": 1741345643.095828,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07791191389003183
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345643.095828,
                                "end_time": 1741345663.169327,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06897714508107773
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345663.169327,
                                "end_time": 1741345663.329378,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06359140001391712
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345663.329378,
                                "end_time": 1741345663.493041,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06359140001391712
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345663.493041,
                                "end_time": 1741345663.652653,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.05791536703408731
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345663.652653,
                                "end_time": 1741345663.807542,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.055077350544172406
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345663.807542,
                                "end_time": 1741345663.99991,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.05223933405425751
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345663.99991,
                                "end_time": 1741345692.867096,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.05791536703408731
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345692.867096,
                                "end_time": 1741345693.21684,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09438777411750189
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345693.21684,
                                "end_time": 1741345693.588884,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09438777411750189
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345693.588884,
                                "end_time": 1741345693.956029,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09438777411750189
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345693.956029,
                                "end_time": 1741345694.336171,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09438777411750189
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345694.336171,
                                "end_time": 1741345694.513698,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09438777411750189
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345694.513698,
                                "end_time": 1741345694.686432,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1074876579873533
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345694.686432,
                                "end_time": 1741345694.721075,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10945411457918319
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345694.721075,
                                "end_time": 1741345694.933552,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1074876579873533
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345694.933552,
                                "end_time": 1741345695.159123,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1074876579873533
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345695.159123,
                                "end_time": 1741345695.363794,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1074876579873533
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345695.363794,
                                "end_time": 1741345695.560045,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09570977671936569
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345695.560045,
                                "end_time": 1741345709.830486,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1074876579873533
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345709.830486,
                                "end_time": 1741345710.039585,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.0949246186472054
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.039585,
                                "end_time": 1741345710.222376,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1167780734233795
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.222376,
                                "end_time": 1741345710.413321,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1167780734233795
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.413321,
                                "end_time": 1741345710.597142,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10585134603529245
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.597142,
                                "end_time": 1741345710.794488,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.0949246186472054
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.794488,
                                "end_time": 1741345711.544064,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10585134603529245
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345711.544064,
                                "end_time": 1741345711.916546,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10465487011348572
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345711.916546,
                                "end_time": 1741345712.306633,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10465487011348572
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345712.306633,
                                "end_time": 1741345712.646651,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10465487011348572
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345712.646651,
                                "end_time": 1741345712.986622,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10465487011348572
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345712.986622,
                                "end_time": 1741345713.337184,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10465487011348572
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345713.337184,
                                "end_time": 1741345723.031793,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10465487011348572
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345723.031793,
                                "end_time": 1741345723.235094,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16155026670929395
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345723.235094,
                                "end_time": 1741345723.402992,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.12302219169571907
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345723.402992,
                                "end_time": 1741345723.59716,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1422862292025065
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345723.59716,
                                "end_time": 1741345723.794693,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1422862292025065
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345723.794693,
                                "end_time": 1741345724.139074,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1422862292025065
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345724.139074,
                                "end_time": 1741345760.865153,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1422862292025065
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345760.865153,
                                "end_time": 1741345761.085286,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1254433399462393
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345761.085286,
                                "end_time": 1741345761.312709,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1254433399462393
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345761.312709,
                                "end_time": 1741345761.524923,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12179319855422113
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345761.524923,
                                "end_time": 1741345761.728541,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13456869342628466
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345761.728541,
                                "end_time": 1741345761.926375,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13456869342628466
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345761.926375,
                                "end_time": 1741345763.891859,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1254433399462393
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345763.891859,
                                "end_time": 1741345802.371103,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.11233762416913208
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345802.371103,
                                "end_time": 1741345802.593649,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10198942088972916
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345802.593649,
                                "end_time": 1741345802.809869,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10198942088972916
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345802.809869,
                                "end_time": 1741345803.002041,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10198942088972916
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345803.002041,
                                "end_time": 1741345803.025208,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.11028954735214176
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345803.025208,
                                "end_time": 1741345803.228755,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10865177333273389
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345803.228755,
                                "end_time": 1741345803.317246,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10069333763406856
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345803.317246,
                                "end_time": 1741345803.440284,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10167276732515931
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345803.440284,
                                "end_time": 1741345803.523263,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10069333763406856
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345803.523263,
                                "end_time": 1741345803.719214,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10167276732515931
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345803.719214,
                                "end_time": 1741345803.914683,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10963120302382467
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345803.914683,
                                "end_time": 1741345804.121084,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10963120302382467
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345804.121084,
                                "end_time": 1741345857.59578,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10167276732515931
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345857.59578,
                                "end_time": 1741345874.407509,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.073
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09728401706182292
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345874.407509,
                                "end_time": 1741345890.893435,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.098
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09738967383454168
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345890.893435,
                                "end_time": 1741346205.662575,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.073
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09063227937573948
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346205.662575,
                                "end_time": 1741346221.900894,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08502264213640454
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346221.900894,
                                "end_time": 1741346353.259407,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.098
                                ],
                                "means": [
                                    0.08033283668044047
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346353.259407,
                                "end_time": 1741346353.46385,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.098
                                ],
                                "means": [
                                    0.07638684032574611
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346353.46385,
                                "end_time": 1741346353.643206,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.073
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0828913364206314
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346353.643206,
                                "end_time": 1741346353.834167,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.073
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0828913364206314
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346353.834167,
                                "end_time": 1741346354.021841,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.098
                                ],
                                "means": [
                                    0.07638684032574611
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346354.021841,
                                "end_time": 1741346354.214167,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.098
                                ],
                                "means": [
                                    0.07248414266881492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346354.214167,
                                "end_time": 1741346421.270401,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.098
                                ],
                                "means": [
                                    0.07638684032574611
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346421.270401,
                                "end_time": 1741346421.481847,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08570359554415433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346421.481847,
                                "end_time": 1741346421.698697,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08570359554415433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346421.698697,
                                "end_time": 1741346421.917991,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09835996739347563
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346421.917991,
                                "end_time": 1741346422.149388,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08570359554415433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346422.149388,
                                "end_time": 1741346422.42567,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08570359554415433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346422.42567,
                                "end_time": 1741346602.829238,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08570359554415433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346602.829238,
                                "end_time": 1741347030.281576,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.073
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08574014063776828
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347030.281576,
                                "end_time": 1741347738.523607,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.098
                                ],
                                "means": [
                                    0.07783464640577546
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347738.523607,
                                "end_time": 1741347783.200513,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.073
                                ],
                                "interval_upper_bounds": [
                                    0.098
                                ],
                                "means": [
                                    0.07945874629634678
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347783.200513,
                                "end_time": 1741347867.49843,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.086
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08411127232099333
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347867.49843,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.073
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08028165381596569
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.03130111324493288,
                                        0.7429155235659053,
                                        0.06414156534256711,
                                        0.0,
                                        3.525605646907138,
                                        0.0,
                                        0.30235531220200856,
                                        0.6701049752490269,
                                        1.1638519814167685,
                                        0.549267326712118,
                                        0.0,
                                        0.9074353916842878,
                                        0.0,
                                        0.0,
                                        0.7195332523735276,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.07805035281635142,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.15266220141285267,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741347867.49843,
                            "end_time": null,
                            "forecast_values": [
                                0.927,
                                0.073
                            ],
                            "forecaster_count": 27,
                            "interval_lower_bounds": [
                                0.05
                            ],
                            "centers": [
                                0.073
                            ],
                            "interval_upper_bounds": [
                                0.1
                            ],
                            "means": [
                                0.08028165381596569
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.03130111324493288,
                                    0.7429155235659053,
                                    0.06414156534256711,
                                    0.0,
                                    3.525605646907138,
                                    0.0,
                                    0.30235531220200856,
                                    0.6701049752490269,
                                    1.1638519814167685,
                                    0.549267326712118,
                                    0.0,
                                    0.9074353916842878,
                                    0.0,
                                    0.0,
                                    0.7195332523735276,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.07805035281635142,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.15266220141285267,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 82,
            "is_current_content_translated": false,
            "description": "Wikipedia: [List of international presidential trips made by Donald Trump](https://en.wikipedia.org/wiki/List_of_international_presidential_trips_made_by_Donald_Trump)"
        },
        {
            "id": 35705,
            "title": "Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",
            "url_title": "",
            "slug": "will-donald-trump-visit-russia-after-the-launch-of-this-question-and-before-april-1-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.726833Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:00.994376Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 25,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35155,
                "title": "Will Donald Trump visit Russia after the launch of this question and before April 1, 2025?",
                "description": "Wikipedia: [List of international presidential trips made by Donald Trump](https://en.wikipedia.org/wiki/List_of_international_presidential_trips_made_by_Donald_Trump)",
                "created_at": "2025-03-02T04:05:19.726833Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 0.8,
                "resolution_criteria": "This question resolves as **Yes** if, after the launch of this question and before April 1, 2025, President Donald Trump personally visits Russia.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35705,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345382.320585,
                                "end_time": 1741345491.676867,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.05
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345491.676867,
                                "end_time": 1741345553.565726,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.05
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345553.565726,
                                "end_time": 1741345642.853168,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09527667154117066
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345642.853168,
                                "end_time": 1741345669.639369,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.125
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10632831491864268
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345669.639369,
                                "end_time": 1741345669.809714,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07869411045299625
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345669.809714,
                                "end_time": 1741345669.988347,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07869411045299625
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345669.988347,
                                "end_time": 1741345670.167099,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07549305127656157
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345670.167099,
                                "end_time": 1741345670.334154,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07549305127656157
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345670.334154,
                                "end_time": 1741345670.501789,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07869411045299625
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345670.501789,
                                "end_time": 1741345681.657813,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07869411045299625
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345681.657813,
                                "end_time": 1741345681.85643,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07055067459009194
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345681.85643,
                                "end_time": 1741345682.065576,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08474075703966646
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.065576,
                                "end_time": 1741345682.278452,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07055067459009194
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.278452,
                                "end_time": 1741345682.504018,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07055067459009194
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.504018,
                                "end_time": 1741345682.705088,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07055067459009194
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.705088,
                                "end_time": 1741345685.602596,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.07055067459009194
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345685.602596,
                                "end_time": 1741345685.938322,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10377966209190191
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345685.938322,
                                "end_time": 1741345686.279017,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10377966209190191
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345686.279017,
                                "end_time": 1741345686.603912,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10377966209190191
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345686.603912,
                                "end_time": 1741345686.975095,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10377966209190191
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345686.975095,
                                "end_time": 1741345687.310038,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10377966209190191
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345687.310038,
                                "end_time": 1741345696.912617,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10377966209190191
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345696.912617,
                                "end_time": 1741345696.97788,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10288933386487124
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345696.97788,
                                "end_time": 1741345697.116076,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.09133118720729189
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345697.116076,
                                "end_time": 1741345697.297434,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.09305390728388248
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345697.297434,
                                "end_time": 1741345697.325041,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08212717989579543
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345697.325041,
                                "end_time": 1741345697.495779,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08212717989579543
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345697.495779,
                                "end_time": 1741345697.697011,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08212717989579543
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345697.697011,
                                "end_time": 1741345697.718602,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08212717989579543
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345697.718602,
                                "end_time": 1741345697.90413,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08212717989579543
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345697.90413,
                                "end_time": 1741345698.071244,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08212717989579543
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345698.071244,
                                "end_time": 1741345698.404907,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.09305390728388248
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345698.404907,
                                "end_time": 1741345698.772389,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08212717989579543
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345698.772389,
                                "end_time": 1741345710.317816,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.08212717989579543
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.317816,
                                "end_time": 1741345710.48357,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10622966678334209
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.48357,
                                "end_time": 1741345710.638848,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10622966678334209
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.638848,
                                "end_time": 1741345710.793317,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10622966678334209
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.793317,
                                "end_time": 1741345710.959719,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10622966678334209
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345710.959719,
                                "end_time": 1741345711.124239,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08578179180568478
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345711.124239,
                                "end_time": 1741345738.891316,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10622966678334209
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345738.891316,
                                "end_time": 1741345739.086066,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09539756268425748
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345739.086066,
                                "end_time": 1741345739.320111,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09154475518289999
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345739.320111,
                                "end_time": 1741345739.521291,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09154475518289999
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345739.521291,
                                "end_time": 1741345739.730713,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09539756268425748
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345739.730713,
                                "end_time": 1741345739.934824,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.08961835143222124
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345739.934824,
                                "end_time": 1741345767.534933,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.09154475518289999
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345767.534933,
                                "end_time": 1741345781.983857,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.125
                                ],
                                "means": [
                                    0.09673803852924531
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345781.983857,
                                "end_time": 1741345782.184664,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08861889309665621
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345782.184664,
                                "end_time": 1741345782.3908,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10599049380580607
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345782.3908,
                                "end_time": 1741345782.590215,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.09730469345123113
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345782.590215,
                                "end_time": 1741345782.782302,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08340741288391126
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345782.782302,
                                "end_time": 1741345782.970603,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08861889309665621
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345782.970603,
                                "end_time": 1741345790.881595,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08861889309665621
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345790.881595,
                                "end_time": 1741345791.072289,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08220805916584341
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345791.072289,
                                "end_time": 1741345791.267054,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.07722798328839585
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345791.267054,
                                "end_time": 1741345791.445063,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08220805916584341
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345791.445063,
                                "end_time": 1741345791.639187,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08220805916584341
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345791.639187,
                                "end_time": 1741345791.826633,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08220805916584341
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345791.826633,
                                "end_time": 1741345875.071589,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08220805916584341
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345875.071589,
                                "end_time": 1741345914.518903,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.19
                                ],
                                "means": [
                                    0.0993651637651029
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345914.518903,
                                "end_time": 1741345946.162288,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09487043297244839
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345946.162288,
                                "end_time": 1741346206.43556,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.08824895516121335
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346206.43556,
                                "end_time": 1741346225.28074,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.19
                                ],
                                "means": [
                                    0.10418377450172041
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346225.28074,
                                "end_time": 1741346384.586712,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.19
                                ],
                                "means": [
                                    0.09670323627245093
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346384.586712,
                                "end_time": 1741346433.896586,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10384008940709415
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346433.896586,
                                "end_time": 1741346434.068923,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09293333872422858
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346434.068923,
                                "end_time": 1741346434.224298,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09683603638115977
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346434.224298,
                                "end_time": 1741346434.412818,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09293333872422858
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346434.412818,
                                "end_time": 1741346434.570416,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09293333872422858
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346434.570416,
                                "end_time": 1741346434.730701,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10334053247604506
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346434.730701,
                                "end_time": 1741346454.64438,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09293333872422858
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346454.64438,
                                "end_time": 1741346454.868983,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10015590757728283
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346454.868983,
                                "end_time": 1741346455.098236,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09382772165262218
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346455.098236,
                                "end_time": 1741346455.30425,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10015590757728283
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346455.30425,
                                "end_time": 1741346455.528723,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.0912964472827579
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346455.528723,
                                "end_time": 1741346455.725653,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10015590757728283
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346455.725653,
                                "end_time": 1741346758.261679,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10015590757728283
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346758.261679,
                                "end_time": 1741347722.633694,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10630141918403242
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347722.633694,
                                "end_time": 1741347877.980442,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.16
                                ],
                                "means": [
                                    0.11275887146187173
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347877.980442,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.11126077636410588
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.7217847456909756,
                                        0.1857459851945321,
                                        0.0,
                                        1.848285268849469,
                                        0.0,
                                        0.3678794411714424,
                                        0.0,
                                        0.0,
                                        1.0,
                                        0.0,
                                        0.2650492843267875,
                                        0.0,
                                        0.0,
                                        2.177024951743503,
                                        0.9039144894018473,
                                        0.0,
                                        0.0,
                                        0.3239984154485755,
                                        0.7230474180901949,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741347877.980442,
                            "end_time": null,
                            "forecast_values": [
                                0.88,
                                0.12
                            ],
                            "forecaster_count": 25,
                            "interval_lower_bounds": [
                                0.05
                            ],
                            "centers": [
                                0.12
                            ],
                            "interval_upper_bounds": [
                                0.15
                            ],
                            "means": [
                                0.11126077636410588
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.7217847456909756,
                                    0.1857459851945321,
                                    0.0,
                                    1.848285268849469,
                                    0.0,
                                    0.3678794411714424,
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.2650492843267875,
                                    0.0,
                                    0.0,
                                    2.177024951743503,
                                    0.9039144894018473,
                                    0.0,
                                    0.0,
                                    0.3239984154485755,
                                    0.7230474180901949,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 80,
            "is_current_content_translated": false,
            "description": "Wikipedia: [List of international presidential trips made by Donald Trump](https://en.wikipedia.org/wiki/List_of_international_presidential_trips_made_by_Donald_Trump)"
        },
        {
            "id": 35704,
            "title": "Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",
            "url_title": "",
            "slug": "will-donald-trump-visit-mexico-after-the-launch-of-this-question-and-before-april-1-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.695056Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:00.910968Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 27,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35154,
                "title": "Will Donald Trump visit Mexico after the launch of this question and before April 1, 2025?",
                "description": "Wikipedia: [List of international presidential trips made by Donald Trump](https://en.wikipedia.org/wiki/List_of_international_presidential_trips_made_by_Donald_Trump)",
                "created_at": "2025-03-02T04:05:19.695056Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 0.8,
                "resolution_criteria": "This question resolves as **Yes** if, after the launch of this question and before April 1, 2025, President Donald Trump personally visits Mexico.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35704,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345331.133505,
                                "end_time": 1741345465.631034,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.1
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345465.631034,
                                "end_time": 1741345637.821955,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.125
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.125
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345637.821955,
                                "end_time": 1741345670.880714,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.11647439730086673
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345670.880714,
                                "end_time": 1741345671.094872,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1289397914628578
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345671.094872,
                                "end_time": 1741345671.305511,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.11034893379229109
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345671.305511,
                                "end_time": 1741345671.518914,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1289397914628578
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345671.518914,
                                "end_time": 1741345671.72197,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1289397914628578
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345671.72197,
                                "end_time": 1741345671.928201,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1289397914628578
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345671.928201,
                                "end_time": 1741345673.068063,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1289397914628578
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345673.068063,
                                "end_time": 1741345673.702864,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.3917660229571772
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345673.702864,
                                "end_time": 1741345674.044994,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.3917660229571772
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.044994,
                                "end_time": 1741345674.559213,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.3917660229571772
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.559213,
                                "end_time": 1741345674.899123,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.9
                                ],
                                "means": [
                                    0.37576072707500374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.899123,
                                "end_time": 1741345675.229003,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.3917660229571772
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345675.229003,
                                "end_time": 1741345681.529056,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.95
                                ],
                                "means": [
                                    0.3917660229571772
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345681.529056,
                                "end_time": 1741345681.723365,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.32315242697181573
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345681.723365,
                                "end_time": 1741345681.912647,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.30896234452224125
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345681.912647,
                                "end_time": 1741345682.125319,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.32315242697181573
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.125319,
                                "end_time": 1741345682.321551,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.30896234452224125
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.321551,
                                "end_time": 1741345682.537591,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.2947722620726667
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.537591,
                                "end_time": 1741345684.935395,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.30896234452224125
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345684.935395,
                                "end_time": 1741345685.296441,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.24248801966716302
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345685.296441,
                                "end_time": 1741345685.643343,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.24248801966716302
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345685.643343,
                                "end_time": 1741345685.983965,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.24248801966716302
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345685.983965,
                                "end_time": 1741345686.349719,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.25532276693084655
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345686.349719,
                                "end_time": 1741345686.701579,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.23222022185621616
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345686.701579,
                                "end_time": 1741345692.121654,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.24248801966716302
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345692.121654,
                                "end_time": 1741345692.302352,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.19714599884416492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345692.302352,
                                "end_time": 1741345692.464639,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.20892388011215252
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345692.464639,
                                "end_time": 1741345692.623036,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.19714599884416492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345692.623036,
                                "end_time": 1741345692.806978,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.19714599884416492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345692.806978,
                                "end_time": 1741345692.974172,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1924348463369699
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345692.974172,
                                "end_time": 1741345699.47854,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.19714599884416492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345699.47854,
                                "end_time": 1741345699.675735,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.19776969669606678
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345699.675735,
                                "end_time": 1741345699.843402,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.19776969669606678
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345699.843402,
                                "end_time": 1741345700.003692,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.19776969669606678
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345700.003692,
                                "end_time": 1741345700.182618,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2196231514722409
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345700.182618,
                                "end_time": 1741345700.387545,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2196231514722409
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345700.387545,
                                "end_time": 1741345727.654553,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.19776969669606678
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345727.654553,
                                "end_time": 1741345727.860943,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1777778713496203
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345727.860943,
                                "end_time": 1741345728.057523,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1777778713496203
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345728.057523,
                                "end_time": 1741345728.253731,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1777778713496203
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345728.253731,
                                "end_time": 1741345728.456426,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.18800180883844897
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345728.456426,
                                "end_time": 1741345728.69646,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16755393386079165
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345728.69646,
                                "end_time": 1741345758.834289,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1777778713496203
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345758.834289,
                                "end_time": 1741345759.053625,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15316269428745485
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345759.053625,
                                "end_time": 1741345759.261748,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15316269428745485
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345759.261748,
                                "end_time": 1741345759.488485,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16279471304084855
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345759.488485,
                                "end_time": 1741345759.708695,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16279471304084855
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345759.708695,
                                "end_time": 1741345759.899695,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16279471304084855
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345759.899695,
                                "end_time": 1741345771.535941,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16279471304084855
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345771.535941,
                                "end_time": 1741345801.190143,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.14220888049728797
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345801.190143,
                                "end_time": 1741345801.392781,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.12619072195892198
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345801.392781,
                                "end_time": 1741345801.577957,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.1348765223134969
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345801.577957,
                                "end_time": 1741345801.770452,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.12619072195892198
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345801.770452,
                                "end_time": 1741345801.96828,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.12619072195892198
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345801.96828,
                                "end_time": 1741345802.156319,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.12619072195892198
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345802.156319,
                                "end_time": 1741345875.748156,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.12619072195892198
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345875.748156,
                                "end_time": 1741345894.473037,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.08600000000000001
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.11951896046142763
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345894.473037,
                                "end_time": 1741346006.995261,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12300000000000001
                                ],
                                "means": [
                                    0.12007303304807242
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346006.995261,
                                "end_time": 1741346195.737033,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.08600000000000001
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10934741878297642
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346195.737033,
                                "end_time": 1741346206.227216,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10796803102218067
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346206.227216,
                                "end_time": 1741346224.609006,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.10683185251914142
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346224.609006,
                                "end_time": 1741346288.985789,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12300000000000001
                                ],
                                "means": [
                                    0.12659745228204186
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346288.985789,
                                "end_time": 1741346289.180874,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.08600000000000001
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12973123629364433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346289.180874,
                                "end_time": 1741346289.382063,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.08600000000000001
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12973123629364433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346289.382063,
                                "end_time": 1741346289.59601,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.08600000000000001
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12973123629364433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346289.59601,
                                "end_time": 1741346289.813997,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.08600000000000001
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12300000000000001
                                ],
                                "means": [
                                    0.1257140018676706
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346289.813997,
                                "end_time": 1741346290.017749,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.08600000000000001
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12973123629364433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346290.017749,
                                "end_time": 1741346377.792653,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.08600000000000001
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12973123629364433
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346377.792653,
                                "end_time": 1741346413.149829,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.08600000000000001
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.14537699037093782
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346413.149829,
                                "end_time": 1741346413.324772,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13330572381090053
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346413.324772,
                                "end_time": 1741346413.506448,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1396339097355612
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346413.506448,
                                "end_time": 1741346413.706034,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1396339097355612
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346413.706034,
                                "end_time": 1741346413.905034,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1396339097355612
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346413.905034,
                                "end_time": 1741346414.097062,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1396339097355612
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346414.097062,
                                "end_time": 1741346522.193929,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1396339097355612
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346522.193929,
                                "end_time": 1741346934.913277,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14091199355533374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346934.913277,
                                "end_time": 1741347533.815483,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.054000000000000006
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1304605059698637
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347533.815483,
                                "end_time": 1741347875.944987,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.07533333333333335
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12398769626037832
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347875.944987,
                                "end_time": 1741348625.665118,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.07533333333333335
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12123486128545326
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741348625.665118,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.054000000000000006
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.10986938378334088
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        1.0,
                                        0.0,
                                        0.0,
                                        1.5977390632642707,
                                        0.0,
                                        0.8218869508967813,
                                        0.23351825246045652,
                                        0.0,
                                        2.63183273077867,
                                        0.0,
                                        0.26629006976841835,
                                        0.0,
                                        0.0,
                                        1.2186039534858049,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.11123030328809189,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.9743087774866892,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.05181454149830181,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741348625.665118,
                            "end_time": null,
                            "forecast_values": [
                                0.9,
                                0.1
                            ],
                            "forecaster_count": 27,
                            "interval_lower_bounds": [
                                0.054000000000000006
                            ],
                            "centers": [
                                0.1
                            ],
                            "interval_upper_bounds": [
                                0.15
                            ],
                            "means": [
                                0.10986938378334088
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    1.5977390632642707,
                                    0.0,
                                    0.8218869508967813,
                                    0.23351825246045652,
                                    0.0,
                                    2.63183273077867,
                                    0.0,
                                    0.26629006976841835,
                                    0.0,
                                    0.0,
                                    1.2186039534858049,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.11123030328809189,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.9743087774866892,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.05181454149830181,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 82,
            "is_current_content_translated": false,
            "description": "Wikipedia: [List of international presidential trips made by Donald Trump](https://en.wikipedia.org/wiki/List_of_international_presidential_trips_made_by_Donald_Trump)"
        },
        {
            "id": 35703,
            "title": "Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",
            "url_title": "",
            "slug": "will-donald-trump-visit-canada-after-the-launch-of-this-question-and-before-april-1-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.523858Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:00.858467Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 27,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35153,
                "title": "Will Donald Trump visit Canada after the launch of this question and before April 1, 2025?",
                "description": "Wikipedia: [List of international presidential trips made by Donald Trump](https://en.wikipedia.org/wiki/List_of_international_presidential_trips_made_by_Donald_Trump)",
                "created_at": "2025-03-02T04:05:19.523858Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 0.8,
                "resolution_criteria": "This question resolves as **Yes** if, after the launch of this question and before April 1, 2025, President Donald Trump personally visits Canada.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35703,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345309.626684,
                                "end_time": 1741345426.018654,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.02
                                ],
                                "interval_upper_bounds": [
                                    0.02
                                ],
                                "means": [
                                    0.02
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345426.018654,
                                "end_time": 1741345568.161078,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.015
                                ],
                                "interval_upper_bounds": [
                                    0.02
                                ],
                                "means": [
                                    0.015
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345568.161078,
                                "end_time": 1741345621.574012,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.02
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.05292645777276318
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345621.574012,
                                "end_time": 1741345658.699995,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.03
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.04440200750588923
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345658.699995,
                                "end_time": 1741345658.91151,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.04619395803017781
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345658.91151,
                                "end_time": 1741345659.113297,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.07820454979452464
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.113297,
                                "end_time": 1741345659.374669,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.062199253912351225
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.374669,
                                "end_time": 1741345659.693926,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.04619395803017781
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.693926,
                                "end_time": 1741345659.948238,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.062199253912351225
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.948238,
                                "end_time": 1741345668.043163,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.062199253912351225
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345668.043163,
                                "end_time": 1741345668.389602,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07292716798513459
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345668.389602,
                                "end_time": 1741345668.729511,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07292716798513459
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345668.729511,
                                "end_time": 1741345669.064234,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07292716798513459
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345669.064234,
                                "end_time": 1741345669.435409,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07292716798513459
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345669.435409,
                                "end_time": 1741345669.782613,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07292716798513459
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345669.782613,
                                "end_time": 1741345670.549696,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07292716798513459
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345670.549696,
                                "end_time": 1741345670.760118,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09271137438127729
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345670.760118,
                                "end_time": 1741345670.963754,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0670418798539102
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345670.963754,
                                "end_time": 1741345671.159226,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09271137438127729
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345671.159226,
                                "end_time": 1741345671.368085,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0670418798539102
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345671.368085,
                                "end_time": 1741345671.565957,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07987662711759375
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345671.565957,
                                "end_time": 1741345672.630416,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.03
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07987662711759375
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345672.630416,
                                "end_time": 1741345673.002342,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0728389597800146
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345673.002342,
                                "end_time": 1741345673.363344,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0728389597800146
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345673.363344,
                                "end_time": 1741345673.718505,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0728389597800146
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345673.718505,
                                "end_time": 1741345674.050828,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0728389597800146
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.050828,
                                "end_time": 1741345674.397015,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0728389597800146
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.397015,
                                "end_time": 1741345693.164073,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0728389597800146
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345693.164073,
                                "end_time": 1741345693.355204,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06784785803314052
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345693.355204,
                                "end_time": 1741345693.561218,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06784785803314052
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345693.561218,
                                "end_time": 1741345693.728727,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07877458542122757
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345693.728727,
                                "end_time": 1741345693.920831,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06784785803314052
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345693.920831,
                                "end_time": 1741345694.099554,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06784785803314052
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345694.099554,
                                "end_time": 1741345702.62845,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06784785803314052
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345702.62845,
                                "end_time": 1741345702.886584,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06419835033633417
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345702.886584,
                                "end_time": 1741345703.143213,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06419835033633417
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345703.143213,
                                "end_time": 1741345703.285092,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.08
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07033271282963137
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345703.285092,
                                "end_time": 1741345703.414155,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.08
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09531186766416498
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345703.414155,
                                "end_time": 1741345703.459569,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08622635781112828
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345703.459569,
                                "end_time": 1741345703.656755,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09035923106237886
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345703.656755,
                                "end_time": 1741345703.706319,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09035923106237886
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345703.706319,
                                "end_time": 1741345703.834554,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08622635781112828
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345703.834554,
                                "end_time": 1741345703.993461,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09035923106237886
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345703.993461,
                                "end_time": 1741345704.020116,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08622635781112828
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345704.020116,
                                "end_time": 1741345704.218363,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09035923106237886
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345704.218363,
                                "end_time": 1741345717.95789,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09035923106237886
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345717.95789,
                                "end_time": 1741345718.152132,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08299338606983815
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345718.152132,
                                "end_time": 1741345718.377074,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09211873954988353
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345718.377074,
                                "end_time": 1741345718.571886,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09211873954988353
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345718.571886,
                                "end_time": 1741345718.750237,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08299338606983815
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345718.750237,
                                "end_time": 1741345718.949218,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08299338606983815
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345718.949218,
                                "end_time": 1741345772.988408,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08299338606983815
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345772.988408,
                                "end_time": 1741345773.207164,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07205042656861266
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345773.207164,
                                "end_time": 1741345773.371358,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07205042656861266
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345773.371358,
                                "end_time": 1741345773.563199,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07726190678135761
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345773.563199,
                                "end_time": 1741345773.75385,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07726190678135761
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345773.75385,
                                "end_time": 1741345773.941087,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07205042656861266
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345773.941087,
                                "end_time": 1741345871.859537,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07205042656861266
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345871.859537,
                                "end_time": 1741345876.411244,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.042
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06706197975323407
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345876.411244,
                                "end_time": 1741346070.420729,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.042
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.073578031788525
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346070.420729,
                                "end_time": 1741346070.627879,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.042
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07762226716458609
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346070.627879,
                                "end_time": 1741346070.826385,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.042
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06996909889246496
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346070.826385,
                                "end_time": 1741346071.000684,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.042
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06996909889246496
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346071.000684,
                                "end_time": 1741346071.206247,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.042
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06996909889246496
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346071.206247,
                                "end_time": 1741346071.400334,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.042
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07762226716458609
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346071.400334,
                                "end_time": 1741346077.96109,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.042
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06996909889246496
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346077.96109,
                                "end_time": 1741346098.045442,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.06702228210315506
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346098.045442,
                                "end_time": 1741346199.752915,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07172464508961765
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346199.752915,
                                "end_time": 1741346205.425239,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.08943416616127647
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346205.425239,
                                "end_time": 1741346222.375198,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09084901387581105
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346222.375198,
                                "end_time": 1741346232.377977,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09203946494599378
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346232.377977,
                                "end_time": 1741346232.581128,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.09937516578828504
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346232.581128,
                                "end_time": 1741346232.812778,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.09557825423348865
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346232.812778,
                                "end_time": 1741346233.020123,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.09937516578828504
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346233.020123,
                                "end_time": 1741346233.245881,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.09557825423348865
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346233.245881,
                                "end_time": 1741346233.449321,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.09937516578828504
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346233.449321,
                                "end_time": 1741346443.422615,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.09937516578828504
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346443.422615,
                                "end_time": 1741346589.370405,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.10799999999999998
                                ],
                                "means": [
                                    0.09957549920839134
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346589.370405,
                                "end_time": 1741347417.405852,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.101
                                ],
                                "means": [
                                    0.09649995115645858
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347417.405852,
                                "end_time": 1741347864.6763,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.06833333333333334
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.101
                                ],
                                "means": [
                                    0.09319274078071595
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347864.6763,
                                "end_time": 1741348096.636954,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.06833333333333334
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.101
                                ],
                                "means": [
                                    0.09397394382159233
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741348096.636954,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08454632217871962
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        1.0227784842835694,
                                        0.2188564438547366,
                                        0.04091934181495329,
                                        0.23351825246045652,
                                        1.156993073275999,
                                        0.8218869508967813,
                                        0.7429155235659053,
                                        0.0,
                                        0.0,
                                        3.4807353572345394,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.6030611589824652,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.585560056558079,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741348096.636954,
                            "end_time": null,
                            "forecast_values": [
                                0.9,
                                0.1
                            ],
                            "forecaster_count": 27,
                            "interval_lower_bounds": [
                                0.05
                            ],
                            "centers": [
                                0.1
                            ],
                            "interval_upper_bounds": [
                                0.1
                            ],
                            "means": [
                                0.08454632217871962
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    1.0227784842835694,
                                    0.2188564438547366,
                                    0.04091934181495329,
                                    0.23351825246045652,
                                    1.156993073275999,
                                    0.8218869508967813,
                                    0.7429155235659053,
                                    0.0,
                                    0.0,
                                    3.4807353572345394,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6030611589824652,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.585560056558079,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 82,
            "is_current_content_translated": false,
            "description": "Wikipedia: [List of international presidential trips made by Donald Trump](https://en.wikipedia.org/wiki/List_of_international_presidential_trips_made_by_Donald_Trump)"
        },
        {
            "id": 35702,
            "title": "Will the NFL ban the \"Tush-Push\" before April 1, 2025?",
            "url_title": "",
            "slug": "will-the-nfl-ban-the-tush-push-before-april-1-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.493573Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:00.747009Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 29,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35152,
                "title": "Will the NFL ban the \"Tush-Push\" before April 1, 2025?",
                "description": "[NFL opinions split on proposal to ban Tush Push](https://www.nbcsportsphiladelphia.com/nfl/philadelphia-eagles/tush-push-proposal-ban-eagles-brotherly-shove-packers-combine-owners-meetings/651116/)",
                "created_at": "2025-03-02T04:05:19.493573Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 1.0,
                "resolution_criteria": "This question resolves as **Yes** if the National Football League officially approves or announces a rule restricting the quarterback sneak known as the [Tush-Push](https://en.wikipedia.org/wiki/Quarterback_sneak#Tush_push) before April 1, 2025. If there are no reports of this occurring before that date, this question resolves as **No**.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35702,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345289.964555,
                                "end_time": 1741345397.270405,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345397.270405,
                                "end_time": 1741345554.33499,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.22499999999999998
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.22499999999999998
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345554.33499,
                                "end_time": 1741345629.418466,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.26733819921435614
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345629.418466,
                                "end_time": 1741345655.596152,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.27948241700776233
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345655.596152,
                                "end_time": 1741345655.792266,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2380343290927983
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345655.792266,
                                "end_time": 1741345655.994395,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2380343290927983
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345655.994395,
                                "end_time": 1741345656.194422,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.25403962497497173
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345656.194422,
                                "end_time": 1741345656.40353,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.27004492085714515
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345656.40353,
                                "end_time": 1741345656.617246,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.25403962497497173
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345656.617246,
                                "end_time": 1741345660.018249,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.25403962497497173
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345660.018249,
                                "end_time": 1741345660.37487,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.23870309029619305
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345660.37487,
                                "end_time": 1741345660.802057,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.23870309029619305
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345660.802057,
                                "end_time": 1741345660.844723,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.21593345538700628
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345660.844723,
                                "end_time": 1741345661.017699,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.21822064263893773
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.017699,
                                "end_time": 1741345661.18408,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.22876820265068984
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.18408,
                                "end_time": 1741345661.219745,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.22876820265068984
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.219745,
                                "end_time": 1741345661.410982,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.22876820265068984
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.410982,
                                "end_time": 1741345661.526706,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2672724444417405
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.526706,
                                "end_time": 1741345661.593184,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2604108826859462
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.593184,
                                "end_time": 1741345661.804182,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24160294991437337
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.804182,
                                "end_time": 1741345661.879583,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.22876820265068984
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345661.879583,
                                "end_time": 1741345665.761705,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.22876820265068984
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345665.761705,
                                "end_time": 1741345666.09915,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.22199163314842527
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345666.09915,
                                "end_time": 1741345666.439879,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.22199163314842527
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345666.439879,
                                "end_time": 1741345666.782045,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.22199163314842527
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345666.782045,
                                "end_time": 1741345667.147928,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.3397704458283012
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345667.147928,
                                "end_time": 1741345667.496536,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.22199163314842527
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345667.496536,
                                "end_time": 1741345682.612737,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.22199163314842527
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.612737,
                                "end_time": 1741345682.799782,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.21718570154379205
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.799782,
                                "end_time": 1741345682.985567,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.23903915631996608
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345682.985567,
                                "end_time": 1741345683.163573,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.23903915631996608
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345683.163573,
                                "end_time": 1741345683.33084,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.21718570154379205
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345683.33084,
                                "end_time": 1741345683.521235,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.23903915631996608
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345683.521235,
                                "end_time": 1741345699.12088,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.23903915631996608
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345699.12088,
                                "end_time": 1741345699.320658,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2310564784433272
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345699.320658,
                                "end_time": 1741345699.520253,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2310564784433272
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345699.520253,
                                "end_time": 1741345699.749322,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.22083254095449853
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345699.749322,
                                "end_time": 1741345699.948314,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2310564784433272
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345699.948314,
                                "end_time": 1741345700.16458,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.22083254095449853
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345700.16458,
                                "end_time": 1741345705.149636,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2310564784433272
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.149636,
                                "end_time": 1741345705.337787,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.1903984792754999
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.337787,
                                "end_time": 1741345705.494509,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.19617769052753614
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.494509,
                                "end_time": 1741345705.698162,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.19617769052753614
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.698162,
                                "end_time": 1741345705.869956,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.19232488302617864
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345705.869956,
                                "end_time": 1741345706.046714,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.19617769052753614
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345706.046714,
                                "end_time": 1741345707.211815,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.19617769052753614
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345707.211815,
                                "end_time": 1741345707.423358,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1968752890284633
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345707.423358,
                                "end_time": 1741345707.620052,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.17862458206837248
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345707.620052,
                                "end_time": 1741345707.854701,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2060006425085087
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345707.854701,
                                "end_time": 1741345708.070145,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.17862458206837248
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345708.070145,
                                "end_time": 1741345708.273539,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1877499355484179
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345708.273539,
                                "end_time": 1741345760.02175,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1877499355484179
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345760.02175,
                                "end_time": 1741345760.221312,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.215935368895285
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345760.221312,
                                "end_time": 1741345760.421322,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.18987796783156025
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345760.421322,
                                "end_time": 1741345760.615313,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.20724956854071008
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345760.615313,
                                "end_time": 1741345760.809125,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.20724956854071008
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345760.809125,
                                "end_time": 1741345761.01469,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.19856376818613516
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345761.01469,
                                "end_time": 1741345775.067819,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.20724956854071008
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345775.067819,
                                "end_time": 1741345877.103618,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.197745995364581
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345877.103618,
                                "end_time": 1741345945.642495,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.238
                                ],
                                "means": [
                                    0.20415317351467616
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345945.642495,
                                "end_time": 1741346022.235648,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.238
                                ],
                                "means": [
                                    0.1958643065271324
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346022.235648,
                                "end_time": 1741346130.909543,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.238
                                ],
                                "means": [
                                    0.1964746060217122
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346130.909543,
                                "end_time": 1741346131.118296,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2112365122981023
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346131.118296,
                                "end_time": 1741346131.329099,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.20410690587540853
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346131.329099,
                                "end_time": 1741346131.532285,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2183661187207961
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346131.532285,
                                "end_time": 1741346131.722205,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2183661187207961
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346131.722205,
                                "end_time": 1741346132.013697,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.20410690587540853
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346132.013697,
                                "end_time": 1741346147.889184,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2112365122981023
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346147.889184,
                                "end_time": 1741346150.487949,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2441998747425376
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346150.487949,
                                "end_time": 1741346150.691628,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.247654713121828
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346150.691628,
                                "end_time": 1741346150.907308,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.247654713121828
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346150.907308,
                                "end_time": 1741346151.112986,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24497655683784553
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346151.112986,
                                "end_time": 1741346151.329039,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.247654713121828
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346151.329039,
                                "end_time": 1741346151.536448,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2516719475478017
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346151.536448,
                                "end_time": 1741346178.029355,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.247654713121828
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346178.029355,
                                "end_time": 1741346208.056162,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24145531521375177
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346208.056162,
                                "end_time": 1741346223.321687,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24886494821831243
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346223.321687,
                                "end_time": 1741346906.881329,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.27
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.3168169700725053
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346906.881329,
                                "end_time": 1741347350.085078,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.28906037862241135
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347350.085078,
                                "end_time": 1741347456.646587,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.27
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.29621566256098647
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347456.646587,
                                "end_time": 1741347509.812715,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2794359107494477
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347509.812715,
                                "end_time": 1741347560.549733,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.27051776689051615
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347560.549733,
                                "end_time": 1741347762.444192,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.27375858667714353
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347762.444192,
                                "end_time": 1741347874.950708,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.238
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2715600966410649
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347874.950708,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.26385201852812423
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.12637014538023153,
                                        0.0,
                                        0.0,
                                        0.6149678299500161,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.353648890774598,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        2.9054611693028733,
                                        0.0,
                                        0.0,
                                        0.22042859672213486,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.4013068821831965,
                                        0.9105903213533636,
                                        0.0,
                                        1.1576274892781189,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.6803385023255489,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.35834256537117526,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.5546969869327895,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741347874.950708,
                            "end_time": null,
                            "forecast_values": [
                                0.8,
                                0.2
                            ],
                            "forecaster_count": 29,
                            "interval_lower_bounds": [
                                0.2
                            ],
                            "centers": [
                                0.2
                            ],
                            "interval_upper_bounds": [
                                0.3
                            ],
                            "means": [
                                0.26385201852812423
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.12637014538023153,
                                    0.0,
                                    0.0,
                                    0.6149678299500161,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.353648890774598,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.9054611693028733,
                                    0.0,
                                    0.0,
                                    0.22042859672213486,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.4013068821831965,
                                    0.9105903213533636,
                                    0.0,
                                    1.1576274892781189,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6803385023255489,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.35834256537117526,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5546969869327895,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 85,
            "is_current_content_translated": false,
            "description": "[NFL opinions split on proposal to ban Tush Push](https://www.nbcsportsphiladelphia.com/nfl/philadelphia-eagles/tush-push-proposal-ban-eagles-brotherly-shove-packers-combine-owners-meetings/651116/)"
        },
        {
            "id": 35701,
            "title": "Will bluebird bio file for bankruptcy before April 1, 2025?",
            "url_title": "",
            "slug": "will-bluebird-bio-file-for-bankruptcy-before-april-1-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.463231Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:00.686564Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 30,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35151,
                "title": "Will bluebird bio file for bankruptcy before April 1, 2025?",
                "description": "Reuters: [Bluebird bio to cut 25% of jobs in fresh bid to battle cash crunch](https://www.reuters.com/business/healthcare-pharmaceuticals/bluebird-bio-cut-25-workforce-part-restructuring-2024-09-24/)",
                "created_at": "2025-03-02T04:05:19.463231Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 1.0,
                "resolution_criteria": "This question will resolve as **Yes** if bluebird bio, Inc., files any petition for bankruptcy protection in the United States, under any chapter of the United States Bankruptcy Code, before April 1, 2025. The question will resolves on the filing of such a petition, not on whether any bankruptcy protection is granted by a court. If no such petition is filed by that date, this question will resolve as **No**.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35701,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345267.245241,
                                "end_time": 1741345367.978861,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.05
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345367.978861,
                                "end_time": 1741345553.952387,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.030000000000000002
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.030000000000000002
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345553.952387,
                                "end_time": 1741345609.810614,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.01
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1047354894710626
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345609.810614,
                                "end_time": 1741345637.499167,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.055
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.08624298135241273
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345637.499167,
                                "end_time": 1741345637.713637,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.07464138854846356
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345637.713637,
                                "end_time": 1741345637.963951,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.07464138854846356
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345637.963951,
                                "end_time": 1741345638.232589,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.07464138854846356
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345638.232589,
                                "end_time": 1741345638.480757,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.07464138854846356
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345638.480757,
                                "end_time": 1741345638.740752,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.07464138854846356
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345638.740752,
                                "end_time": 1741345649.43801,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.07464138854846356
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345649.43801,
                                "end_time": 1741345649.632356,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06764812184496957
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345649.632356,
                                "end_time": 1741345649.815306,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.02
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.059134072375224854
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345649.815306,
                                "end_time": 1741345650.011069,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.055
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09602828674411862
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.011069,
                                "end_time": 1741345650.21185,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.055
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0818382042945441
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.21185,
                                "end_time": 1741345650.348385,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06764812184496957
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.348385,
                                "end_time": 1741345650.417914,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07595268543747559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.417914,
                                "end_time": 1741345650.517067,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07366549818554415
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.517067,
                                "end_time": 1741345650.67719,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10162217996484267
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.67719,
                                "end_time": 1741345650.845097,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07595268543747559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345650.845097,
                                "end_time": 1741345651.006607,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07595268543747559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345651.006607,
                                "end_time": 1741345651.171113,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07595268543747559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345651.171113,
                                "end_time": 1741345651.484988,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07595268543747559
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345651.484988,
                                "end_time": 1741345651.846338,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08161721375210282
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345651.846338,
                                "end_time": 1741345652.19083,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09339509502009041
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345652.19083,
                                "end_time": 1741345652.54579,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09339509502009041
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345652.54579,
                                "end_time": 1741345652.928894,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.09339509502009041
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345652.928894,
                                "end_time": 1741345653.087134,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.10517297628807801
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.087134,
                                "end_time": 1741345653.272092,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.09311577486629362
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.272092,
                                "end_time": 1741345653.431339,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.055
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.08735720770797838
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.431339,
                                "end_time": 1741345653.855782,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08391176755479716
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.855782,
                                "end_time": 1741345654.198072,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08391176755479716
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345654.198072,
                                "end_time": 1741345654.553144,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08391176755479716
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345654.553144,
                                "end_time": 1741345654.894955,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08391176755479716
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345654.894955,
                                "end_time": 1741345674.23195,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08391176755479716
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.23195,
                                "end_time": 1741345674.453409,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0769775317224785
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.453409,
                                "end_time": 1741345674.650543,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08720146921130716
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.650543,
                                "end_time": 1741345674.851158,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0769775317224785
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345674.851158,
                                "end_time": 1741345675.043918,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0769775317224785
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345675.043918,
                                "end_time": 1741345675.287783,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0769775317224785
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345675.287783,
                                "end_time": 1741345677.140901,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.0769775317224785
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345677.140901,
                                "end_time": 1741345677.33313,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07178056989305476
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345677.33313,
                                "end_time": 1741345677.523241,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07178056989305476
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345677.523241,
                                "end_time": 1741345677.726801,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.055
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08141258864644849
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345677.726801,
                                "end_time": 1741345677.916815,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.055
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.08141258864644849
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345677.916815,
                                "end_time": 1741345678.116861,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07178056989305476
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345678.116861,
                                "end_time": 1741345716.326991,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07178056989305476
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345716.326991,
                                "end_time": 1741345716.482259,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06780546190763556
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345716.482259,
                                "end_time": 1741345716.639099,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06233024981960833
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345716.639099,
                                "end_time": 1741345716.807646,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06780546190763556
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345716.807646,
                                "end_time": 1741345716.980442,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06050517912359925
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345716.980442,
                                "end_time": 1741345717.142555,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06780546190763556
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345717.142555,
                                "end_time": 1741345746.414787,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06780546190763556
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345746.414787,
                                "end_time": 1741345746.609101,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.06471236816062134
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345746.609101,
                                "end_time": 1741345746.80419,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.061238048018791374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345746.80419,
                                "end_time": 1741345747.01616,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.06471236816062134
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345747.01616,
                                "end_time": 1741345747.260895,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.06471236816062134
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345747.260895,
                                "end_time": 1741345747.49153,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.06471236816062134
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345747.49153,
                                "end_time": 1741345780.151674,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.06471236816062134
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345780.151674,
                                "end_time": 1741345877.805607,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.07887033075955197
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345877.805607,
                                "end_time": 1741345890.261342,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07427507734057005
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345890.261342,
                                "end_time": 1741345890.476204,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.07055945230644733
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345890.476204,
                                "end_time": 1741345890.653247,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07821262057856845
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345890.653247,
                                "end_time": 1741345890.831113,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.07055945230644733
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345890.831113,
                                "end_time": 1741345891.040858,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.07055945230644733
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345891.040858,
                                "end_time": 1741345891.241547,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07821262057856845
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345891.241547,
                                "end_time": 1741345922.648267,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.07055945230644733
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345922.648267,
                                "end_time": 1741345986.811045,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.08199999999999999
                                ],
                                "means": [
                                    0.07224772067568169
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345986.811045,
                                "end_time": 1741346084.412327,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.08199999999999999
                                ],
                                "means": [
                                    0.06907537083128895
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346084.412327,
                                "end_time": 1741346084.629514,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06644185107277861
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346084.629514,
                                "end_time": 1741346084.836888,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06644185107277861
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346084.836888,
                                "end_time": 1741346085.036893,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07334478308338631
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346085.036893,
                                "end_time": 1741346085.232182,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.1
                                ],
                                "means": [
                                    0.07334478308338631
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346085.232182,
                                "end_time": 1741346085.450342,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06644185107277861
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346085.450342,
                                "end_time": 1741346139.422603,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.055
                                ],
                                "means": [
                                    0.06644185107277861
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346139.422603,
                                "end_time": 1741346210.349089,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.05
                                ],
                                "means": [
                                    0.0642401587342353
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346210.349089,
                                "end_time": 1741346223.00205,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.08199999999999999
                                ],
                                "means": [
                                    0.1664595951148526
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346223.00205,
                                "end_time": 1741346236.066571,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1707045934768848
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346236.066571,
                                "end_time": 1741346999.185198,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16815182717418775
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346999.185198,
                                "end_time": 1741347217.461196,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.08199999999999999
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.18039944537217648
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347217.461196,
                                "end_time": 1741347234.239289,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.05
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1603918314905775
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347234.239289,
                                "end_time": 1741347271.74003,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.08199999999999999
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15919926189697128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347271.74003,
                                "end_time": 1741347384.888548,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15816647533709982
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347384.888548,
                                "end_time": 1741347882.460731,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.19399999999999998
                                ],
                                "means": [
                                    0.16210545768354806
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347882.460731,
                                "end_time": 1741348184.452253,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1877302094780448
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741348184.452253,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.19399999999999998
                                ],
                                "means": [
                                    0.17635098110542924
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.6376996866280927,
                                        0.0,
                                        0.0,
                                        0.0,
                                        2.1283468540955193,
                                        0.0,
                                        0.0,
                                        1.2581744010322857,
                                        0.0,
                                        0.05892591724387544,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        2.1930098103896003,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.8305036517217669,
                                        0.4789264546165807,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.5608812398816437,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.9120497244989734,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.4087506853414205,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741348184.452253,
                            "end_time": null,
                            "forecast_values": [
                                0.85,
                                0.15
                            ],
                            "forecaster_count": 30,
                            "interval_lower_bounds": [
                                0.05
                            ],
                            "centers": [
                                0.15
                            ],
                            "interval_upper_bounds": [
                                0.19399999999999998
                            ],
                            "means": [
                                0.17635098110542924
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.6376996866280927,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.1283468540955193,
                                    0.0,
                                    0.0,
                                    1.2581744010322857,
                                    0.0,
                                    0.05892591724387544,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.1930098103896003,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.8305036517217669,
                                    0.4789264546165807,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5608812398816437,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.9120497244989734,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.4087506853414205,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 85,
            "is_current_content_translated": false,
            "description": "Reuters: [Bluebird bio to cut 25% of jobs in fresh bid to battle cash crunch](https://www.reuters.com/business/healthcare-pharmaceuticals/bluebird-bio-cut-25-workforce-part-restructuring-2024-09-24/)"
        },
        {
            "id": 35700,
            "title": "Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?",
            "url_title": "",
            "slug": "will-the-national-ufo-reporting-center-report-a-sighting-of-a-cube-shaped-ufo-in-march-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.432579Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:00.639635Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 30,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35150,
                "title": "Will the National UFO Reporting Center report a sighting of a cube-shaped UFO in March 2025?",
                "description": "According to the [National UFO Reporting Center](https://nuforc.org/about-us/): \"The National UFO Reporting Center was founded in 1974 by noted UFO investigator Robert J. Gribble. The Center’s primary function over the past five decades has been to receive, record, and to the greatest degree possible, corroborate and document reports from individuals who have been witness to unusual, possibly UFO-related events. Throughout its history, the Center has processed over 180,000 reports, and has distributed its information to thousands of individuals.\"",
                "created_at": "2025-03-02T04:05:19.432579Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 1.0,
                "resolution_criteria": "This question resolves as **Yes** if The National UFO Reporting Center posts a report of a sighting of a UFO/UAP shaped like a cube in March 2025 at [this link](https://nuforc.org/ndx/?id=event) when accessed by Metaculus on or after April 1, 2025.",
                "fine_print": "For example, although rare in the history of NUFORC, the month of December 2024 [had](https://nuforc.org/subndx/?id=e202412) six sightings with a cube shape.",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35700,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345247.883708,
                                "end_time": 1741345340.37002,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.35
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345340.37002,
                                "end_time": 1741345582.598343,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.55
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.55
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345582.598343,
                                "end_time": 1741345609.098585,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.75
                                ],
                                "means": [
                                    0.4138801710951778
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345609.098585,
                                "end_time": 1741345627.633313,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.525
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.4551964295661233
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345627.633313,
                                "end_time": 1741345627.853618,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.3575012464183492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345627.853618,
                                "end_time": 1741345628.074799,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.389511838182696
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345628.074799,
                                "end_time": 1741345628.295672,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.3575012464183492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345628.295672,
                                "end_time": 1741345628.503631,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.3735065423005226
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345628.503631,
                                "end_time": 1741345628.706085,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.3575012464183492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345628.706085,
                                "end_time": 1741345634.726566,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.3575012464183492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345634.726566,
                                "end_time": 1741345634.960069,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.2986120505170321
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345634.960069,
                                "end_time": 1741345635.185356,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.2986120505170321
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345635.185356,
                                "end_time": 1741345635.391472,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.2986120505170321
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345635.391472,
                                "end_time": 1741345635.593276,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.2986120505170321
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345635.593276,
                                "end_time": 1741345635.804105,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.2986120505170321
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345635.804105,
                                "end_time": 1741345636.438631,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.2986120505170321
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345636.438631,
                                "end_time": 1741345636.62057,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.23479459381518744
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345636.62057,
                                "end_time": 1741345636.795012,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.23479459381518744
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345636.795012,
                                "end_time": 1741345636.985873,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.23479459381518744
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345636.985873,
                                "end_time": 1741345637.160104,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.23479459381518744
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345637.160104,
                                "end_time": 1741345637.323617,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.23479459381518744
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345637.323617,
                                "end_time": 1741345637.327816,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.23479459381518744
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345637.327816,
                                "end_time": 1741345637.683776,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.2148205806527372
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345637.683776,
                                "end_time": 1741345638.099623,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.20304269938474961
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345638.099623,
                                "end_time": 1741345638.448071,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.2148205806527372
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345638.448071,
                                "end_time": 1741345638.814023,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.20304269938474961
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345638.814023,
                                "end_time": 1741345639.024888,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.20304269938474961
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345639.024888,
                                "end_time": 1741345639.187761,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16959758228646732
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345639.187761,
                                "end_time": 1741345639.424841,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.17132030236305787
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345639.424841,
                                "end_time": 1741345639.785579,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16959758228646732
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345639.785579,
                                "end_time": 1741345640.141098,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16959758228646732
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345640.141098,
                                "end_time": 1741345640.501413,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16959758228646732
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345640.501413,
                                "end_time": 1741345640.842198,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16959758228646732
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345640.842198,
                                "end_time": 1741345653.275886,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16959758228646732
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.275886,
                                "end_time": 1741345653.515226,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.17581423065071558
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.515226,
                                "end_time": 1741345653.749722,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.19626210562837293
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.749722,
                                "end_time": 1741345653.968828,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.19626210562837293
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345653.968828,
                                "end_time": 1741345654.206285,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.21670998060603025
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345654.206285,
                                "end_time": 1741345654.425846,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.17581423065071558
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345654.425846,
                                "end_time": 1741345659.168685,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.19626210562837293
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.168685,
                                "end_time": 1741345659.362517,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.23551025001566214
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.362517,
                                "end_time": 1741345659.545867,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.32219841879620564
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.545867,
                                "end_time": 1741345659.757966,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.2836703437826308
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.757966,
                                "end_time": 1741345659.956886,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.27403832502923703
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345659.956886,
                                "end_time": 1741345660.168027,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.20661419375548096
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345660.168027,
                                "end_time": 1741345730.262301,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.525
                                ],
                                "means": [
                                    0.27403832502923703
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345730.262301,
                                "end_time": 1741345730.438858,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2386249589378825
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345730.438858,
                                "end_time": 1741345730.605762,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.251400453809946
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345730.605762,
                                "end_time": 1741345730.763874,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24227510032990066
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345730.763874,
                                "end_time": 1741345730.920612,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2386249589378825
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345730.920612,
                                "end_time": 1741345731.095986,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.23314974684985523
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345731.095986,
                                "end_time": 1741345732.954549,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2386249589378825
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345732.954549,
                                "end_time": 1741345733.25574,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24928678600627027
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345733.25574,
                                "end_time": 1741345733.464388,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2145435845879706
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345733.464388,
                                "end_time": 1741345733.669707,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24928678600627027
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345733.669707,
                                "end_time": 1741345733.852798,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2145435845879706
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345733.852798,
                                "end_time": 1741345734.038063,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2145435845879706
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345734.038063,
                                "end_time": 1741345784.205249,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2145435845879706
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345784.205249,
                                "end_time": 1741345812.079729,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2088092621770665
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.079729,
                                "end_time": 1741345812.265518,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.18
                                ],
                                "means": [
                                    0.18671517042875924
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.265518,
                                "end_time": 1741345812.461539,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.18
                                ],
                                "means": [
                                    0.18671517042875924
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.461539,
                                "end_time": 1741345812.670985,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.18
                                ],
                                "means": [
                                    0.18671517042875924
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.670985,
                                "end_time": 1741345812.864096,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.18
                                ],
                                "means": [
                                    0.18034842186982694
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345812.864096,
                                "end_time": 1741345813.093887,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.18
                                ],
                                "means": [
                                    0.18034842186982694
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345813.093887,
                                "end_time": 1741345878.475982,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.18
                                ],
                                "means": [
                                    0.18671517042875924
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345878.475982,
                                "end_time": 1741345897.690981,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.29600000000000004
                                ],
                                "means": [
                                    0.20344267423473497
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345897.690981,
                                "end_time": 1741345953.906385,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.29600000000000004
                                ],
                                "means": [
                                    0.20072111016379945
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345953.906385,
                                "end_time": 1741345992.95628,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.18635907268530605
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345992.95628,
                                "end_time": 1741345993.160079,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.185
                                ],
                                "means": [
                                    0.18548114775736246
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345993.160079,
                                "end_time": 1741345993.381615,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.19514525257221324
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345993.381615,
                                "end_time": 1741345993.579477,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.185
                                ],
                                "means": [
                                    0.18548114775736246
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345993.579477,
                                "end_time": 1741345993.794275,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.22
                                ],
                                "means": [
                                    0.1910034933658486
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345993.794275,
                                "end_time": 1741345994.015576,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.185
                                ],
                                "means": [
                                    0.18548114775736246
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345994.015576,
                                "end_time": 1741346127.908999,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.185
                                ],
                                "means": [
                                    0.18548114775736246
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346127.908999,
                                "end_time": 1741346207.819356,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.185
                                ],
                                "means": [
                                    0.1673391633959855
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346207.819356,
                                "end_time": 1741346224.9403,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.17158800907891547
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346224.9403,
                                "end_time": 1741346303.317838,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16885575037502268
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346303.317838,
                                "end_time": 1741346366.989091,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.185
                                ],
                                "means": [
                                    0.1505026277240385
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346366.989091,
                                "end_time": 1741346880.142119,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15645486918915044
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346880.142119,
                                "end_time": 1741347360.361739,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15217448585076776
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347360.361739,
                                "end_time": 1741347459.106733,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15274427791336784
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347459.106733,
                                "end_time": 1741347871.564414,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15713954879632158
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15883548188111687
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347871.564414,
                                "end_time": 1741347883.034931,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.12
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16336047102733403
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347883.034931,
                                "end_time": 1741348184.637997,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.08233333333333334
                                ],
                                "centers": [
                                    0.15713954879632158
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.15463265292856765
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741348184.637997,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.18
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.16470602813942223
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.5059112341124612,
                                        0.0,
                                        0.0,
                                        0.5089136360673787,
                                        0.0,
                                        0.2010418409121184,
                                        1.0456204770450541,
                                        0.0,
                                        0.5155575000105868,
                                        0.0,
                                        0.620502543612061,
                                        0.0,
                                        0.0,
                                        1.2279280136360515,
                                        0.0,
                                        0.0,
                                        0.7613006392846159,
                                        0.0,
                                        2.578740181021089,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.22827012898946356,
                                        0.09877132838432481,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.011364900518339544,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.030893002561247163,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.11525585627893538,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.017197143016031723,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741348184.637997,
                            "end_time": null,
                            "forecast_values": [
                                0.8200000000000001,
                                0.18
                            ],
                            "forecaster_count": 30,
                            "interval_lower_bounds": [
                                0.1
                            ],
                            "centers": [
                                0.18
                            ],
                            "interval_upper_bounds": [
                                0.2
                            ],
                            "means": [
                                0.16470602813942223
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.5059112341124612,
                                    0.0,
                                    0.0,
                                    0.5089136360673787,
                                    0.0,
                                    0.2010418409121184,
                                    1.0456204770450541,
                                    0.0,
                                    0.5155575000105868,
                                    0.0,
                                    0.620502543612061,
                                    0.0,
                                    0.0,
                                    1.2279280136360515,
                                    0.0,
                                    0.0,
                                    0.7613006392846159,
                                    0.0,
                                    2.578740181021089,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.22827012898946356,
                                    0.09877132838432481,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.011364900518339544,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.030893002561247163,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.11525585627893538,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.017197143016031723,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 85,
            "is_current_content_translated": false,
            "description": "According to the [National UFO Reporting Center](https://nuforc.org/about-us/): \"The National UFO Reporting Center was founded in 1974 by noted UFO investigator Robert J. Gribble. The Center’s primary function over the past five decades has been to receive, record, and to the greatest degree possible, corroborate and document reports from individuals who have been witness to unusual, possibly UFO-related events. Throughout its history, the Center has processed over 180,000 reports, and has distributed its information to thousands of individuals.\""
        },
        {
            "id": 35699,
            "title": "Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?",
            "url_title": "",
            "slug": "will-the-number-of-ufo-sightings-reported-by-the-national-ufo-reporting-center-exceed-400-for-march-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.401580Z",
            "published_at": "2025-03-07T11:00:00Z",
            "edited_at": "2025-03-07T12:00:00.588450Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-07T12:00:00Z",
            "scheduled_close_time": "2025-03-07T12:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-07T11:00:00Z",
            "nr_forecasters": 31,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35149,
                "title": "Will the number of UFO sightings reported by the National UFO Reporting Center exceed 400 for March 2025?",
                "description": "According to the [National UFO Reporting Center](https://nuforc.org/about-us/): \"The National UFO Reporting Center was founded in 1974 by noted UFO investigator Robert J. Gribble. The Center’s primary function over the past five decades has been to receive, record, and to the greatest degree possible, corroborate and document reports from individuals who have been witness to unusual, possibly UFO-related events. Throughout its history, the Center has processed over 180,000 reports, and has distributed its information to thousands of individuals.\"",
                "created_at": "2025-03-02T04:05:19.401580Z",
                "open_time": "2025-03-07T11:00:00Z",
                "cp_reveal_time": "2025-03-07T12:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-07T12:00:00Z",
                "actual_close_time": "2025-03-07T12:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 1.0,
                "resolution_criteria": "This question resolves as **Yes** if The National UFO Reporting Center posts greater than 400 UFO/UAP sighting reports at [this link](https://nuforc.org/ndx/?id=event) for the month of March 2025, as displayed when accessed by Metaculus on or after April 1, 2025.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35699,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741345223.525254,
                                "end_time": 1741345309.39651,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.65
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.65
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345309.39651,
                                "end_time": 1741345515.836966,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.6
                                ],
                                "centers": [
                                    0.625
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.625
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345515.836966,
                                "end_time": 1741345600.838264,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.6
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.49769558807562136
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345600.838264,
                                "end_time": 1741345616.332663,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.4427798349459308
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345616.332663,
                                "end_time": 1741345616.56364,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3490592772130604
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345616.56364,
                                "end_time": 1741345616.773302,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3490592772130604
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345616.773302,
                                "end_time": 1741345617.113241,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.38106986897740724
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345617.113241,
                                "end_time": 1741345617.369182,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3490592772130604
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345617.369182,
                                "end_time": 1741345617.62706,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3490592772130604
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345617.62706,
                                "end_time": 1741345621.913495,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3490592772130604
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345621.913495,
                                "end_time": 1741345622.082525,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.42027666813911047
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345622.082525,
                                "end_time": 1741345622.280718,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3067560085425142
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345622.280718,
                                "end_time": 1741345622.416264,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3067560085425142
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345622.416264,
                                "end_time": 1741345622.480867,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30502177529942504
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345622.480867,
                                "end_time": 1741345622.636193,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.390290631641347
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345622.636193,
                                "end_time": 1741345622.652466,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.35
                                ],
                                "centers": [
                                    0.4
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.4045241899090569
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345622.652466,
                                "end_time": 1741345622.853261,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3472120153464335
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345622.853261,
                                "end_time": 1741345622.888662,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3389516425866128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345622.888662,
                                "end_time": 1741345623.078624,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.33666445533468137
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345623.078624,
                                "end_time": 1741345623.264511,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.32611689532292926
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345623.264511,
                                "end_time": 1741345623.457613,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3389516425866128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345623.457613,
                                "end_time": 1741345625.263506,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3389516425866128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345625.263506,
                                "end_time": 1741345625.619798,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30622052361907337
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345625.619798,
                                "end_time": 1741345625.987272,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30622052361907337
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345625.987272,
                                "end_time": 1741345626.047831,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30622052361907337
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345626.047831,
                                "end_time": 1741345626.441007,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.326714579079312
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345626.441007,
                                "end_time": 1741345626.486724,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.304861124303138
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345626.486724,
                                "end_time": 1741345626.79928,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.27956222937378267
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345626.79928,
                                "end_time": 1741345626.841589,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2864531096801451
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345626.841589,
                                "end_time": 1741345627.157461,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.27956222937378267
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345627.157461,
                                "end_time": 1741345627.345856,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2864531096801451
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345627.345856,
                                "end_time": 1741345627.668982,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30141568414995673
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345627.668982,
                                "end_time": 1741345628.209301,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2830076695269639
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345628.209301,
                                "end_time": 1741345628.494141,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.304861124303138
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345628.494141,
                                "end_time": 1741345628.70609,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30386712768312374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345628.70609,
                                "end_time": 1741345628.903356,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30386712768312374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345628.903356,
                                "end_time": 1741345629.112838,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2834192527054664
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345629.112838,
                                "end_time": 1741345629.411129,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.324315002660781
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345629.411129,
                                "end_time": 1741345629.676732,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30386712768312374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345629.676732,
                                "end_time": 1741345634.409365,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.30386712768312374
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345634.409365,
                                "end_time": 1741345634.633191,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.27422610649563023
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345634.633191,
                                "end_time": 1741345634.853215,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.283858125249024
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345634.853215,
                                "end_time": 1741345635.06915,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.27422610649563023
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345635.06915,
                                "end_time": 1741345635.314889,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.30312216275581144
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345635.314889,
                                "end_time": 1741345635.547833,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.3
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3223862002625989
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345635.547833,
                                "end_time": 1741345713.812782,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.283858125249024
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345713.812782,
                                "end_time": 1741345713.995828,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2685534245475987
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345713.995828,
                                "end_time": 1741345714.171018,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3324308989079165
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.171018,
                                "end_time": 1741345714.345086,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.34155625238796183
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.345086,
                                "end_time": 1741345714.540766,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3324308989079165
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.540766,
                                "end_time": 1741345714.715287,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3324308989079165
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345714.715287,
                                "end_time": 1741345716.728458,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3324308989079165
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345716.728458,
                                "end_time": 1741345716.996672,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3094255319340953
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345716.996672,
                                "end_time": 1741345717.192408,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3181113322886702
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345717.192408,
                                "end_time": 1741345717.391517,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3094255319340953
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345717.391517,
                                "end_time": 1741345717.591744,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3007397315795204
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345717.591744,
                                "end_time": 1741345717.801159,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3094255319340953
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345717.801159,
                                "end_time": 1741345745.709115,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3094255319340953
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345745.709115,
                                "end_time": 1741345745.865489,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3078608697935254
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345745.865489,
                                "end_time": 1741345746.063797,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2829604904062875
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345746.063797,
                                "end_time": 1741345746.228199,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.29956074333111277
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345746.228199,
                                "end_time": 1741345746.419225,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3078608697935254
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345746.419225,
                                "end_time": 1741345746.789452,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.29126061686870014
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345746.789452,
                                "end_time": 1741345788.74028,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.29956074333111277
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345788.74028,
                                "end_time": 1741345879.152409,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3155475306475344
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345879.152409,
                                "end_time": 1741345928.666796,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2978614367380614
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345928.666796,
                                "end_time": 1741345942.491335,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.276041695816471
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345942.491335,
                                "end_time": 1741345942.888629,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.30797638709492087
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345942.888629,
                                "end_time": 1741345943.113118,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3151059935176147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345943.113118,
                                "end_time": 1741345943.332673,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3151059935176147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345943.332673,
                                "end_time": 1741345943.829158,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3151059935176147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345943.829158,
                                "end_time": 1741345944.042329,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.2937171742495334
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741345944.042329,
                                "end_time": 1741346007.247059,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.3151059935176147
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346007.247059,
                                "end_time": 1741346087.560761,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.287755749434695
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346087.560761,
                                "end_time": 1741346208.270802,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.3228723038141823
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346208.270802,
                                "end_time": 1741346208.778702,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.55
                                ],
                                "means": [
                                    0.3198968475973748
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346208.778702,
                                "end_time": 1741346219.61167,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.30788634969216727
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346219.61167,
                                "end_time": 1741346344.169294,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.3069140047017705
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346344.169294,
                                "end_time": 1741346381.377228,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.30608257015113594
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346381.377228,
                                "end_time": 1741346764.659846,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.225
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.31123917718802574
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346764.659846,
                                "end_time": 1741346872.753873,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.28539066393539203
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741346872.753873,
                                "end_time": 1741347215.60389,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2701905685787654
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347215.60389,
                                "end_time": 1741347883.010094,
                                "forecast_values": null,
                                "forecaster_count": 28,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.25492675617253996
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347883.010094,
                                "end_time": 1741347900.748673,
                                "forecast_values": null,
                                "forecaster_count": 29,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.25439607184979746
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741347900.748673,
                                "end_time": 1741348295.404803,
                                "forecast_values": null,
                                "forecaster_count": 30,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2655507073163824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741348295.404803,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 31,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.36
                                ],
                                "means": [
                                    0.2975994866216837
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.6257872328778666,
                                        0.0,
                                        0.0,
                                        0.29853580031441634,
                                        0.0,
                                        0.7586143445231218,
                                        0.0,
                                        0.9611807844480444,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.5189501885822867,
                                        0.0,
                                        0.41588412507835687,
                                        0.0,
                                        0.0,
                                        0.9941409785796557,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.5589803631771832,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.6704211885037169,
                                        0.9134389029481002,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.1836394386094319,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.722108255103842,
                                        0.0,
                                        1.0,
                                        0.0,
                                        0.0,
                                        0.015708539450405595,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.010381142261586365,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741348295.404803,
                            "end_time": null,
                            "forecast_values": [
                                0.7,
                                0.3
                            ],
                            "forecaster_count": 31,
                            "interval_lower_bounds": [
                                0.15
                            ],
                            "centers": [
                                0.3
                            ],
                            "interval_upper_bounds": [
                                0.36
                            ],
                            "means": [
                                0.2975994866216837
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6257872328778666,
                                    0.0,
                                    0.0,
                                    0.29853580031441634,
                                    0.0,
                                    0.7586143445231218,
                                    0.0,
                                    0.9611807844480444,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.5189501885822867,
                                    0.0,
                                    0.41588412507835687,
                                    0.0,
                                    0.0,
                                    0.9941409785796557,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.5589803631771832,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6704211885037169,
                                    0.9134389029481002,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.1836394386094319,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.722108255103842,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    0.015708539450405595,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.010381142261586365,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 86,
            "is_current_content_translated": false,
            "description": "According to the [National UFO Reporting Center](https://nuforc.org/about-us/): \"The National UFO Reporting Center was founded in 1974 by noted UFO investigator Robert J. Gribble. The Center’s primary function over the past five decades has been to receive, record, and to the greatest degree possible, corroborate and document reports from individuals who have been witness to unusual, possibly UFO-related events. Throughout its history, the Center has processed over 180,000 reports, and has distributed its information to thousands of individuals.\""
        },
        {
            "id": 35698,
            "title": "Will Florida have the most pilot sightings of UFOs of any US state in March 2025?",
            "url_title": "",
            "slug": "will-florida-have-the-most-pilot-sightings-of-ufos-of-any-us-state-in-march-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.228449Z",
            "published_at": "2025-03-06T20:00:00Z",
            "edited_at": "2025-03-06T21:00:00.805503Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-06T21:00:00Z",
            "scheduled_close_time": "2025-03-06T21:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-06T20:00:00Z",
            "nr_forecasters": 27,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35148,
                "title": "Will Florida have the most pilot sightings of UFOs of any US state in March 2025?",
                "description": "According to the [National UFO Reporting Center](https://nuforc.org/about-us/): \"The National UFO Reporting Center was founded in 1974 by noted UFO investigator Robert J. Gribble. The Center’s primary function over the past five decades has been to receive, record, and to the greatest degree possible, corroborate and document reports from individuals who have been witness to unusual, possibly UFO-related events. Throughout its history, the Center has processed over 180,000 reports, and has distributed its information to thousands of individuals.\"",
                "created_at": "2025-03-02T04:05:19.228449Z",
                "open_time": "2025-03-06T20:00:00Z",
                "cp_reveal_time": "2025-03-06T21:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-06T21:00:00Z",
                "actual_close_time": "2025-03-06T21:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 1.0,
                "resolution_criteria": "This question resolves as **Yes** if The National UFO Reporting Center posts more pilot reports of a UFO/UAP having occurred in the state of Florida than any other state, for the month of March 2025 at [this link](https://nuforc.org/subndx/?id=x) when accessed by Metaculus on or after April 1, 2025.",
                "fine_print": "If Florida is tied with another state, resolves as No.",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35698,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741291396.171936,
                                "end_time": 1741291494.164562,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291494.164562,
                                "end_time": 1741291619.704285,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291619.704285,
                                "end_time": 1741291726.962479,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.22822546614290412
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291726.962479,
                                "end_time": 1741291727.483745,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23632161133850824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291727.483745,
                                "end_time": 1741291727.905739,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23632161133850824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291727.905739,
                                "end_time": 1741291728.317674,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.25491246900907494
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291728.317674,
                                "end_time": 1741291728.854,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.19913989599737483
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291728.854,
                                "end_time": 1741291729.416721,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23632161133850824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291729.416721,
                                "end_time": 1741291756.446791,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23632161133850824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291756.446791,
                                "end_time": 1741291765.468773,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.225
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23269749655179234
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291765.468773,
                                "end_time": 1741291765.685527,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.225
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.28017822291079825
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291765.685527,
                                "end_time": 1741291765.923217,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.225
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.30855838780994727
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291765.923217,
                                "end_time": 1741291766.124171,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.225
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.30855838780994727
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291766.124171,
                                "end_time": 1741291766.3389,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.225
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2517980580116492
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291766.3389,
                                "end_time": 1741291766.567862,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.225
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.6
                                ],
                                "means": [
                                    0.3369385527090964
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291766.567862,
                                "end_time": 1741291785.251776,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.225
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.5
                                ],
                                "means": [
                                    0.30855838780994727
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291785.251776,
                                "end_time": 1741291785.626906,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2935267456557584
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291785.626906,
                                "end_time": 1741291785.953532,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.28069199839207487
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291785.953532,
                                "end_time": 1741291786.304686,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2935267456557584
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291786.304686,
                                "end_time": 1741291786.648211,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2935267456557584
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291786.648211,
                                "end_time": 1741291786.990408,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.28069199839207487
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291786.990408,
                                "end_time": 1741291791.535817,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.25
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2935267456557584
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291791.535817,
                                "end_time": 1741291791.876832,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.25971792627347495
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291791.876832,
                                "end_time": 1741291792.211906,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.25971792627347495
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291792.211906,
                                "end_time": 1741291792.545554,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.25971792627347495
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291792.545554,
                                "end_time": 1741291792.900697,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.25971792627347495
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291792.900697,
                                "end_time": 1741291793.237582,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.25971792627347495
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291793.237582,
                                "end_time": 1741291803.414264,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.25971792627347495
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291803.414264,
                                "end_time": 1741291803.651428,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.24666749626203213
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291803.651428,
                                "end_time": 1741291803.891212,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.24666749626203213
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291803.891212,
                                "end_time": 1741291804.129518,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.22481404148585807
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291804.129518,
                                "end_time": 1741291804.380649,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.22481404148585807
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291804.380649,
                                "end_time": 1741291804.624044,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.24666749626203213
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291804.624044,
                                "end_time": 1741291849.752553,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.24666749626203213
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291849.752553,
                                "end_time": 1741291849.969784,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.42
                                ],
                                "means": [
                                    0.28211030992201497
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291849.969784,
                                "end_time": 1741291850.15945,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2575728599488262
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291850.15945,
                                "end_time": 1741291850.364821,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.27802073492648355
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291850.364821,
                                "end_time": 1741291850.574791,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2575728599488262
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291850.574791,
                                "end_time": 1741291850.805179,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2575728599488262
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291850.805179,
                                "end_time": 1741291851.438595,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2575728599488262
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291851.438595,
                                "end_time": 1741291851.678571,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.24648200261455408
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291851.678571,
                                "end_time": 1741291851.851782,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2561140213679478
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291851.851782,
                                "end_time": 1741291852.061901,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2561140213679478
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291852.061901,
                                "end_time": 1741291852.240082,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.24648200261455408
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291852.240082,
                                "end_time": 1741291852.441135,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.24648200261455408
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291852.441135,
                                "end_time": 1741291876.129265,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.24648200261455408
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291876.129265,
                                "end_time": 1741291880.21861,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23799870852819008
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291880.21861,
                                "end_time": 1741291891.29979,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.225
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2487693253171891
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291891.29979,
                                "end_time": 1741291911.434917,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2360254231458538
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291911.434917,
                                "end_time": 1741291911.669773,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2382497385720493
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291911.669773,
                                "end_time": 1741291911.894392,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23029130287338395
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291911.894392,
                                "end_time": 1741291912.094832,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23029130287338395
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291912.094832,
                                "end_time": 1741291912.326926,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2382497385720493
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291912.326926,
                                "end_time": 1741291912.559278,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.24620817427071467
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291912.559278,
                                "end_time": 1741291935.275949,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.2382497385720493
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291935.275949,
                                "end_time": 1741291935.588307,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2553546096752821
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291935.588307,
                                "end_time": 1741291935.892968,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2553546096752821
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291935.892968,
                                "end_time": 1741291936.195467,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.247701441403161
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291936.195467,
                                "end_time": 1741291936.671289,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.29362045103588774
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291936.671289,
                                "end_time": 1741291936.990178,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.25
                                ],
                                "means": [
                                    0.23239510485891873
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291936.990178,
                                "end_time": 1741291985.150251,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2553546096752821
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291985.150251,
                                "end_time": 1741292148.854654,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.27847058845142303
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292148.854654,
                                "end_time": 1741292452.668053,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.26728130022310653
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292452.668053,
                                "end_time": 1741292465.251494,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.2856042634450296
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292465.251494,
                                "end_time": 1741292465.806188,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.28
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2848538087769096
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292465.806188,
                                "end_time": 1741292466.494618,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.29422735577084824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292466.494618,
                                "end_time": 1741292467.163124,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.29422735577084824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292467.163124,
                                "end_time": 1741292467.690035,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.30761813719076064
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292467.690035,
                                "end_time": 1741292468.227643,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.29422735577084824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292468.227643,
                                "end_time": 1741292589.055553,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.29422735577084824
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292589.055553,
                                "end_time": 1741292643.569931,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.25
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2819693264179912
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292643.569931,
                                "end_time": 1741292643.879379,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.2969077273627889
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292643.879379,
                                "end_time": 1741292644.213019,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2905795414381283
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292644.213019,
                                "end_time": 1741292644.604793,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.2969077273627889
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292644.604793,
                                "end_time": 1741292644.943731,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2842513555134676
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292644.943731,
                                "end_time": 1741292645.269394,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2842513555134676
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292645.269394,
                                "end_time": 1741292820.609055,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.2905795414381283
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292820.609055,
                                "end_time": 1741293346.630225,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.35
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.32872943898929924
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741293346.630225,
                                "end_time": 1741293373.941748,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.313249249449928
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741293373.941748,
                                "end_time": 1741294047.943365,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.29366666666666663
                                ],
                                "interval_upper_bounds": [
                                    0.35
                                ],
                                "means": [
                                    0.31094994175983437
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741294047.943365,
                                "end_time": 1741294532.775663,
                                "forecast_values": null,
                                "forecaster_count": 26,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.3
                                ],
                                "interval_upper_bounds": [
                                    0.41200000000000003
                                ],
                                "means": [
                                    0.3383833957246639
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741294532.775663,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 27,
                                "interval_lower_bounds": [
                                    0.2
                                ],
                                "centers": [
                                    0.34
                                ],
                                "interval_upper_bounds": [
                                    0.4
                                ],
                                "means": [
                                    0.33856488932566103
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.10874699370748123,
                                        0.0,
                                        0.23351825246045652,
                                        0.0,
                                        0.0,
                                        2.1105254300770118,
                                        0.0,
                                        0.05181454149830181,
                                        0.0,
                                        0.0,
                                        0.43933936192822537,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.8218869508967813,
                                        0.3346306710954027,
                                        0.0,
                                        0.0,
                                        0.0,
                                        1.0,
                                        1.3902176233227292,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.43289785514522633,
                                        0.34196503051998717,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.06414156534256711,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.9074353916842878,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.6701049752490269,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741294532.775663,
                            "end_time": null,
                            "forecast_values": [
                                0.6599999999999999,
                                0.34
                            ],
                            "forecaster_count": 27,
                            "interval_lower_bounds": [
                                0.2
                            ],
                            "centers": [
                                0.34
                            ],
                            "interval_upper_bounds": [
                                0.4
                            ],
                            "means": [
                                0.33856488932566103
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.10874699370748123,
                                    0.0,
                                    0.23351825246045652,
                                    0.0,
                                    0.0,
                                    2.1105254300770118,
                                    0.0,
                                    0.05181454149830181,
                                    0.0,
                                    0.0,
                                    0.43933936192822537,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.8218869508967813,
                                    0.3346306710954027,
                                    0.0,
                                    0.0,
                                    0.0,
                                    1.0,
                                    1.3902176233227292,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.43289785514522633,
                                    0.34196503051998717,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.06414156534256711,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.9074353916842878,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.6701049752490269,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 82,
            "is_current_content_translated": false,
            "description": "According to the [National UFO Reporting Center](https://nuforc.org/about-us/): \"The National UFO Reporting Center was founded in 1974 by noted UFO investigator Robert J. Gribble. The Center’s primary function over the past five decades has been to receive, record, and to the greatest degree possible, corroborate and document reports from individuals who have been witness to unusual, possibly UFO-related events. Throughout its history, the Center has processed over 180,000 reports, and has distributed its information to thousands of individuals.\""
        },
        {
            "id": 35697,
            "title": "Will a pilot report of UFOs come from a country in South America in March 2025?",
            "url_title": "",
            "slug": "will-a-pilot-report-of-ufos-come-from-a-country-in-south-america-in-march-2025",
            "author_id": 115975,
            "author_username": "johnnycaffeine",
            "coauthors": [],
            "created_at": "2025-03-02T04:05:19.198002Z",
            "published_at": "2025-03-06T20:00:00Z",
            "edited_at": "2025-03-06T21:00:00.726408Z",
            "curation_status": "approved",
            "curation_status_updated_at": null,
            "comment_count": 0,
            "status": "closed",
            "resolved": false,
            "actual_close_time": "2025-03-06T21:00:00Z",
            "scheduled_close_time": "2025-03-06T21:00:00Z",
            "scheduled_resolve_time": "2025-04-01T00:00:00Z",
            "open_time": "2025-03-06T20:00:00Z",
            "nr_forecasters": 25,
            "projects": {
                "question_series": [
                    {
                        "id": 32627,
                        "type": "question_series",
                        "name": "Q1 AI Forecasting Benchmark Tournament",
                        "slug": "aibq1",
                        "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                        "prize_pool": "30000.00",
                        "start_date": "2025-01-20T01:38:25Z",
                        "close_date": "2025-04-01T18:43:55Z",
                        "meta_description": "",
                        "is_ongoing": true,
                        "user_permission": null,
                        "created_at": "2025-01-05T18:44:23.854392Z",
                        "edited_at": "2025-03-12T22:10:14.704345Z",
                        "score_type": "spot_peer_tournament",
                        "default_permission": "viewer",
                        "visibility": "not_in_main_feed",
                        "is_current_content_translated": false
                    }
                ],
                "default_project": {
                    "id": 32627,
                    "type": "question_series",
                    "name": "Q1 AI Forecasting Benchmark Tournament",
                    "slug": "aibq1",
                    "header_image": "https://metaculus-web-media.s3.amazonaws.com/hires-q1.webp",
                    "prize_pool": "30000.00",
                    "start_date": "2025-01-20T01:38:25Z",
                    "close_date": "2025-04-01T18:43:55Z",
                    "meta_description": "",
                    "is_ongoing": true,
                    "user_permission": null,
                    "created_at": "2025-01-05T18:44:23.854392Z",
                    "edited_at": "2025-03-12T22:10:14.704345Z",
                    "score_type": "spot_peer_tournament",
                    "default_permission": "viewer",
                    "visibility": "not_in_main_feed",
                    "is_current_content_translated": false
                }
            },
            "question": {
                "id": 35147,
                "title": "Will a pilot report of UFOs come from a country in South America in March 2025?",
                "description": "For example, the resolution source [reports](https://nuforc.org/subndx/?id=x) a sighting in Brazil in December 2024.",
                "created_at": "2025-03-02T04:05:19.198002Z",
                "open_time": "2025-03-06T20:00:00Z",
                "cp_reveal_time": "2025-03-06T21:00:00Z",
                "scheduled_resolve_time": "2025-04-01T00:00:00Z",
                "actual_resolve_time": null,
                "resolution_set_time": null,
                "scheduled_close_time": "2025-03-06T21:00:00Z",
                "actual_close_time": "2025-03-06T21:00:00Z",
                "type": "binary",
                "options": null,
                "group_variable": "",
                "status": "closed",
                "possibilities": null,
                "resolution": null,
                "include_bots_in_aggregates": true,
                "question_weight": 1.0,
                "resolution_criteria": "This question resolves as **Yes** if The National UFO Reporting Center posts a pilot report of a UFO/UAP having occurred in a country on the South American continent, during the month of March 2025 at [this link](https://nuforc.org/subndx/?id=x) when accessed by Metaculus on or after April 1, 2025.",
                "fine_print": "",
                "label": "",
                "open_upper_bound": null,
                "open_lower_bound": null,
                "scaling": {
                    "range_max": null,
                    "range_min": null,
                    "zero_point": null
                },
                "post_id": 35697,
                "aggregations": {
                    "recency_weighted": {
                        "history": [
                            {
                                "start_time": 1741291378.35783,
                                "end_time": 1741291579.841085,
                                "forecast_values": null,
                                "forecaster_count": 1,
                                "interval_lower_bounds": [
                                    0.65
                                ],
                                "centers": [
                                    0.65
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.65
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291579.841085,
                                "end_time": 1741291595.424882,
                                "forecast_values": null,
                                "forecaster_count": 2,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.36
                                ],
                                "interval_upper_bounds": [
                                    0.65
                                ],
                                "means": [
                                    0.36
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291595.424882,
                                "end_time": 1741291744.100933,
                                "forecast_values": null,
                                "forecaster_count": 3,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.2189306321417417
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291744.100933,
                                "end_time": 1741291744.475071,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.17471018304538877
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291744.475071,
                                "end_time": 1741291744.874139,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.17471018304538877
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291744.874139,
                                "end_time": 1741291745.264854,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.17471018304538877
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291745.264854,
                                "end_time": 1741291745.734429,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.07
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.15611932537482207
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291745.734429,
                                "end_time": 1741291746.222157,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.17471018304538877
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291746.222157,
                                "end_time": 1741291754.17059,
                                "forecast_values": null,
                                "forecaster_count": 4,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.17471018304538877
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291754.17059,
                                "end_time": 1741291754.403514,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.18280560310867994
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291754.403514,
                                "end_time": 1741291754.619405,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.12
                                ],
                                "means": [
                                    0.15079501134433312
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291754.619405,
                                "end_time": 1741291754.923995,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16680030722650652
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291754.923995,
                                "end_time": 1741291755.157352,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16680030722650652
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291755.157352,
                                "end_time": 1741291755.354529,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.18280560310867994
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291755.354529,
                                "end_time": 1741291757.017787,
                                "forecast_values": null,
                                "forecaster_count": 5,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.16680030722650652
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291757.017787,
                                "end_time": 1741291772.0006,
                                "forecast_values": null,
                                "forecaster_count": 6,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2046025996807839
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291772.0006,
                                "end_time": 1741291772.347026,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.12
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.1905863883439249
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291772.347026,
                                "end_time": 1741291772.693682,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.12
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.1905863883439249
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291772.693682,
                                "end_time": 1741291773.019435,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.12
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.1905863883439249
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291773.019435,
                                "end_time": 1741291773.355117,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.12
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.1905863883439249
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291773.355117,
                                "end_time": 1741291773.676012,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.12
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.1905863883439249
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291773.676012,
                                "end_time": 1741291781.465556,
                                "forecast_values": null,
                                "forecaster_count": 7,
                                "interval_lower_bounds": [
                                    0.12
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.1905863883439249
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291781.465556,
                                "end_time": 1741291781.79421,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.18102595508370128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291781.79421,
                                "end_time": 1741291782.137763,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.18102595508370128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291782.137763,
                                "end_time": 1741291782.476871,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.18102595508370128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291782.476871,
                                "end_time": 1741291782.818687,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.18102595508370128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291782.818687,
                                "end_time": 1741291783.140106,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.18102595508370128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291783.140106,
                                "end_time": 1741291789.472517,
                                "forecast_values": null,
                                "forecaster_count": 8,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.18102595508370128
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291789.472517,
                                "end_time": 1741291789.684949,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15239225724443448
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291789.684949,
                                "end_time": 1741291789.903288,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1633189846325215
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291789.903288,
                                "end_time": 1741291790.113506,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15239225724443448
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291790.113506,
                                "end_time": 1741291790.300556,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15239225724443448
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291790.300556,
                                "end_time": 1741291790.533243,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15239225724443448
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291790.533243,
                                "end_time": 1741291825.490093,
                                "forecast_values": null,
                                "forecaster_count": 9,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.15239225724443448
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291825.490093,
                                "end_time": 1741291825.685672,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14167915398511988
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291825.685672,
                                "end_time": 1741291825.8716,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14167915398511988
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291825.8716,
                                "end_time": 1741291826.061323,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13145521649629124
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291826.061323,
                                "end_time": 1741291826.280148,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13145521649629124
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291826.280148,
                                "end_time": 1741291826.49028,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13145521649629124
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291826.49028,
                                "end_time": 1741291836.052324,
                                "forecast_values": null,
                                "forecaster_count": 10,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13145521649629124
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291836.052324,
                                "end_time": 1741291836.249667,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1253956717926045
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291836.249667,
                                "end_time": 1741291836.442995,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1253956717926045
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291836.442995,
                                "end_time": 1741291836.652011,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13502769054599822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291836.652011,
                                "end_time": 1741291836.861732,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13502769054599822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291836.861732,
                                "end_time": 1741291837.048153,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13502769054599822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291837.048153,
                                "end_time": 1741291883.417155,
                                "forecast_values": null,
                                "forecaster_count": 11,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13502769054599822
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291883.417155,
                                "end_time": 1741291891.988601,
                                "forecast_values": null,
                                "forecaster_count": 12,
                                "interval_lower_bounds": [
                                    0.07
                                ],
                                "centers": [
                                    0.12
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.12498474799754246
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291891.988601,
                                "end_time": 1741291892.200882,
                                "forecast_values": null,
                                "forecaster_count": 13,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.14635446638676386
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291892.200882,
                                "end_time": 1741291892.399903,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1552597606494332
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291892.399903,
                                "end_time": 1741291892.602481,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1469596341870206
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291892.602481,
                                "end_time": 1741291892.830198,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.1552597606494332
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291892.830198,
                                "end_time": 1741291893.049087,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13865950772460797
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291893.049087,
                                "end_time": 1741291893.269155,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.1
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13865950772460797
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291893.269155,
                                "end_time": 1741291923.97118,
                                "forecast_values": null,
                                "forecaster_count": 14,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1469596341870206
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291923.97118,
                                "end_time": 1741291924.35019,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.13948512960481554
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291924.35019,
                                "end_time": 1741291924.711756,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1474435653034809
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291924.711756,
                                "end_time": 1741291925.03022,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1474435653034809
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291925.03022,
                                "end_time": 1741291925.340674,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1474435653034809
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291925.340674,
                                "end_time": 1741291925.680964,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.05
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1315266939061502
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291925.680964,
                                "end_time": 1741291953.994322,
                                "forecast_values": null,
                                "forecaster_count": 15,
                                "interval_lower_bounds": [
                                    0.08
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1474435653034809
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291953.994322,
                                "end_time": 1741291993.644413,
                                "forecast_values": null,
                                "forecaster_count": 16,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.15
                                ],
                                "means": [
                                    0.1401816935295428
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741291993.644413,
                                "end_time": 1741292404.653732,
                                "forecast_values": null,
                                "forecaster_count": 17,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.165
                                ],
                                "means": [
                                    0.14384410226331784
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292404.653732,
                                "end_time": 1741292405.338945,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.165
                                ],
                                "means": [
                                    0.17324031051491087
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292405.338945,
                                "end_time": 1741292406.046459,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.165
                                ],
                                "means": [
                                    0.1632588615231396
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292406.046459,
                                "end_time": 1741292406.714986,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.165
                                ],
                                "means": [
                                    0.17324031051491087
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292406.714986,
                                "end_time": 1741292407.432584,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.165
                                ],
                                "means": [
                                    0.1589810976695233
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292407.432584,
                                "end_time": 1741292408.093738,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.165
                                ],
                                "means": [
                                    0.17324031051491087
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292408.093738,
                                "end_time": 1741292451.097806,
                                "forecast_values": null,
                                "forecaster_count": 18,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.165
                                ],
                                "means": [
                                    0.17324031051491087
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292451.097806,
                                "end_time": 1741292545.213529,
                                "forecast_values": null,
                                "forecaster_count": 19,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.15
                                ],
                                "interval_upper_bounds": [
                                    0.2
                                ],
                                "means": [
                                    0.17693471685772172
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292545.213529,
                                "end_time": 1741292580.856352,
                                "forecast_values": null,
                                "forecaster_count": 20,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.165
                                ],
                                "interval_upper_bounds": [
                                    0.2733333333333333
                                ],
                                "means": [
                                    0.18984324488179055
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292580.856352,
                                "end_time": 1741292662.509057,
                                "forecast_values": null,
                                "forecaster_count": 21,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.2733333333333333
                                ],
                                "means": [
                                    0.20417352855162313
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292662.509057,
                                "end_time": 1741292662.734006,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.165
                                ],
                                "interval_upper_bounds": [
                                    0.2733333333333333
                                ],
                                "means": [
                                    0.1871920278547744
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292662.734006,
                                "end_time": 1741292662.980183,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.165
                                ],
                                "interval_upper_bounds": [
                                    0.2733333333333333
                                ],
                                "means": [
                                    0.18466075348491015
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292662.980183,
                                "end_time": 1741292663.234048,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.165
                                ],
                                "interval_upper_bounds": [
                                    0.2733333333333333
                                ],
                                "means": [
                                    0.18212947911504587
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292663.234048,
                                "end_time": 1741292663.449591,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.165
                                ],
                                "interval_upper_bounds": [
                                    0.2733333333333333
                                ],
                                "means": [
                                    0.18212947911504587
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292663.449591,
                                "end_time": 1741292663.733045,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.165
                                ],
                                "interval_upper_bounds": [
                                    0.2733333333333333
                                ],
                                "means": [
                                    0.18212947911504587
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292663.733045,
                                "end_time": 1741292671.882767,
                                "forecast_values": null,
                                "forecaster_count": 22,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.165
                                ],
                                "interval_upper_bounds": [
                                    0.2733333333333333
                                ],
                                "means": [
                                    0.18212947911504587
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741292671.882767,
                                "end_time": 1741294046.083452,
                                "forecast_values": null,
                                "forecaster_count": 23,
                                "interval_lower_bounds": [
                                    0.1
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.196662287698435
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741294046.083452,
                                "end_time": 1741294205.612732,
                                "forecast_values": null,
                                "forecaster_count": 24,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.248
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.209089028508874
                                ],
                                "histogram": null
                            },
                            {
                                "start_time": 1741294205.612732,
                                "end_time": null,
                                "forecast_values": null,
                                "forecaster_count": 25,
                                "interval_lower_bounds": [
                                    0.15
                                ],
                                "centers": [
                                    0.2
                                ],
                                "interval_upper_bounds": [
                                    0.3
                                ],
                                "means": [
                                    0.2073956130968148
                                ],
                                "histogram": [
                                    [
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.7337519574005283,
                                        0.0,
                                        0.29451485373338854,
                                        0.0,
                                        0.027714863046207582,
                                        0.21526221595892353,
                                        0.0,
                                        0.41766650953930634,
                                        0.0,
                                        0.03808445092208783,
                                        0.0,
                                        0.0,
                                        1.065875332499216,
                                        0.4160730744622002,
                                        0.0,
                                        0.0,
                                        1.0,
                                        0.5267121648213062,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.2479696983050695,
                                        0.0,
                                        0.0,
                                        0.5898635470599414,
                                        0.0,
                                        0.0,
                                        2.456022673551937,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.46890301972848125,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.01831563888873418,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0,
                                        0.0
                                    ]
                                ]
                            }
                        ],
                        "latest": {
                            "start_time": 1741294205.612732,
                            "end_time": null,
                            "forecast_values": [
                                0.8,
                                0.2
                            ],
                            "forecaster_count": 25,
                            "interval_lower_bounds": [
                                0.15
                            ],
                            "centers": [
                                0.2
                            ],
                            "interval_upper_bounds": [
                                0.3
                            ],
                            "means": [
                                0.2073956130968148
                            ],
                            "histogram": [
                                [
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.7337519574005283,
                                    0.0,
                                    0.29451485373338854,
                                    0.0,
                                    0.027714863046207582,
                                    0.21526221595892353,
                                    0.0,
                                    0.41766650953930634,
                                    0.0,
                                    0.03808445092208783,
                                    0.0,
                                    0.0,
                                    1.065875332499216,
                                    0.4160730744622002,
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.5267121648213062,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.2479696983050695,
                                    0.0,
                                    0.0,
                                    0.5898635470599414,
                                    0.0,
                                    0.0,
                                    2.456022673551937,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.46890301972848125,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.01831563888873418,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    0.0
                                ]
                            ]
                        },
                        "score_data": {}
                    },
                    "unweighted": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "single_aggregation": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    },
                    "metaculus_prediction": {
                        "history": [],
                        "latest": null,
                        "score_data": {}
                    }
                }
            },
            "user_permission": "viewer",
            "vote": {
                "score": 0,
                "user_vote": null
            },
            "forecasts_count": 80,
            "is_current_content_translated": false,
            "description": "For example, the resolution source [reports](https://nuforc.org/subndx/?id=x) a sighting in Brazil in December 2024."
        }
    ]
}