From ca3ac2ca0f032400e3da20948615289cb6825006 Mon Sep 17 00:00:00 2001 From: Alek Petuskey Date: Wed, 4 Dec 2024 19:42:31 -0800 Subject: [PATCH 1/3] pricing update --- docs/library/graphing/other-charts/plotly.md | 5 ++-- docs/library/graphing/other-charts/pyplot.md | 3 +- pcweb/pages/pricing/calculator.py | 2 +- pcweb/pages/pricing/plan_cards.py | 30 +++++++++++++------- pcweb/pages/pricing/table.py | 2 +- pcweb/pages/state.json | 1 + pcweb/whitelist.py | 3 +- 7 files changed, 30 insertions(+), 16 deletions(-) create mode 100644 pcweb/pages/state.json diff --git a/docs/library/graphing/other-charts/plotly.md b/docs/library/graphing/other-charts/plotly.md index 227ac8e7f..8d6d50e13 100644 --- a/docs/library/graphing/other-charts/plotly.md +++ b/docs/library/graphing/other-charts/plotly.md @@ -10,6 +10,7 @@ import reflex as rx import pandas as pd import plotly.express as px import plotly.graph_objects as go +from typing import Optional ``` Plotly is a graphing library that can be used to create interactive graphs. Use the rx.plotly component to wrap Plotly as a component for use in your web page. Checkout [Plotly](https://plotly.com/graphing-libraries/) for more information. @@ -70,8 +71,8 @@ import pandas as pd class PlotlyState(rx.State): df: pd.DataFrame - figure: go.Figure = px.line() - + figure: Optional[go.Figure] = None + @rx.event def create_figure(self): self.df = px.data.gapminder().query("country=='Canada'") diff --git a/docs/library/graphing/other-charts/pyplot.md b/docs/library/graphing/other-charts/pyplot.md index 4e8cc7364..8dc1fc0fd 100644 --- a/docs/library/graphing/other-charts/pyplot.md +++ b/docs/library/graphing/other-charts/pyplot.md @@ -9,6 +9,7 @@ from reflex_pyplot import pyplot import numpy as np import random import matplotlib.pyplot as plt +from typing import Optional from reflex.style import toggle_color_mode ``` @@ -99,7 +100,7 @@ class PyplotState(rx.State): num_points: int = 100 plot_data: tuple scale: list - fig: plt.Figure = plt.Figure() + fig: Optional[plt.Figure] = None @rx.event def randomize(self): diff --git a/pcweb/pages/pricing/calculator.py b/pcweb/pages/pricing/calculator.py index 5734a23b0..7f92c217e 100644 --- a/pcweb/pages/pricing/calculator.py +++ b/pcweb/pages/pricing/calculator.py @@ -28,7 +28,7 @@ class BillingState(rx.State): @rx.var(cache=True) def seat_rate(self) -> int: if self.selected_plan == Tiers.PRO.value: - return 19 + return 20 elif self.selected_plan == Tiers.TEAM.value: return 29 diff --git a/pcweb/pages/pricing/plan_cards.py b/pcweb/pages/pricing/plan_cards.py index 6539f8791..3f9d0a011 100644 --- a/pcweb/pages/pricing/plan_cards.py +++ b/pcweb/pages/pricing/plan_cards.py @@ -134,10 +134,14 @@ def grid() -> rx.Component: def card( - title: str, description: str, features: list[tuple[str, str]], button_text: str + title: str, description: str, features: list[tuple[str, str]], button_text: str, price: str = None ) -> rx.Component: return rx.box( - rx.el.h3(title, class_name="font-semibold text-slate-12 text-2xl mb-2"), + rx.hstack( + rx.el.h3(title, class_name="font-semibold text-slate-12 text-2xl mb-2"), + rx.badge(price, color_scheme="gray") if price else rx.fragment(), + align_items="center", + ), rx.el.p( description, class_name="text-sm font-medium text-slate-9 mb-8 text-pretty" ), @@ -169,7 +173,7 @@ def card( def popular_card( - title: str, description: str, features: list[tuple[str, str]], button_text: str + title: str, description: str, features: list[tuple[str, str]], button_text: str, price: str = None ) -> rx.Component: return rx.box( rx.box( @@ -179,7 +183,11 @@ def popular_card( rx.box( glow(), grid(), - rx.el.h3(title, class_name="font-semibold text-slate-12 text-2xl mb-2"), + rx.hstack( + rx.el.h3(title, class_name="font-semibold text-slate-12 text-2xl mb-2"), + rx.badge(price, color_scheme="violet") if price else rx.fragment(), + align_items="center", + ), rx.el.p(description, class_name="text-sm font-medium text-slate-9 mb-8"), rx.el.ul( *[ @@ -223,10 +231,11 @@ def plan_cards() -> rx.Component: ("file-code", "Starter Templates"), ], "Start building for free", + price="Free", ), popular_card( "Pro", - "For professional projects $19/mo per member. Plus usage.", + "For professional projects and startups.", [ ("server", "Larger machine sizes"), ("users", "Up to 5 team members"), @@ -234,22 +243,23 @@ def plan_cards() -> rx.Component: ("clock", "30 days log retention"), ("globe", "Multi-region"), ("brush", "Custom domains"), - ("wand", "AI Tools for App Building and Debugging"), + ("wand", "AI Tools for Building and Debugging"), ("circle-plus", "Everything in Hobby"), ], "Start with Pro plan", + price="$20/mo + usage", ), card( "Team", - "For teams looking to scale their applications. Plus usage.", + "For teams looking to scale their applications.", [ ("mail", "Email support"), ("users", "Up to 25 team members"), ("app-window", "Unlimited Apps"), ("signal", "Full Website Analytics"), ("lock-keyhole", "One Click Auth"), - ("git-branch", "Dev, Stage & Prod Environments"), - ("database", "Database Editor UI and Migration Tool"), + ("git-branch", "Dev, Stage & Prod Envs"), + ("database", "DB Editor UI and Migration Tool"), ("test-tube", "Built-in Testing Framework"), ("circle-plus", "Everything in Pro"), ], @@ -263,7 +273,7 @@ def plan_cards() -> rx.Component: ("user-round-plus", "White Glove Onboarding"), ("users", "Unlimited team members"), ("hard-drive", "On Premise Deployment"), - ("signal", "Full Analytics Dashboard of App Users"), + ("signal", "Full Analytics Dashboard"), ("clock", "Unlimited log retention"), ("activity", "Error Monitoring and Observability"), ("git-pull-request", "Influence Reflex Roadmap"), diff --git a/pcweb/pages/pricing/table.py b/pcweb/pages/pricing/table.py index e4bc7913e..60fb6015e 100644 --- a/pcweb/pages/pricing/table.py +++ b/pcweb/pages/pricing/table.py @@ -34,7 +34,7 @@ # Data configuration USERS_SECTION = [ - ("Per Seat Price", "Free", "$19/mo/user", "Contact Sales", "Contact Sales"), + ("Per Seat Price", "Free", "$20/mo/user", "Contact Sales", "Contact Sales"), ("User Limit", "1", "5", "25", "Unlimited"), ] diff --git a/pcweb/pages/state.json b/pcweb/pages/state.json new file mode 100644 index 000000000..252385456 --- /dev/null +++ b/pcweb/pages/state.json @@ -0,0 +1 @@ +"{\"delta\": {\"reflex___state____state\": {\"component\": [], \"is_hydrated\": false, \"router\": {\"session\": {\"client_token\": \"55305726-e77a-4698-ab60-4cf2e55184de\", \"client_ip\": \"127.0.0.1\", \"session_id\": \"HhQnQxi5Gyd6RLL5AAAD\"}, \"headers\": {\"host\": \"localhost:8000\", \"origin\": \"http://localhost:3000\", \"upgrade\": \"websocket\", \"connection\": \"Upgrade\", \"cookie\": \"_ga=GA1.1.48616404.1668493090; inkeepUsagePreferences_userId=2zp6q3v22241s5c2q2m5i; _reb2buid=7c9297d0-89e3-4c82-a906-74eb5ed3568a-1733341680955; _reb2bsessionID=wGMkhrm8OsQqqzum6dVFCBMw; _reb2bresolve=1; _reb2bgeo=%7B%22city%22%3A%22San%20Francisco%22%2C%22country%22%3A%22United%20States%22%2C%22countryCode%22%3A%22US%22%2C%22hosting%22%3Afalse%2C%22isp%22%3A%22Webpass%20Inc.%22%2C%22lat%22%3A37.7695%2C%22proxy%22%3Afalse%2C%22region%22%3A%22CA%22%2C%22regionName%22%3A%22California%22%2C%22status%22%3A%22success%22%2C%22timezone%22%3A%22America%2FLos_Angeles%22%2C%22zip%22%3A%2294158%22%7D; ko_id=ac1db620-b6bf-4412-b6d6-65ee9f378094; _li_dcdm_c=.localhost; _lc2_fpi=334389048b87--01je9ke67xgy1zqyd6hza9m4ef; _reb2btd=MDQ5OWI4O0OV0VHLWZX6ZTBlNjUwYjljZDNhNTc2Mjg5MjE2MjY0NjE=; _reb2bref=http://localhost:3000/; ph_phc_JoMo0fOyi0GQAooY3UyO9k0hebGkMyFJrrCw1Gt5SGb_posthog=%7B%22distinct_id%22%3A%2201939337-1521-7876-ae03-f4c34e28e56e%22%2C%22%24sesid%22%3A%5B1733343380463%2C%2201939337-1520-7261-9e35-2cafe7828f3a%22%2C1733341680928%5D%2C%22%24initial_person_info%22%3A%7B%22r%22%3A%22%24direct%22%2C%22u%22%3A%22http%3A%2F%2Flocalhost%3A3000%2F%22%7D%7D; _ga_4T7C8ZD9TR=GS1.1.1733341681.34.1.1733343380.0.0.0; ko_sid={%22id%22:%221733341681642%22%2C%22lastTouched%22:1733343380488}\", \"pragma\": \"no-cache\", \"cache_control\": \"no-cache\", \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\", \"sec_websocket_version\": \"13\", \"sec_websocket_key\": \"5eiUC6nyWVzWaNvvRwxu7Q==\", \"sec_websocket_extensions\": \"permessage-deflate; client_max_window_bits\", \"accept_encoding\": \"gzip, deflate, br, zstd\", \"accept_language\": \"en-US,en;q=0.9\"}, \"page\": {\"host\": \"http://localhost:3000\", \"path\": \"/\", \"raw_path\": \"/\", \"full_path\": \"http://localhost:3000/\", \"full_raw_path\": \"http://localhost:3000/\", \"params\": {}}}}, \"reflex___state____state.flexdown___modules____554a86015cee567d85d844ce5022d82903fd0dbfce1b784281f93e2812a4a174____streaming_state\": {\"data\": [{\"name\": \"A\", \"uv\": 10, \"pv\": 110, \"amt\": 210}, {\"name\": \"B\", \"uv\": 20, \"pv\": 120, \"amt\": 230}, {\"name\": \"C\", \"uv\": 30, \"pv\": 120, \"amt\": 240}, {\"name\": \"D\", \"uv\": 30, \"pv\": 130, \"amt\": 210}, {\"name\": \"E\", \"uv\": 20, \"pv\": 140, \"amt\": 230}, {\"name\": \"F\", \"uv\": 40, \"pv\": 170, \"amt\": 250}, {\"name\": \"G\", \"uv\": 50, \"pv\": 190, \"amt\": 260}], \"stream\": false}, \"reflex___state____state.flexdown___modules____77512fdbb9aed0a5cc8ba757dd5cb1c675a5b85f76ede06e8033cce7fc1ff399____match_multi_prop_state\": {\"value\": 0}, \"reflex___state____state.pcweb___components___docpage___sidebar___state____sidebar_state\": {\"sidebar_index\": 0}, \"reflex___state____state.flexdown___modules____522eacba5ffc4dbf8eb568cb69bde1e61e9fe65a48aa41b6fb48a803987139bf____debounce_state\": {\"settled_value\": 50}, \"reflex___state____state.flexdown___modules____238ce12f717a1e7f1d92bf0a6e08c6d6fc4a853f2388d8b9936325f39229e520____my_state\": {\"color\": \"red\", \"count\": 0}, \"reflex___state____state.pcweb___github____github_star_state\": {\"stars\": \"20523\", \"stars_short\": \"21K\"}, \"reflex___state____state.reflex___state____on_load_internal_state\": {}, \"reflex___state____state.pcweb___components___docpage___navbar___state____navbar_state\": {\"ai_chat\": true, \"banner\": true, \"current_category\": \"All\", \"enter\": false, \"search_input\": \"\", \"sidebar_open\": false}, \"reflex___state____state.flexdown___modules____e468334e4745e5407327d6bd2166b076ff9df422b278960a8e5d6d20d6a92e6c____nested_state\": {\"num\": 0}, \"reflex___state____state.flexdown___modules____4595ce4851047548bcf44a3b33abcb3a9667563081c1d4e13fe5c008b79799fa____react_flow_state\": {\"edges\": [{\"id\": \"e1-2\", \"source\": \"1\", \"target\": \"2\", \"label\": \"*\", \"animated\": true}, {\"id\": \"e2-3\", \"source\": \"2\", \"target\": \"3\", \"label\": \"+\", \"animated\": true}], \"nodes\": [{\"id\": \"1\", \"type\": \"input\", \"data\": {\"label\": \"150\"}, \"position\": {\"x\": 250, \"y\": 25}}, {\"id\": \"2\", \"data\": {\"label\": \"25\"}, \"position\": {\"x\": 100, \"y\": 125}}, {\"id\": \"3\", \"type\": \"output\", \"data\": {\"label\": \"5\"}, \"position\": {\"x\": 250, \"y\": 250}}]}, \"reflex___state____state.reflex___istate___dynamic____editable_text_n1\": {\"editing\": false, \"original_text\": \"\", \"text\": \"Click to edit\"}, \"reflex___state____state.flexdown___modules____9fcacc2475c1799c581de6037cf540337e700849919e6e0f701fb43db3da9ab6____scatter_chart_state\": {\"data\": []}, \"reflex___state____state.flexdown___modules____10ca73f56a11397258d41703a5e6506bf428da5e0058c878ecac7f1e6ce07a6e____text_area_feedback_state\": {\"feedback\": \"\", \"submitted\": false}, \"reflex___state____state.flexdown___modules____bc4788334c048b6b22992f5ccc42f85f2d1e11b9ed383660da4f034d8369ab61____setter_state1\": {\"selected\": \"1\"}, \"reflex___state____state.pcweb___templates___docpage___state____feedback_state\": {\"score\": null}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_menu_n1\": {\"is_open\": false}, \"reflex___state____state.docs___getting_started___chat_tutorial_utils____chatapp_state\": {\"chat_history\": [], \"question\": \"\"}, \"reflex___state____state.flexdown___modules____b7301982a3d1990072853bba6f9590168dccf2d2ecddc9697ba30f7fd91d54ef____state\": {\"current_user\": {\"id\": null, \"name\": null, \"email\": null}}, \"reflex___state____state.reflex___istate___dynamic____top_banner_signup_n1\": {\"hide\": false}, \"reflex___state____state.flexdown___modules____8b47317fb13d48cea98e3c2cb4d2a7f37d7996809f9df60a6ab5de7d824157b0____list_state\": {\"items\": [\"Apple\", \"Banana\", \"Cherry\"]}, \"reflex___state____state.flexdown___modules____529bb5b84bb33370309341dc179c631b51c581e957fc7f05bc3d6b9e254bcbde____state2\": {\"users\": [{\"name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"gender\": \"Male\"}, {\"name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"gender\": \"Female\"}]}, \"reflex___state____state.pcweb___pages___docs___custom_components____custom_component_gallery_state\": {\"components_list\": [], \"original_components_list\": [], \"selected_filter\": \"\", \"tags\": []}, \"reflex___state____state.flexdown___modules____7a5642c6ae562eea7f008fd8848149ee0da5a8b09d78d5a46ed9cd7948c30b91____slider_state\": {\"value\": 50}, \"reflex___state____state.flexdown___modules____e9ab838f5c2e034fc5e2149b8c0d1760052824c4a63792671f9da44ea26465dc____radar_chart_state\": {\"remaining_points\": 10, \"total_points\": 100, \"trait_names\": [\"Strength\", \"Dexterity\", \"Constitution\", \"Intelligence\", \"Wisdom\", \"Charisma\"], \"traits\": [{\"trait\": \"Strength\", \"value\": 15}, {\"trait\": \"Dexterity\", \"value\": 15}, {\"trait\": \"Constitution\", \"value\": 15}, {\"trait\": \"Intelligence\", \"value\": 15}, {\"trait\": \"Wisdom\", \"value\": 15}, {\"trait\": \"Charisma\", \"value\": 15}]}, \"reflex___state____state.flexdown___modules____4466a2027c3c0327703877fff547449de60a819c2f08d8948144a934a2fd0331____simple_dict_iter_state\": {\"color_chart\": {\"sky\": \"blue\", \"balloon\": \"red\", \"grass\": \"green\"}}, \"reflex___state____state.flexdown___modules____4cdab5d320979b92531baf339d9c6d89d4985304b4c0b728fb668c68074013b9____state3\": {\"users\": [{\"name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"gender\": \"Male\"}, {\"name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"gender\": \"Female\"}]}, \"reflex___state____state.flexdown___modules____ae145477bcd462515f98d7f6c698d8c88aaabd3dcf1b31963e489c342a95f335____live_slider_state\": {\"value\": 50}, \"reflex___state____state.flexdown___modules____308bb72fb33890094f0f45fdda67678b40be0a75d832612e071317dc9c1d9892____dropdown_menu_state2\": {\"which_dialog_open\": \"\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_move\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____1a1c7132c5e55ab03b5fffd51fed997ab81abfa9e48e9740744655079b76eec3___ag_grid_theme_state\": {\"theme\": \"quartz\", \"themes\": [\"quartz\", \"balham\", \"alpine\", \"material\"]}, \"reflex___state____state.flexdown___modules____fd9c8577a183317f1004e278dd8edce5dc6716c8756b2050954e6287a3509588____greeter_state\": {\"message\": \"\"}, \"reflex___state____state.pcweb___signup____index_state\": {\"show_confetti\": false, \"signed_up\": false}, \"reflex___state____state.flexdown___modules____c45e09fd3199c11139682d1e04bbfa063ad1bc2d958a26debd728e49f28e930a____form_select_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_leave\": {\"text\": \"Change Me!\"}, \"reflex___state____state.pcweb___pages___index___demos___chatbot___chatbot____tutorial_state\": {\"chat_history\": [[\"What is Reflex?\", \"Reflex is the open-source framework empowering Python developers to build web apps faster.\"]]}, \"reflex___state____state.flexdown___modules____daa818a9dbede74f225f644a8086952b7f39413c64101e1c7380f4c80ecb2917____area_state\": {\"curve_type\": \"\", \"data\": [{\"name\": \"Page A\", \"uv\": 4000, \"pv\": 2400, \"amt\": 2400}, {\"name\": \"Page B\", \"uv\": 3000, \"pv\": 1398, \"amt\": 2210}, {\"name\": \"Page C\", \"uv\": 2000, \"pv\": 9800, \"amt\": 2290}, {\"name\": \"Page D\", \"uv\": 2780, \"pv\": 3908, \"amt\": 2000}, {\"name\": \"Page E\", \"uv\": 1890, \"pv\": 4800, \"amt\": 2181}, {\"name\": \"Page F\", \"uv\": 2390, \"pv\": 3800, \"amt\": 2500}, {\"name\": \"Page G\", \"uv\": 3490, \"pv\": 4300, \"amt\": 2100}]}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____double_click_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____b94d026ceb15a79092d643277782e0cc4c692d0e919c3161dbd5cbb5413e37ea____line_chart_state\": {\"data\": [{\"name\": \"Page A\", \"uv\": 4000, \"pv\": 2400, \"amt\": 2400}, {\"name\": \"Page B\", \"uv\": 3000, \"pv\": 1398, \"amt\": 2210}, {\"name\": \"Page C\", \"uv\": 2000, \"pv\": 9800, \"amt\": 2290}, {\"name\": \"Page D\", \"uv\": 2780, \"pv\": 3908, \"amt\": 2000}, {\"name\": \"Page E\", \"uv\": 1890, \"pv\": 4800, \"amt\": 2181}, {\"name\": \"Page F\", \"uv\": 2390, \"pv\": 3800, \"amt\": 2500}, {\"name\": \"Page G\", \"uv\": 3490, \"pv\": 4300, \"amt\": 2100}], \"pv_type\": \"monotone\", \"uv_type\": \"monotone\"}, \"reflex___state____state.flexdown___modules____7e3ec7761aaa9cf4db470318e4eac62597d317de3a8104e41fbffd72cdc39377____text_state\": {\"text\": \"\"}, \"reflex___state____state.flexdown___modules____da2db8e386a953e9a95c793fcfd674b08cc595219e9402c844dfee350b968445____uppercase_state\": {\"text\": \"hello\", \"upper_text\": \"HELLO\"}, \"reflex___state____state.flexdown___modules____155312cdcda30884589ac85e5dcd2257cc4160a6c6bbaa14747853127f73fb46____dynamic_form_state\": {\"form_data\": {}, \"form_field_placeholders\": [\"First Name\", \"Last Name\", \"Email\"], \"form_fields\": [\"first_name\", \"last_name\", \"email\"]}, \"reflex___state____state.flexdown___modules____7ac7a00ce4ef68c49c7d19e5dc1c33f73a0c0eef542b7dcda1f9089247ab7ecb____progress_example_state\": {\"count\": 0, \"show_progress\": false}, \"reflex___state____state.flexdown___modules____704bfc9b2e737551fa64e5405aa98b8a360a9dcd554c91b425b3ad05a1caf6ef____logic_state\": {\"var_1\": true, \"var_2\": true}, \"reflex___state____state.pcweb___pages___index___demos___charts___charts____charts_state\": {\"data\": [{\"month\": \"Jan\", \"Mobile\": 470, \"Desktop\": 486}, {\"month\": \"Feb\", \"Mobile\": 399, \"Desktop\": 418}, {\"month\": \"Mar\", \"Mobile\": 465, \"Desktop\": 502}, {\"month\": \"Apr\", \"Mobile\": 268, \"Desktop\": 452}, {\"month\": \"May\", \"Mobile\": 484, \"Desktop\": 428}, {\"month\": \"Jun\", \"Mobile\": 468, \"Desktop\": 502}, {\"month\": \"Jul\", \"Mobile\": 490, \"Desktop\": 696}]}, \"reflex___state____state.flexdown___modules____b2330b91905eabebcbc5550636300d3c919a1a2838e58f58f95c251dff5b0cb0____table_for_each_state\": {\"people\": [[\"Danilo Sousa\", \"danilo@example.com\", \"Developer\"], [\"Zahra Ambessa\", \"zahra@example.com\", \"Admin\"], [\"Jasper Eriks\", \"jasper@example.com\", \"Developer\"]]}, \"reflex___state____state.flexdown___modules____62fddbde02b7efd09c1997eec9ef5232dd7c5a6b9b763a1b5afbdb3c297c4386____select_state8\": {\"is_open\": false}, \"reflex___state____state.flexdown___modules____9782a858cabf7ee2b7cf05d8857473ece81fee577a96fa5360120b0af778cb04____data_editor_state_hp\": {\"clicked_data\": \"Cell clicked: \", \"cols\": [{\"title\": \"Title\", \"type\": \"str\"}, {\"title\": \"Name\", \"type\": \"str\", \"group\": \"Data\", \"width\": 300}, {\"title\": \"Birth\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\", \"width\": 150}, {\"title\": \"Human\", \"type\": \"bool\", \"group\": \"Data\", \"width\": 80}, {\"title\": \"House\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\"}, {\"title\": \"Wand\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\", \"width\": 250}, {\"title\": \"Patronus\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\"}, {\"title\": \"Blood status\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\", \"width\": 200}], \"data\": [[\"1\", \"Harry James Potter\", \"31 July 1980\", true, \"Gryffindor\", \"11' Holly phoenix feather\", \"Stag\", \"Half-blood\"], [\"2\", \"Ronald Bilius Weasley\", \"1 March 1980\", true, \"Gryffindor\", \"12' Ash unicorn tail hair\", \"Jack Russell terrier\", \"Pure-blood\"], [\"3\", \"Hermione Jean Granger\", \"19 September, 1979\", true, \"Gryffindor\", \"10¾' vine wood dragon heartstring\", \"Otter\", \"Muggle-born\"], [\"4\", \"Albus Percival Wulfric Brian Dumbledore\", \"Late August 1881\", true, \"Gryffindor\", \"15' Elder Thestral tail hair core\", \"Phoenix\", \"Half-blood\"], [\"5\", \"Rubeus Hagrid\", \"6 December 1928\", false, \"Gryffindor\", \"16' Oak unknown core\", \"None\", \"Part-Human (Half-giant)\"], [\"6\", \"Fred Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"]]}, \"reflex___state____state.flexdown___modules____2c8df49edba8b79342222b8004492d749bf8912bb7056efddba3f9bd2bb12558____select_state\": {\"value\": \"apple\"}, \"reflex___state____state.flexdown___modules____88e75f035518c4beaef238b6b4e6b37a59e3ed1ac690b89f3146a68c6715ad68____ag_grid_state\": {\"all_columns\": [], \"column_defs\": [], \"n_clicks\": 0, \"two_columns\": []}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n6\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e1fe8469721b372a716058023b994d8729a5677af89a7cd52560ce6654069c04____segmented_state\": {\"control\": \"test\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_out\": {\"text\": \"Change Me!\"}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n2\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e49a77f5b7993a34578ab10bd74f19082922fd04d21f4e3c74c33c704d2431f3____index2_state\": {\"language\": \"EN\"}, \"reflex___state____state.reflex___istate___dynamic____top_banner_newsletter_n1\": {\"hide\": false}, \"reflex___state____state.flexdown___modules____84f0789681e958ef765a0466b50c6191b483adf6bc9265822ad269042ac18e6b____special_events_state\": {}, \"reflex___state____state.flexdown___modules____28301499a77e36a92fdfe6d826c5c7ad7131e99bdd058393c350036af9f77775____match_state\": {\"animal_options\": [\"persian\", \"siamese\", \"maine coon\", \"ragdoll\", \"pug\", \"corgi\"], \"cat_breed\": \"\"}, \"reflex___state____state.flexdown___modules____6ecc00be167e37146435fb63a874cfb324d26d2ce462c593fe15ceebdba45b64____database_table_state3\": {\"limit\": 3, \"offset\": 0, \"page_number\": 1, \"total_items\": 0, \"total_pages\": 0, \"users\": []}, \"reflex___state____state.flexdown___modules____3200fa34374dc909195ea27ce00d24f39dc1dbaafc97fff514b1e3e892d0a3f5____toast_state\": {}, \"reflex___state____state.flexdown___modules____4cca1fe912afc54408223460980bf7a13121704e2a912131bfee015691755d6e____equals_state\": {\"favorite\": \"Banana\", \"selected\": \"Apple\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____blur_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.reflex___istate___dynamic____counter_n4\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____3bb5eebb2c03978582d41e152b9ac7c560ec3d4e9d0b947f47be231a335ebad0____cond_simple_state\": {\"show\": true}, \"reflex___state____state.flexdown___modules____4300ff9d706f81d2812d7d35f7734b415e4bf240055db1e369e86c1310b74bfb____textfield_blur\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____d3c6679584a308a79c140dc95f0e2615da781258367e2bacb047196de47506fd____state\": {\"current_user\": {\"id\": null, \"name\": null, \"email\": null}}, \"reflex___state____state.reflex___state____update_vars_internal_state\": {}, \"reflex___state____state.flexdown___modules____c7286644ff07923154e581d718ea3dfd8fa62d0ff05209c23a9fc2e6211746db____iter_index_state\": {\"color\": [\"red\", \"green\", \"blue\"]}, \"reflex___state____state.flexdown___modules____54bcdadfa6bbd24a09a564af8bc4c2959207196f31b04dc0f8cf87004934ba83____nested_dict_iter_state\": {\"color_chart\": {\"purple\": [\"red\", \"blue\"], \"orange\": [\"yellow\", \"red\"], \"green\": [\"blue\", \"yellow\"]}}, \"reflex___state____state.flexdown___modules____41e3ad30e71217fa430f980dc0f20056c25da3552f6d205dc5bd69aa133c3b96____text_area_blur\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____e131b7101e00531d354c8b0e39e5f02faf497446b0e16b878403b58c2a4c43f7____string_state\": {\"string_1\": \"PYTHON is FUN\", \"string_2\": \"react is hard\"}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_vertical_text_n1\": {\"is_open\": false}, \"reflex___state____state.flexdown___modules____31555626f85fb4f013ca16d45f28e30a9d7206e89990d576d2b76e2b32cf99ef____editor_state\": {\"content\": \"

Editor content

\"}, \"reflex___state____state.flexdown___modules____36fee42194b39feb7e2e7099df9adc29651f5c587acea7e1c04748fba3c356e3____translation_state\": {\"current_translation\": {\"original_text\": \"\", \"translated_text\": \"\"}, \"input_text\": \"Hola Mundo\"}, \"reflex___state____state.flexdown___modules____0e871acbbf94fa3bd88fe5858053c9836022e899b3993c7c61f319d2957f64df____single_selection_chips_state\": {\"selected_item\": \"\"}, \"reflex___state____state.pcweb___pages___docs___component____prop_docs_state\": {\"a_00328ce5\": \"1\", \"a_011af72a\": \"start\", \"a_01d54579\": \"start\", \"a_02d20bbd\": false, \"a_031b4af5\": \"ltr\", \"a_043066da\": \"row\", \"a_05ada863\": \"nowrap\", \"a_08490295\": \"tomato\", \"a_093434a3\": false, \"a_09895de0\": \"tomato\", \"a_0a2d643b\": false, \"a_0a5b046d\": \"row\", \"a_0b918943\": false, \"a_0e17daca\": \"none\", \"a_0e652381\": \"start\", \"a_0f4121d0\": false, \"a_0f8ef337\": false, \"a_0fd42b3f\": false, \"a_0fecf924\": \"0\", \"a_108c995b\": \"1\", \"a_114bd151\": \"partial\", \"a_1253e937\": false, \"a_13671077\": \"classic\", \"a_138d9e80\": false, \"a_14063697\": false, \"a_16badfc6\": \"ltr\", \"a_16dc368a\": \"classic\", \"a_19581e27\": false, \"a_1a656259\": \"vertical\", \"a_1be00341\": \"tomato\", \"a_1c6c0bb2\": \"light\", \"a_1d0ebea5\": \"start\", \"a_1d28c120\": \"start\", \"a_1da51b8d\": \"1\", \"a_1dfacb2e\": \"tomato\", \"a_1e472b39\": \"start\", \"a_1e68ed4e\": false, \"a_210e3b16\": \"nowrap\", \"a_2397346b\": false, \"a_23c657f2\": \"left\", \"a_25fc0e70\": \"classic\", \"a_2747b7c7\": false, \"a_27badc98\": \"tomato\", \"a_27d719c7\": \"1\", \"a_27e16152\": \"tomato\", \"a_2811745d\": \"0\", \"a_284de502\": \"start\", \"a_2858dcd1\": \"1\", \"a_28dae7c8\": false, \"a_29db0c67\": false, \"a_2abaca49\": \"1\", \"a_2ac878b0\": \"top\", \"a_2c624232\": \"tomato\", \"a_2c7d5490\": false, \"a_2fca346d\": false, \"a_3038bfb5\": false, \"a_303c8bd5\": \"left\", \"a_3068430d\": \"nowrap\", \"a_31489056\": \"single\", \"a_314f04b3\": \"solid\", \"a_3346f2bb\": \"1\", \"a_33512007\": false, \"a_349c4120\": false, \"a_35135aaa\": \"vertical\", \"a_3635a91e\": \"1\", \"a_36790ecd\": \"tomato\", \"a_36ebe205\": \"none\", \"a_37834f2f\": \"none\", \"a_37c20f19\": false, \"a_38b2d03f\": \"start\", \"a_38d66d96\": \"classic\", \"a_396f8044\": \"partial\", \"a_39bb88f4\": \"start\", \"a_39fa9ec1\": \"tomato\", \"a_3a1dfb05\": \"tomato\", \"a_3ada92f2\": \"classic\", \"a_3d3286f7\": \"x\", \"a_3d914f93\": \"classic\", \"a_3e1e967e\": \"classic\", \"a_3f9807cb\": \"border-box\", \"a_3fdba35f\": \"tomato\", \"a_41cfc0d1\": \"automatic\", \"a_41e521ad\": \"0\", \"a_434c9b5a\": \"classic\", \"a_43974ed7\": false, \"a_44c8031c\": \"0\", \"a_44cb730c\": \"tomato\", \"a_4523540f\": \"tomato\", \"a_454f63ac\": \"item-aligned\", \"a_4621c1d5\": false, \"a_482d9673\": false, \"a_48449a14\": false, \"a_49d180ec\": \"tomato\", \"a_4a44dc15\": \"none\", \"a_4a8596a7\": \"nowrap\", \"a_4b227777\": false, \"a_4be84111\": \"light\", \"a_4c970004\": \"surface\", \"a_4e074085\": \"tomato\", \"a_4ec9599f\": false, \"a_4fc82b26\": \"1\", \"a_51e8ea28\": \"1\", \"a_52f11620\": \"nowrap\", \"a_5316ca1c\": false, \"a_535fa30d\": \"tomato\", \"a_56f4da26\": false, \"a_580811fa\": \"0\", \"a_5966abd0\": \"1\", \"a_59e19706\": \"none\", \"a_5a39cadd\": \"solid\", \"a_5cf4e26b\": false, \"a_5d389f5e\": \"1\", \"a_5ec1a0c9\": \"1\", \"a_5ef6fdf3\": \"1\", \"a_5f9c4ab0\": \"tomato\", \"a_61a229ba\": \"row\", \"a_6208ef0f\": \"1\", \"a_620c9c33\": \"start\", \"a_624b60c5\": \"auto\", \"a_6566230e\": \"1\", \"a_65a69990\": \"vertical\", \"a_670671cd\": false, \"a_67e9c3ac\": false, \"a_684fe39f\": false, \"a_68519a9e\": \"start\", \"a_69f59c27\": false, \"a_6af1f692\": false, \"a_6affdae3\": \"none\", \"a_6b51d431\": \"soft\", \"a_6b86b273\": \"solid\", \"a_6c658ee8\": \"solid\", \"a_6e400187\": \"tomato\", \"a_6f4b6612\": \"normal\", \"a_70260742\": \"1\", \"a_7045d16a\": \"nowrap\", \"a_71812781\": \"normal\", \"a_71a1c003\": \"auto\", \"a_71ee45a3\": \"classic\", \"a_72440a20\": \"1\", \"a_73475cb4\": false, \"a_734d0759\": \"row\", \"a_73d3f1ba\": \"tomato\", \"a_749fc650\": \"1\", \"a_7559ca4a\": \"ltr\", \"a_766cb53c\": false, \"a_7688b6ef\": \"tomato\", \"a_768b84ef\": false, \"a_76a50887\": \"ltr\", \"a_785f3ec7\": \"start\", \"a_7902699b\": \"1\", \"a_79bf0868\": \"partial\", \"a_79d6eaa2\": \"0\", \"a_7a61b537\": \"vertical\", \"a_7b1a278f\": false, \"a_7b697596\": \"row\", \"a_7c252ab3\": \"start\", \"a_7ed8f0f3\": \"start\", \"a_7f0a2211\": \"normal\", \"a_7f2253d7\": false, \"a_802b906a\": false, \"a_80c3cd40\": \"horizontal\", \"a_811786ad\": \"1\", \"a_81b8a03f\": \"none\", \"a_82416496\": \"classic\", \"a_82c01ce1\": \"top\", \"a_835d5e83\": false, \"a_83f814f7\": false, \"a_84a5092e\": \"top\", \"a_8527a891\": false, \"a_85daaf6f\": \"start\", \"a_86e50149\": false, \"a_87226162\": \"badInput\", \"a_89aa1e58\": \"classic\", \"a_8acc2398\": \"1\", \"a_8ae4c23b\": false, \"a_8b496bf9\": \"light\", \"a_8b940be7\": false, \"a_8bcbb4c1\": false, \"a_8c1f1046\": \"tomato\", \"a_8cd25102\": \"row\", \"a_8d27ba37\": false, \"a_8df66f64\": false, \"a_8e612bd1\": \"1\", \"a_8f1f64db\": false, \"a_922c7954\": false, \"a_9400f1b2\": \"horizontal\", \"a_9512d95d\": false, \"a_9537f32e\": false, \"a_9556b824\": false, \"a_96061e92\": false, \"a_968076be\": \"partial\", \"a_98010bd9\": \"tomato\", \"a_98a3ab7c\": false, \"a_9a049b03\": \"top\", \"a_9ae2bdd7\": \"0\", \"a_9b871512\": false, \"a_9bdb2af6\": \"classic\", \"a_9d693eee\": false, \"a_9e6a7255\": \"1\", \"a_9f14025a\": false, \"a_9f1f9dce\": \"tomato\", \"a_9f484139\": \"top\", \"a_a0d177b4\": \"p\", \"a_a0eaec5a\": false, \"a_a21855da\": false, \"a_a30f4ef4\": \"start\", \"a_a46e3763\": \"tomato\", \"a_a4e00d7e\": \"1\", \"a_a512db27\": \"0\", \"a_a665a459\": false, \"a_a68b412c\": \"0\", \"a_a88a7902\": \"none\", \"a_ad48ff99\": false, \"a_ad573668\": false, \"a_aea92132\": \"none\", \"a_af180e43\": \"normal\", \"a_b1556dea\": \"none\", \"a_b17ef6d1\": \"soft\", \"a_b4944c6f\": \"1\", \"a_b4bbe448\": false, \"a_b7a56873\": \"classic\", \"a_b8aed072\": \"start\", \"a_bb668ca9\": \"0\", \"a_bba58959\": \"tomato\", \"a_bbb965ab\": \"row\", \"a_bc52dd63\": \"1\", \"a_bdd2d3af\": \"tomato\", \"a_be47addb\": \"surface\", \"a_bfa76346\": \"start\", \"a_c0509a48\": false, \"a_c17edaae\": false, \"a_c2356069\": \"1\", \"a_c6f3ac57\": \"single\", \"a_c75cb66a\": false, \"a_c75d3f1f\": false, \"a_c75de23d\": \"row\", \"a_c76b4057\": false, \"a_c837649c\": false, \"a_cba28b89\": \"start\", \"a_cd70bea0\": false, \"a_d029fa3a\": false, \"a_d29d5370\": false, \"a_d2f48367\": \"none\", \"a_d4735e3a\": \"1\", \"a_d48ff4b2\": \"partial\", \"a_d4ee9f58\": false, \"a_d59eced1\": \"tomato\", \"a_d6061bbe\": \"start\", \"a_d6a40317\": \"none\", \"a_d6d824ab\": false, \"a_d6e5a20b\": \"partial\", \"a_d6f0c71e\": false, \"a_d7cdaa5c\": \"light\", \"a_d80eae6e\": \"tomato\", \"a_d86580a5\": \"1\", \"a_d8d17907\": false, \"a_da4ea2a5\": false, \"a_dac53c17\": \"0\", \"a_dbae772d\": false, \"a_dbb1ded6\": false, \"a_dfe62e83\": \"partial\", \"a_e0850a77\": false, \"a_e0f05da9\": \"1\", \"a_e29c9c18\": false, \"a_e3d6c4d4\": false, \"a_e5b861a6\": \"item-aligned\", \"a_e629fa65\": \"1\", \"a_e7866fdc\": false, \"a_e7f6c011\": \"solid\", \"a_e888a676\": \"start\", \"a_ea5b2755\": \"classic\", \"a_eb1e33e8\": \"1\", \"a_eb3be230\": false, \"a_eb624dbe\": \"1\", \"a_ec2e990b\": \"start\", \"a_ee62de25\": \"1\", \"a_eeca91fd\": \"tomato\", \"a_ef2d127d\": \"none\", \"a_efd96aed\": \"light\", \"a_f0bc318f\": \"start\", \"a_f369cb89\": \"classic\", \"a_f57e5cb1\": false, \"a_f5ca38f7\": \"1\", \"a_f6e0a1e2\": \"tomato\", \"a_f747870a\": \"tomato\", \"a_f74efabe\": \"tomato\", \"a_f8809aff\": \"start\", \"a_fa2b7af0\": false, \"a_fc56dbc6\": \"top\", \"a_ff2ccb6b\": \"start\", \"a_ff5a1ae0\": false}, \"reflex___state____state.reflex___istate___dynamic____chat_n2\": {\"last_user_message\": \"\", \"messages\": [], \"processing\": false}, \"reflex___state____state.flexdown___modules____cd71beb49c528689f02f80a07594c95c2b543299de61012f281b8b06941a9bb6____prop_cond_state\": {\"value\": 0}, \"reflex___state____state.reflex___istate___dynamic____top_banner_basic_n1\": {\"hide\": false}, \"reflex___state____state.flexdown___modules____0673b8b8352e75c4d2b91b4c7fc1dc309cc34d595af3f190cc2ccfcdf9d82b30____basic_chips_state\": {\"selected_items\": [\"Data Management\", \"Networking\", \"Security\"]}, \"reflex___state____state.reflex___istate___dynamic____top_banner_gradient_n1\": {\"hide\": false}, \"reflex___state____state.reflex___istate___dynamic____editable_text_n3\": {\"editing\": false, \"original_text\": \"\", \"text\": \"Reflex is fun\"}, \"reflex___state____state.flexdown___modules____d6f7ece467a3aa5b7ce5cdb063efd51a3f9cfe2bc86f7327fc0fe70757e35e37____cached_var_state\": {\"counter_a\": 0, \"counter_b\": 0, \"last_counter_a_update\": \"0 at 12:16:23\", \"last_counter_b_update\": \"0 at 12:16:23\", \"last_touch_time\": \"12:16:23\"}, \"reflex___state____state.pcweb___pages___sales____form_state\": {\"email_sent\": false, \"is_loading\": false}, \"reflex___state____state.flexdown___modules____e48f8e775de5846317af716cdd2a326cec7a674e7563efa5b65600f9877ba58d____div_state\": {\"number_1\": 3.5, \"number_2\": 1.4}, \"reflex___state____state.flexdown___modules____15da7858c2fa270395edbbcf064f56ee482bf72ac8ba56a36e5d10a8a451b3b8____match_state\": {\"animal_options\": [\"persian\", \"siamese\", \"maine coon\", \"ragdoll\", \"pug\", \"corgi\"], \"cat_breed\": \"\"}, \"reflex___state____state.flexdown___modules____09034d896c665ea3b6117be2d161e4cd8c3d1bd97b8006ea8707156596b420b4____counter_state2\": {\"count\": 0}, \"reflex___state____state.reflex___istate___dynamic____counter_n6\": {\"count\": 0}, \"reflex___state____state.pcweb___components___icons___lucide___lucide____icon_state\": {\"expanded\": false, \"filtered_icons\": [], \"icons\": [], \"search_query\": \"\"}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n5\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e364746f65ba2c9f5a452cdf2cd7f4748cd845bab071d8e9db8fa6e99b207667____event_arg_state_slider\": {\"value\": 50}, \"reflex___state____state.pcweb___pages___hosting_countdown___waitlist____waitlist_state\": {\"loading\": false, \"success\": false}, \"reflex___state____state.flexdown___modules____fc773fda6da8021d2fcdd7e3c7c5b69acfb77f1a921735efc5d90bad084e3700____count_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____b549b08fb6b6a64ccf1619304752be84480b95a083fac6832b969df396288fc7____counter_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____context_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____c7fa70fd85f9992a31601b102a46ef3b7f29eab60b5f10e0e6d58f154e0d6230____select_state2\": {\"value\": \"\", \"values\": [\"apple\", \"grape\", \"pear\"]}, \"reflex___state____state.flexdown___modules____eb9cdc53c25abb6bdee9a004a2c00fc9c03a4a991e5325303e55bb76410d983d____sound_effect_state\": {}, \"reflex___state____state.reflex___istate___dynamic____counter_n1\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____5dc53ca9d11aaed9b7eeb73bd18397507e8c724b9abbad864e0f53498a7c961d___ag_grid_state_api\": {}, \"reflex___state____state.flexdown___modules____f991147b4490392e6a1a3377ef98e06a5094dcfab345b2b3a9898587b8098322____pyplot_state\": {\"fig\": null, \"num_points\": 100, \"plot_data\": [], \"scale\": []}, \"reflex___state____state.docs___datatable_tutorial___datatable_tutorial_utils____data_table_live_state\": {\"columns\": [{\"title\": \"id\", \"id\": \"v1\", \"type\": \"int\", \"width\": 100}, {\"title\": \"advice\", \"id\": \"v2\", \"type\": \"str\", \"width\": 750}], \"rate\": 0.4, \"running\": false, \"table_data\": []}, \"reflex___state____state.flexdown___modules____58e6cbb26a287027c344ae6993ee59d3cb8e071819a550363a03a1201a7fdad2____table_download_state\": {\"users\": []}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____focus_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____02a3c18c1c89ba007a3f1c005558df742c47dd2f78dee8e197bcb0ea6048a873____form_select_state\": {\"form_data\": {}}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n7\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____fd9c8577a183317f1004e278dd8edce5dc6716c8756b2050954e6287a3509588____settings_state\": {\"salutation\": \"Hello\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_up_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____b745ae73873614d2f3ccfd3f5ac28c32a249679e65cbca8fe21d3e0afb94e8cb____var_select_state\": {\"selected\": \"DOGE\"}, \"reflex___state____state.flexdown___modules____809bbf95cc575024b35844d690ec367610ac17f0e1e7173f0f41962acdd1ca88____flex_playground_state\": {\"align\": \"stretch\", \"direction\": \"row\", \"justify\": \"start\", \"wrap\": \"nowrap\"}, \"reflex___state____state.flexdown___modules____19641b1fb804b6a9bbd6d1e330d631a4ebf2891298c3f2a07cc248273803d6e9____counter_example_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e796cdd72e319e648fa54d444b4a1544e33fe00cb09de837d3b5c7b965adc247____plotly_state\": {\"df\": {\"columns\": [], \"data\": []}, \"figure\": {\"data\": [{\"hovertemplate\": \"\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"marker\": {\"symbol\": \"circle\"}, \"mode\": \"lines\", \"name\": \"\", \"orientation\": \"v\", \"showlegend\": false, \"xaxis\": \"x\", \"yaxis\": \"y\", \"type\": \"scatter\"}], \"layout\": {\"legend\": {\"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}, \"pattern\": {\"fillmode\": \"overlay\", \"size\": 10, \"solidity\": 0.2}}, \"type\": \"barpolar\"}], \"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}, \"pattern\": {\"fillmode\": \"overlay\", \"size\": 10, \"solidity\": 0.2}}, \"type\": \"bar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram\": [{\"marker\": {\"pattern\": {\"fillmode\": \"overlay\", \"size\": 10, \"solidity\": 0.2}}, \"type\": \"histogram\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatter\": [{\"fillpattern\": {\"fillmode\": \"overlay\", \"size\": 10, \"solidity\": 0.2}, \"type\": \"scatter\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"autotypenumbers\": \"strict\", \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0]}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0]}}}}, \"reflex___state____state.flexdown___modules____b9df7a4e2ff1d8a2a8e2b91bce26d82861c863d86395de8eabd0db30cf846808____arg_state\": {\"colors\": [\"rgba(245,168,152)\", \"MediumSeaGreen\", \"#DEADE3\"]}, \"reflex___state____state.flexdown___modules____319c67702a5b0518a9e6279bc897d37121c0f99ae11566f03a69ecf4e02d27a5____github_state\": {\"profile_image\": \"https://avatars.githubusercontent.com/u/104714959\", \"url\": \"https://github.com/reflex-dev\"}, \"reflex___state____state.flexdown___modules____345d0e24130f0c5a552304d0e38cca86efb81788442ce262dcece385ac5d01fa____var_number_state\": {\"number\": 0}, \"reflex___state____state.flexdown___modules____20c87fa80f2987dcf5382ac1ebd845f0386c5e9cefc045279636b84e0a968467____yield_events_state\": {\"count\": 0, \"show_progress\": false}, \"reflex___state____state.flexdown___modules____f99d2763709126412d1e94f9eba6891877c3f513e778fe50f5193b124f373d9f____textfield_controlled1\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____f124a6e515a46d62c2ebd39299808144526eeee312d0eb531a8f7ab5e1313f7e____complex_local_storage_state\": {\"data\": {\"theme\": \"light\", \"sidebar_visible\": true, \"update_frequency\": 60, \"error_messages\": []}, \"data_raw\": \"{}\", \"settings_open\": false}, \"reflex___state____state.pcweb___components___hosting_banner____hosting_banner_state\": {\"show_banner\": true}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_down\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____637273dcb1b07229fb9bfd142d03ea781da2e5e5ab738351343dad1255dfcb47____iter_state2\": {\"color\": [\"red\", \"green\", \"blue\"]}, \"reflex___state____state.reflex___istate___dynamic____counter_n3\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____3b7d5a1a3ae394876b717a3c98a55bb3f5c19be6da94160f55fcd72ec02cda15____nested_foreach_state\": {\"numbers\": [[\"1\", \"2\", \"3\"], [\"4\", \"5\", \"6\"], [\"7\", \"8\", \"9\"]]}, \"reflex___state____state.flexdown___modules____276372f2daef572880ba7da1ece8df1cf0a2effec423b1e760108f4915abd20d____clipboard_paste_state\": {}, \"reflex___state____state.flexdown___modules____d43dcbae31d42a8299bbb1b1e8633b2c8e325f0604e190a76173507203dcb897____stop_propagation_state\": {\"where_clicked\": []}, \"reflex___state____state.flexdown___modules____91d521f5fc8501f835a43aab2ff7c4d53db7c60884f455eb709ac1d7b400f431____throttle_state\": {\"last_scroll\": null}, \"reflex___state____state.flexdown___modules____45139625453879ccb338f7fe7b01b519c3842d8a088485b4ba11fa1c8f95be5f____radix_form_submission_state\": {\"form_data\": {}, \"form_data_keys\": [], \"form_data_values\": []}, \"reflex___state____state.pcweb___pages___index___demos___demos____demo_state\": {\"demo\": \"Forms\"}, \"reflex___state____state.flexdown___modules____79b816a6ab27782036532a82cae7c07ba456ef322e856d5330bc0942f1baa828____radix_form_state\": {\"email\": \"\", \"input_invalid\": true, \"invalid_email\": true, \"mock_username_db\": [\"reflex\", \"admin\"], \"user_entered_email\": \"\", \"user_entered_username\": \"\", \"username\": \"\", \"username_empty\": true, \"username_is_taken\": false}, \"reflex___state____state.flexdown___modules____18964de36f6eb065e390ad67139695ad5544a78e6aa2d8b6d6d4864c288e40f8____editable_text_demo_state\": {\"value\": \"Global state text\"}, \"reflex___state____state.reflex___istate___dynamic____counter_n2\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____7d9c2931446cff54071c8cbe2f5c33c642db69e69276f9d2380841ee9252cf8b____state4\": {\"users\": [{\"name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"gender\": \"Male\"}, {\"name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"gender\": \"Female\"}], \"users_for_graph\": []}, \"reflex___state____state.flexdown___modules____db896bfd0d2da94f30ae9ad72dea39498948c260f02c7873249bb35aa0494341____moment_state\": {\"date_now\": \"2024-12-04 20:14:59.428108+00:00\"}, \"reflex___state____state.reflex___istate___dynamic____editable_text_n2\": {\"editing\": false, \"original_text\": \"\", \"text\": \"Edit me!\"}, \"reflex___state____state.flexdown___modules____6ec4af8d75edd984322e1c85f321df6c5850144d1aaebf0480209b904e9ff560____popover_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n1\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e9bd9f4fb49eb7bb46d20fc74c2e1c8f685b4814659acb30492112252a27594c____example_state\": {\"color\": \"black\", \"colors\": [\"black\", \"red\", \"green\", \"blue\", \"purple\"], \"index\": 0}, \"reflex___state____state.reflex___state____frontend_event_exception_state\": {}, \"reflex___state____state.flexdown___modules____e6a63672fdcf416b8f73e1c51b315384874f35909cc667448f11a41c97c14825____call_handler_state\": {\"count\": 0, \"progress\": 0}, \"reflex___state____state.flexdown___modules____65b4cef4edcd63e9438ca8451ecb7697f3958fd23aa2740c9c3ccd2183ff8bac____textfield_blur1\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____06767f317063e495780e9bd1c5e5f2bf64dd5232d5cc78a04403a30621d01c2c____nested_state_fe\": {\"projects\": [{\"technologies\": [\"Next.js\", \"Prisma\", \"Tailwind\", \"Google Cloud\", \"Docker\", \"MySQL\"]}, {\"technologies\": [\"Python\", \"Flask\", \"Google Cloud\", \"Docker\"]}]}, \"reflex___state____state.flexdown___modules____e4ff61eb372e991cfc79647f77899cc2a016053f567a359b3a16008a637a13c6____cond_complex_state\": {\"age\": 19}, \"reflex___state____state.flexdown___modules____d77efb4f40d325ae265a1d38838ec45d0d416ee31b2d027b255fd1ec9efe404c____scatter_chart_state2\": {\"data01\": [{\"x\": 100, \"y\": 200, \"z\": 200}, {\"x\": 120, \"y\": 100, \"z\": 260}, {\"x\": 170, \"y\": 300, \"z\": 400}, {\"x\": 170, \"y\": 250, \"z\": 280}, {\"x\": 150, \"y\": 400, \"z\": 500}, {\"x\": 110, \"y\": 280, \"z\": 200}], \"legend_type\": \"circle\", \"legend_types\": [\"square\", \"circle\", \"cross\", \"diamond\", \"star\", \"triangle\", \"wye\"], \"shape\": \"circle\", \"shapes\": [\"square\", \"circle\", \"cross\", \"diamond\", \"star\", \"triangle\", \"wye\"]}, \"reflex___state____state.flexdown___modules____fb75258a82f056ddc70b85e7fcc84c05293fd4165654b28a066af2210bb82218____axis_state\": {\"label_offsets\": [\"-30\", \"-20\", \"-10\", \"0\", \"10\", \"20\", \"30\"], \"label_positions\": [\"center\", \"insideTopLeft\", \"insideTopRight\", \"insideBottomRight\", \"insideBottomLeft\", \"insideTop\", \"insideBottom\", \"insideLeft\", \"insideRight\", \"outside\", \"top\", \"bottom\", \"left\", \"right\"], \"x_axis_offset\": 0, \"x_axis_postion\": \"bottom\", \"y_axis_offset\": 0, \"y_axis_postion\": \"left\"}, \"reflex___state____state.flexdown___modules____7ffc884be18c2458d797db78404946ea0536ec3694d1884a1ed130d510ed5e7b____textfield_controlled\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____e7b47212fba489598986fda7da12acab32b9e156c5a9505d719494e7df7d1fdc____oper_state\": {\"number\": 0, \"numbers_seen\": []}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_vertical_n1\": {\"is_open\": false}, \"reflex___state____state.flexdown___modules____7fb141d05bc34fc03a78f80bf434b0b17d2b0a7359074d6064f1585d349a456b____alert_dialog_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____82910ae9f0efcb985bd65645bd6f9aca58ac8b0a5475d031bd3ba3d59f000446____iter_state\": {\"color\": [\"red\", \"green\", \"blue\"]}, \"reflex___state____state.flexdown___modules____ef44d38ac72501d881cfb5bb37793dbc43c56b7d774727389be47015f03eea3c____flex_grow_shrink_state\": {\"width_pct\": [100]}, \"reflex___state____state.pcweb___templates___docpage___docpage____radix_doc_state\": {\"color\": \"tomato\"}, \"reflex___state____state.flexdown___modules____869480648d68c065c3396065fbea3024497aa833324f212d60a99d0233622bb9____checkbox_state\": {\"checked\": false}, \"reflex___state____state.flexdown___modules____d09a5baea3d91e060f8ce25b6b3e60c48b88ff18339eb20760a3c0aaa51e679d____redirect_example_state\": {}, \"reflex___state____state.flexdown___modules____b092941dc4cce954855150d077e5ad0adeea2cfc3f2ae8f7e09345641267e416____link_prevent_default_state\": {\"status\": false}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____unmount_state\": {\"events\": []}, \"reflex___state____state.flexdown___modules____dddcfa55e99d264326eee44a01fb47ceb22e54d161c5a3233ade15e63f0b7cb8____list_state\": {\"items\": [\"Write Code\", \"Sleep\", \"Have Fun\"], \"new_item\": \"\"}, \"reflex___state____state.flexdown___modules____92d10b6f2ec3796113e599e68837a9b1cbda719a8882511fd5b4d8fdbb493689____my_state3\": {\"count\": 0, \"text\": \"even\"}, \"reflex___state____state.flexdown___modules____f5ab2c9d97455224b63b02fdab5eb7bbb0f654ded6e0192e3359f9366991a240____switch_state\": {\"value\": false}, \"reflex___state____state.flexdown___modules____99a29b452b3e7aa0c0ce8c9f95ea730decaaacb025225ec5d1d0f7795c4b78e8____accordion_state\": {\"item_selected\": \"\", \"value\": \"item_1\"}, \"reflex___state____state.flexdown___modules____a4e3de79f19b87b4f4fce3d5f729c6b6b225d8d968533932d2e49adf411f2694____ticker_state\": {\"price\": \"$150\", \"ticker\": \"AAPL\"}, \"reflex___state____state.flexdown___modules____4de81dd5dc63b8444a72f5f1e8c50ab032b3bd487290bbcad74dfe7719b927f3____redirect2_example_state\": {\"redirect_to_org\": false, \"url\": \"https://github.com/reflex-dev/reflex/\"}, \"reflex___state____state.flexdown___modules____0d58bee5d27b6bfef17a6030fc04f7c979dacb595e3ba004f8772d2c01d5e9f3____context_menu_state\": {\"which_dialog_open\": \"\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_enter\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____df9dc218d0b920248fd7e41384446cce563bae6bd5e8f9c58bb2987a9f3b0086____state5\": {\"users\": [{\"name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"gender\": \"Male\"}, {\"name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"gender\": \"Female\"}], \"users_for_graph\": []}, \"reflex___state____state.flexdown___modules____8d394adcc40b8ef48f331f25c69a99981cb7be3778ca75b8fab287eccb5390a6___ag_grid_editing_state\": {\"data\": []}, \"reflex___state____state.flexdown___modules____5c5f87af873bd517e53dbf5fc95ab79b50c398f659a7b08a0fa0c08b173758b4____dynamic_iter_state\": {\"color\": [\"red\", \"green\", \"blue\"]}, \"reflex___state____state.flexdown___modules____0feff92b06e3c2121c44ed21995363e90475c197c993568449c401f1f2178368____client_storage_state\": {\"custom_cookie\": \"\", \"my_cookie\": \"\", \"my_local_storage\": \"\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____scroll_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____061011ac0daad47822c9531c1be88fc011aab097fc944e0ca2a8860969ddec38____form_radio_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____19641b1fb804b6a9bbd6d1e330d631a4ebf2891298c3f2a07cc248273803d6e9____intro_tabs_state\": {\"tab_selected\": \"\", \"value\": \"tab1\"}, \"reflex___state____state.flexdown___modules____315a72e692ba93947d10ef7bc9f332999f90cf68f29160b32c00f43eee3c0929____form_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____0b72d3c655ee78e5f6ecc7f3f5d8b49ca5813542569ece3947909fb44b5547fe___ag_grid_state2\": {\"data\": []}, \"reflex___state____state.flexdown___modules____7a0cb0b793363448281dc1631ed042c6f857ecb33f0817084b9f514c4a74de6c____lists_state\": {\"list_1\": [1, 2, 3, 4, 6], \"list_2\": [7, 8, 9, 10], \"list_3\": [\"p\", \"y\", \"t\", \"h\", \"o\", \"n\"]}, \"reflex___state____state.flexdown___modules____8af33b82c35a54d4def43b59134b914d76fffbc7b795b752b81e30d23de4e90a____tabs_state\": {\"tab_selected\": \"\", \"value\": \"tab1\"}, \"reflex___state____state.flexdown___modules____161ffdc40a8a0a2548a4f338843eb5037ffa9f3afa8c21d51bdf4de2af567b9b____window_state\": {\"location\": {}, \"scroll_position\": {}}, \"reflex___state____state.flexdown___modules____6a8f943fec4e749846786ea8aba6804432246282f6a462748d59eaaf2c6a211b____multi_match_state\": {\"animal_breed\": \"\", \"animal_options\": [\"persian\", \"siamese\", \"maine coon\", \"pug\", \"corgi\", \"mustang\", \"rahvan\", \"football\", \"golf\"]}, \"reflex___state____state.flexdown___modules____64e19b898cf541d6824e51248a2b190c8522d60f79235b8b1d600077f517de65____event_arg_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____4d8fb930069e8c09c623e08a608e4a6a01f29ac940fc6c26ab540ef9cc088b76____github_state\": {\"profile_image\": \"https://avatars.githubusercontent.com/u/104714959\", \"url\": \"https://github.com/reflex-dev\"}, \"reflex___state____state.flexdown___modules____0956fb940489aadace582871f0e370c55d3d6e49e48683abc3c0ce6551bc5733____foreach_state\": {\"color\": [\"red\", \"green\", \"blue\", \"yellow\", \"orange\", \"purple\"]}, \"reflex___state____state.reflex___istate___dynamic____counter_n5\": {\"count\": 0}, \"reflex___state____state.reflex___istate___dynamic____editable_text_n5\": {\"editing\": false, \"original_text\": \"\", \"text\": \"Click to edit\"}, \"reflex___state____state.flexdown___modules____a259eb1f3061f61271f71bdd035de705ca10291956d2af89a7c2e123e54e00f2____progress_state\": {\"value\": 0}, \"reflex___state____state.flexdown___modules____40b334e1603b81b80b3771ef0f5c95556c9aa8f32b21385c8999176904c8d232____clipboard_paste_image_state\": {\"last_image_uri\": \"\"}, \"reflex___state____state.docs___datatable_tutorial___datatable_tutorial_utils____data_table_state2\": {\"clicked_cell\": \"Cell clicked: \", \"cols\": [{\"title\": \"Title\", \"type\": \"str\", \"width\": 100}, {\"title\": \"Name\", \"type\": \"str\", \"group\": \"Data\", \"width\": 200}, {\"title\": \"Birth\", \"type\": \"str\", \"group\": \"Data\", \"width\": 150}, {\"title\": \"Human\", \"type\": \"bool\", \"group\": \"Data\", \"width\": 80}, {\"title\": \"House\", \"type\": \"str\", \"group\": \"Data\"}, {\"title\": \"Wand\", \"type\": \"str\", \"group\": \"Data\", \"width\": 250}, {\"title\": \"Patronus\", \"type\": \"str\", \"group\": \"Data\"}, {\"title\": \"Blood status\", \"type\": \"str\", \"group\": \"Data\", \"width\": 200}], \"data\": [[\"1\", \"Harry James Potter\", \"31 July 1980\", true, \"Gryffindor\", \"11' Holly phoenix feather\", \"Stag\", \"Half-blood\"], [\"2\", \"Ronald Bilius Weasley\", \"1 March 1980\", true, \"Gryffindor\", \"12' Ash unicorn tail hair\", \"Jack Russell terrier\", \"Pure-blood\"], [\"3\", \"Hermione Jean Granger\", \"19 September, 1979\", true, \"Gryffindor\", \"10¾' vine wood dragon heartstring\", \"Otter\", \"Muggle-born\"], [\"4\", \"Albus Percival Wulfric Brian Dumbledore\", \"Late August 1881\", true, \"Gryffindor\", \"15' Elder Thestral tail hair core\", \"Phoenix\", \"Half-blood\"], [\"5\", \"Rubeus Hagrid\", \"6 December 1928\", false, \"Gryffindor\", \"16' Oak unknown core\", \"None\", \"Part-Human (Half-giant)\"], [\"6\", \"Fred Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"], [\"7\", \"George Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"]], \"deleted\": \"Deleted: \", \"edited_cell\": \"Cell edited: \", \"item_hovered\": \"Item Hovered: \", \"right_clicked_group_header\": \"Group header right clicked: \"}, \"reflex___state____state.flexdown___modules____fcb0aec86d726a74b01ebb9d3b50b096640ebe147909968bae45d7a63d9fa4cc____prop_example_state\": {\"color\": \"red\", \"text\": \"Hello World\"}, \"reflex___state____state.flexdown___modules____c88d213fe6e06cfc1afccea0201353de231f5452942eee3b2b0c525289be85ac____word_cycle_state\": {\"get_text\": \"Welcome\", \"index\": 0, \"text\": [\"Welcome\", \"to\", \"Reflex\", \"!\"]}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____change_state\": {\"checked\": false}, \"reflex___state____state.flexdown___modules____a319e1074a7dc63469021776aaa40957ad64065058826032d37084671de5791e____hovercard_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____4abf1b8eb088e52843e82da531cf8c052faa681aa93edd825f9f863128442b17____cond_state\": {\"show\": true}, \"reflex___state____state.flexdown___modules____9526812f903fc17767eec451a29e5934900bd2784d06459a818fb519ab0c7a1b____database_table_state\": {\"users\": []}, \"reflex___state____state.flexdown___modules____22e163ce0d5ec1e7778da7eb24dd6670f1045476a5796f2fefcb06b1bc5d0ac3____form_input_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____4c8aab1695843a4a3d8fb21517ecfa0db4eb05fd3d7198b986c627f2f2c412d0____database_table_state2\": {\"search_value\": \"\", \"sort_value\": \"\", \"users\": []}, \"reflex___state____state.flexdown___modules____f9308c71cdb8a0e73f76187e36c78f40a5354c23640285683aaf54e5c2a629c3____match_prop_state\": {\"value\": 0}, \"reflex___state____state.flexdown___modules____af976e780831a52cc0e7760f0b9a8382c7f3487e62ca0617ce2f5f7a213fb2e9____form_checkbox_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____753822fc81b2a56eb0807a807e1d23025585b65dd20dc1d89f921edbac47e98a____foreach_cond_state\": {\"to_do_list\": [{\"item_name\": \"Space suit\", \"is_packed\": true}, {\"item_name\": \"Helmet\", \"is_packed\": true}, {\"item_name\": \"Back Pack\", \"is_packed\": false}]}, \"reflex___state____state.flexdown___modules____deb7df4e94dc8954a870a85b748d68a2635d72c11eac33e4177d9093f5db1585____simple_dict_foreach_state\": {\"color_chart\": {\"1\": \"blue\", \"2\": \"red\", \"3\": \"green\"}}, \"reflex___state____state.flexdown___modules____5efbbe10e1751e995cea40d1e9e469f160fcc16d5a4bc19b7c8d459a11bc3c64____comp_state\": {\"number_1\": 0, \"number_2\": 0}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____click_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____d2962adac89dfbe2557aeda1f3184a0ba4475bbb7a2b0783eaa5d3d0cdd5af7c____router_state\": {}, \"reflex___state____state.flexdown___modules____42ac95bbf36f0a2b7cc1437623b4f44ab86ba420709c0a92eefc35c6de826768____complex_dict_foreach_state\": {\"color_chart\": {\"purple\": [\"red\", \"blue\"], \"orange\": [\"yellow\", \"red\"], \"green\": [\"blue\", \"yellow\"]}}, \"reflex___state____state.flexdown___modules____a812bae68e3c616c27af93e636823dfae0c672adbd01cfbd1ab82861b77c8946____alert_dialog_state2\": {\"opened\": false}, \"reflex___state____state.flexdown___modules____4e4b140d00d5da14b4c0259ccf732178f0223e34a8b8f4cbbd7594dc50e3b8fe____dropdown_menu_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____ed65d87e9a14efcc2bec85e5a9fab99fa27b58c0fd456696fb95ec422ef18d3c____tooltip_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____f84454d9b1ab1473ea3d6dd6e24b19119ef8b54808f524d43682ad30d0d9667e____backend_var_state\": {\"limit\": 10, \"offset\": 0, \"page\": [83, 8, 90, 94, 32, 84, 66, 18, 57, 74], \"page_number\": 1, \"total_pages\": 10}, \"reflex___state____state.flexdown___modules____7dea7b58e83a0d0dd62cf4a6d3bd701f9186d7483efceb79c6e37cfb680ce456____setter_state2\": {\"selected\": \"1\"}, \"reflex___state____state.flexdown___modules____db91fbd38f6677ca763e09fac3800fe69cf10e2a2cf9cc266bfad50e55962899____login_state\": {\"logged_in\": false}, \"reflex___state____state.flexdown___modules____23791033e1ae406779e3eaff0e1e61637b860bde94aecbfda4f9ea194c08cf3e____multi_data_type_state\": {\"actresses\": [{\"actress_name\": \"Ariana Grande\", \"age\": 30, \"pages\": [{\"url\": \"arianagrande.com\"}, {\"url\": \"https://es.wikipedia.org/wiki/Ariana_Grande\"}]}, {\"actress_name\": \"Gal Gadot\", \"age\": 38, \"pages\": [{\"url\": \"http://www.galgadot.com/\"}, {\"url\": \"https://es.wikipedia.org/wiki/Gal_Gadot\"}]}]}, \"reflex___state____state.flexdown___modules____650790a946d6b97ac5bbc12b53da6d7ca20ed5437fcbfab5b0aeda11623bb3dc____dialog_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____3ec7e62b8a848b2fd5786c487877303b7cd40bf13f5ad9b9df7313d317676e5c____multi_update_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____48ee1838953051a5d8bc08f19be7a327b0beecafb7c11816bbe1d8a8b15db3be____pie_chart_state\": {\"resource_types\": [\"🏆\", \"🪵\", \"🥑\", \"🧱\"], \"resources\": [{\"type_\": \"🏆\", \"count\": 1}, {\"type_\": \"🪵\", \"count\": 1}, {\"type_\": \"🥑\", \"count\": 1}, {\"type_\": \"🧱\", \"count\": 1}]}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mount_state\": {\"events\": []}, \"reflex___state____state.flexdown___modules____b1dbdc5816a23f7022fdd87528fa30ab0e361091940361a28bd530f5ecad9089____form_switch_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____dc2e5349403317a7db4df1f3637325c9744fbee48a7329349653dc6814928cdc____state1\": {\"users\": [[\"Danilo Sousa\", \"danilo@example.com\", \"Male\"], [\"Zahra Ambessa\", \"zahra@example.com\", \"Female\"]]}, \"reflex___state____state.flexdown___modules____af9754f6514cbfbe7437e4e0ce4652f9a736c7d62c232a7d17b108e06c2b962e____radio_group_state\": {\"item\": \"No Selection\"}, \"reflex___state____state.flexdown___modules____04dcd1282d621006cedb95a163f1cfbe15bb6207981c48352f89dfa733bc3c7e____global_hotkey_state\": {\"key\": \"\"}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n3\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____d0c4115161cd37a28a66245a7941ae9c6de960c5f022a76f124ab40f7e91b717____count_even_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e3f74049203f58f4a223a4dc23089b4e69495158f7308d7f136981f5cdbd4434____table_sorting_state\": {\"current_people\": [{\"full_name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"group\": \"Developer\"}, {\"full_name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"group\": \"Admin\"}, {\"full_name\": \"Jasper Eriks\", \"email\": \"zjasper@example.com\", \"group\": \"B-Developer\"}], \"search_value\": \"\", \"sort_value\": \"\"}, \"reflex___state____state.flexdown___modules____cdacb2a3a50961d989ff4c76c1ff083e150bc03de9df57687725c8450908a8c2____select_state3\": {\"value\": \"apple\", \"values\": [\"apple\", \"grape\", \"pear\"]}, \"reflex___state____state.flexdown___modules____c5b46700a8bd155e715801a5160718ce0d9a83ee5c48d4a7e23c3c1fe7632cdf____get_item_state1\": {\"list_1\": [50, 10, 20]}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_horizontal_n1\": {\"is_open\": false}, \"reflex___state____state.flexdown___modules____5035dc694443427c263304a8eed23203bac55bafda94a5b9ba13b42185247b1d____moment_live_state\": {\"updating\": false}, \"reflex___state____state.flexdown___modules____8d6c664fccbd918b5eb807058f7fe1b5fb2f3cf5394bf9dc2b84b8953bd5e234____form_slider_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____0271e9f899e52f4f80c39447ffef658bfec48576041829219655c0cb5432b013____download_state\": {}, \"reflex___state____state.flexdown___modules____1de38311df0db9173105f16fae323aa11f1d6cc486afc98b43be5ad5b45539ff____projects_state\": {\"projects\": [{\"technologies\": [\"Next.js\", \"Prisma\", \"Tailwind\", \"Google Cloud\", \"Docker\", \"MySQL\"]}, {\"technologies\": [\"Python\", \"Flask\", \"Google Cloud\", \"Docker\"]}]}, \"reflex___state____state.flexdown___modules____8e4d4beb59da08420209695c7d7696a2e581997771b2e26fe19fbbe14f5fce12____funnel_state\": {\"data\": [{\"value\": 100, \"name\": \"Sent\", \"fill\": \"#8884d8\"}, {\"value\": 80, \"name\": \"Viewed\", \"fill\": \"#83a6ed\"}, {\"value\": 50, \"name\": \"Clicked\", \"fill\": \"#8dd1e1\"}, {\"value\": 40, \"name\": \"Add to Cart\", \"fill\": \"#82ca9d\"}, {\"value\": 26, \"name\": \"Purchased\", \"fill\": \"#a4de6c\"}]}, \"reflex___state____state.flexdown___modules____d5b1df5ab880d1671a74936fbf6ca05626dae9f6978cc7fb00d810cede34df27____collatz_state\": {\"count\": 1}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_over\": {\"text\": \"Change Me!\"}, \"reflex___state____state.docs___datatable_tutorial___datatable_tutorial_utils____data_table_state\": {\"clicked_cell\": \"Cell clicked: \", \"cols\": [{\"title\": \"Title\", \"type\": \"str\"}, {\"title\": \"Name\", \"type\": \"str\", \"width\": 300}, {\"title\": \"Birth\", \"type\": \"str\", \"width\": 150}, {\"title\": \"Human\", \"type\": \"bool\", \"width\": 80}, {\"title\": \"House\", \"type\": \"str\"}, {\"title\": \"Wand\", \"type\": \"str\", \"width\": 250}, {\"title\": \"Patronus\", \"type\": \"str\"}, {\"title\": \"Blood status\", \"type\": \"str\", \"width\": 200}], \"data\": [[\"1\", \"Harry James Potter\", \"31 July 1980\", true, \"Gryffindor\", \"11' Holly phoenix feather\", \"Stag\", \"Half-blood\"], [\"2\", \"Ronald Bilius Weasley\", \"1 March 1980\", true, \"Gryffindor\", \"12' Ash unicorn tail hair\", \"Jack Russell terrier\", \"Pure-blood\"], [\"3\", \"Hermione Jean Granger\", \"19 September, 1979\", true, \"Gryffindor\", \"10¾' vine wood dragon heartstring\", \"Otter\", \"Muggle-born\"], [\"4\", \"Albus Percival Wulfric Brian Dumbledore\", \"Late August 1881\", true, \"Gryffindor\", \"15' Elder Thestral tail hair core\", \"Phoenix\", \"Half-blood\"], [\"5\", \"Rubeus Hagrid\", \"6 December 1928\", false, \"Gryffindor\", \"16' Oak unknown core\", \"None\", \"Part-Human (Half-giant)\"], [\"6\", \"Fred Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"], [\"7\", \"George Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"]], \"edited_cell\": \"Cell edited: \"}, \"reflex___state____state.flexdown___modules____2657f7efe022b63d6c1c830575b3fec7daa38de42893dbaba1bdeaa7efce90ad____bar_state\": {\"data\": [{\"name\": \"Page A\", \"uv\": 4000, \"pv\": 2400, \"amt\": 2400}, {\"name\": \"Page B\", \"uv\": 3000, \"pv\": 1398, \"amt\": 2210}, {\"name\": \"Page C\", \"uv\": 2000, \"pv\": 9800, \"amt\": 2290}, {\"name\": \"Page D\", \"uv\": 2780, \"pv\": 3908, \"amt\": 2000}, {\"name\": \"Page E\", \"uv\": 1890, \"pv\": 4800, \"amt\": 2181}, {\"name\": \"Page F\", \"uv\": 2390, \"pv\": 3800, \"amt\": 2500}, {\"name\": \"Page G\", \"uv\": 3490, \"pv\": 4300, \"amt\": 2100}]}, \"reflex___state____state.flexdown___modules____5c0ae5b7babee529487f42767bf4bec8c08d4b8611d3b0cb3e75b3bcb30dbd8a____drawer_state\": {\"is_open\": false}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_reveal_n1\": {\"is_open\": false}, \"reflex___state____state.pcweb___pages___pricing___calculator____billing_state\": {\"cpu_rate\": 0.000463, \"estimated_cpu_number\": 1, \"estimated_ram_gb\": 1, \"estimated_seats\": 1, \"max_cpu\": 5, \"max_ram\": 10, \"max_seats\": 5, \"mem_rate\": 0.000231, \"seat_rate\": 19, \"selected_plan\": \"Pro\"}, \"reflex___state____state.reflex___istate___dynamic____chat_n1\": {\"last_user_message\": \"\", \"messages\": [], \"processing\": false}, \"reflex___state____state.flexdown___modules____3ba12fa161fbef7317bad2af06d26b5e0cea00c1b21a667445fb0bfc8af4576c____control_switch_state\": {\"checked\": true}, \"reflex___state____state.pcweb___pages___customers___views___customers_list____customers_state\": {\"tags\": []}, \"reflex___state____state.flexdown___modules____2960b03a9555bf63d592b0a3fd01196b44c8eeb86b2c0fb21a4e04e5f8948835____range_slider_state\": {\"value_end\": 75, \"value_start\": 25}, \"reflex___state____state.flexdown___modules____a83651895f38fb3dded6a1442c914d1d94eb85c35ad1dbe00eff11578fa11ca9____my_task_state\": {\"counter\": 0, \"max_counter\": 10, \"running\": false}, \"reflex___state____state.pcweb___pages___index___demos___image_gen___image_gen____image_gen_state\": {\"image_url\": \"\", \"processing\": false}}, \"events\": [], \"final\": true}" \ No newline at end of file diff --git a/pcweb/whitelist.py b/pcweb/whitelist.py index c3f74420b..a1c8d2ef3 100644 --- a/pcweb/whitelist.py +++ b/pcweb/whitelist.py @@ -9,7 +9,7 @@ # - Correct: WHITELISTED_PAGES = ["/docs/getting-started/introduction"] # - Incorrect: WHITELISTED_PAGES = ["/docs/getting-started/introduction/"] -WHITELISTED_PAGES = [] +WHITELISTED_PAGES = [] def _check_whitelisted_path(path): if len(WHITELISTED_PAGES) == 0: @@ -27,3 +27,4 @@ def _check_whitelisted_path(path): return True return False + \ No newline at end of file From f7f2dd1065332bd387e45c62bfc509ed451a49c5 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Wed, 4 Dec 2024 20:08:03 -0800 Subject: [PATCH 2/3] Increase badge size --- pcweb/pages/pricing/plan_cards.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcweb/pages/pricing/plan_cards.py b/pcweb/pages/pricing/plan_cards.py index 3f9d0a011..46750f818 100644 --- a/pcweb/pages/pricing/plan_cards.py +++ b/pcweb/pages/pricing/plan_cards.py @@ -139,7 +139,7 @@ def card( return rx.box( rx.hstack( rx.el.h3(title, class_name="font-semibold text-slate-12 text-2xl mb-2"), - rx.badge(price, color_scheme="gray") if price else rx.fragment(), + rx.badge(price, color_scheme="gray", size="3") if price else rx.fragment(), align_items="center", ), rx.el.p( @@ -185,7 +185,7 @@ def popular_card( grid(), rx.hstack( rx.el.h3(title, class_name="font-semibold text-slate-12 text-2xl mb-2"), - rx.badge(price, color_scheme="violet") if price else rx.fragment(), + rx.badge(price, color_scheme="violet", size="3") if price else rx.fragment(), align_items="center", ), rx.el.p(description, class_name="text-sm font-medium text-slate-9 mb-8"), From 1efd464ffd3c0d353a18355631b1680d7d6fc081 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Wed, 4 Dec 2024 20:12:13 -0800 Subject: [PATCH 3/3] clean --- docs/library/graphing/other-charts/plotly.md | 5 ++--- docs/library/graphing/other-charts/pyplot.md | 3 +-- pcweb/pages/state.json | 1 - pcweb/whitelist.py | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) delete mode 100644 pcweb/pages/state.json diff --git a/docs/library/graphing/other-charts/plotly.md b/docs/library/graphing/other-charts/plotly.md index 8d6d50e13..227ac8e7f 100644 --- a/docs/library/graphing/other-charts/plotly.md +++ b/docs/library/graphing/other-charts/plotly.md @@ -10,7 +10,6 @@ import reflex as rx import pandas as pd import plotly.express as px import plotly.graph_objects as go -from typing import Optional ``` Plotly is a graphing library that can be used to create interactive graphs. Use the rx.plotly component to wrap Plotly as a component for use in your web page. Checkout [Plotly](https://plotly.com/graphing-libraries/) for more information. @@ -71,8 +70,8 @@ import pandas as pd class PlotlyState(rx.State): df: pd.DataFrame - figure: Optional[go.Figure] = None - + figure: go.Figure = px.line() + @rx.event def create_figure(self): self.df = px.data.gapminder().query("country=='Canada'") diff --git a/docs/library/graphing/other-charts/pyplot.md b/docs/library/graphing/other-charts/pyplot.md index 8dc1fc0fd..4e8cc7364 100644 --- a/docs/library/graphing/other-charts/pyplot.md +++ b/docs/library/graphing/other-charts/pyplot.md @@ -9,7 +9,6 @@ from reflex_pyplot import pyplot import numpy as np import random import matplotlib.pyplot as plt -from typing import Optional from reflex.style import toggle_color_mode ``` @@ -100,7 +99,7 @@ class PyplotState(rx.State): num_points: int = 100 plot_data: tuple scale: list - fig: Optional[plt.Figure] = None + fig: plt.Figure = plt.Figure() @rx.event def randomize(self): diff --git a/pcweb/pages/state.json b/pcweb/pages/state.json deleted file mode 100644 index 252385456..000000000 --- a/pcweb/pages/state.json +++ /dev/null @@ -1 +0,0 @@ -"{\"delta\": {\"reflex___state____state\": {\"component\": [], \"is_hydrated\": false, \"router\": {\"session\": {\"client_token\": \"55305726-e77a-4698-ab60-4cf2e55184de\", \"client_ip\": \"127.0.0.1\", \"session_id\": \"HhQnQxi5Gyd6RLL5AAAD\"}, \"headers\": {\"host\": \"localhost:8000\", \"origin\": \"http://localhost:3000\", \"upgrade\": \"websocket\", \"connection\": \"Upgrade\", \"cookie\": \"_ga=GA1.1.48616404.1668493090; inkeepUsagePreferences_userId=2zp6q3v22241s5c2q2m5i; _reb2buid=7c9297d0-89e3-4c82-a906-74eb5ed3568a-1733341680955; _reb2bsessionID=wGMkhrm8OsQqqzum6dVFCBMw; _reb2bresolve=1; _reb2bgeo=%7B%22city%22%3A%22San%20Francisco%22%2C%22country%22%3A%22United%20States%22%2C%22countryCode%22%3A%22US%22%2C%22hosting%22%3Afalse%2C%22isp%22%3A%22Webpass%20Inc.%22%2C%22lat%22%3A37.7695%2C%22proxy%22%3Afalse%2C%22region%22%3A%22CA%22%2C%22regionName%22%3A%22California%22%2C%22status%22%3A%22success%22%2C%22timezone%22%3A%22America%2FLos_Angeles%22%2C%22zip%22%3A%2294158%22%7D; ko_id=ac1db620-b6bf-4412-b6d6-65ee9f378094; _li_dcdm_c=.localhost; _lc2_fpi=334389048b87--01je9ke67xgy1zqyd6hza9m4ef; _reb2btd=MDQ5OWI4O0OV0VHLWZX6ZTBlNjUwYjljZDNhNTc2Mjg5MjE2MjY0NjE=; _reb2bref=http://localhost:3000/; ph_phc_JoMo0fOyi0GQAooY3UyO9k0hebGkMyFJrrCw1Gt5SGb_posthog=%7B%22distinct_id%22%3A%2201939337-1521-7876-ae03-f4c34e28e56e%22%2C%22%24sesid%22%3A%5B1733343380463%2C%2201939337-1520-7261-9e35-2cafe7828f3a%22%2C1733341680928%5D%2C%22%24initial_person_info%22%3A%7B%22r%22%3A%22%24direct%22%2C%22u%22%3A%22http%3A%2F%2Flocalhost%3A3000%2F%22%7D%7D; _ga_4T7C8ZD9TR=GS1.1.1733341681.34.1.1733343380.0.0.0; ko_sid={%22id%22:%221733341681642%22%2C%22lastTouched%22:1733343380488}\", \"pragma\": \"no-cache\", \"cache_control\": \"no-cache\", \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\", \"sec_websocket_version\": \"13\", \"sec_websocket_key\": \"5eiUC6nyWVzWaNvvRwxu7Q==\", \"sec_websocket_extensions\": \"permessage-deflate; client_max_window_bits\", \"accept_encoding\": \"gzip, deflate, br, zstd\", \"accept_language\": \"en-US,en;q=0.9\"}, \"page\": {\"host\": \"http://localhost:3000\", \"path\": \"/\", \"raw_path\": \"/\", \"full_path\": \"http://localhost:3000/\", \"full_raw_path\": \"http://localhost:3000/\", \"params\": {}}}}, \"reflex___state____state.flexdown___modules____554a86015cee567d85d844ce5022d82903fd0dbfce1b784281f93e2812a4a174____streaming_state\": {\"data\": [{\"name\": \"A\", \"uv\": 10, \"pv\": 110, \"amt\": 210}, {\"name\": \"B\", \"uv\": 20, \"pv\": 120, \"amt\": 230}, {\"name\": \"C\", \"uv\": 30, \"pv\": 120, \"amt\": 240}, {\"name\": \"D\", \"uv\": 30, \"pv\": 130, \"amt\": 210}, {\"name\": \"E\", \"uv\": 20, \"pv\": 140, \"amt\": 230}, {\"name\": \"F\", \"uv\": 40, \"pv\": 170, \"amt\": 250}, {\"name\": \"G\", \"uv\": 50, \"pv\": 190, \"amt\": 260}], \"stream\": false}, \"reflex___state____state.flexdown___modules____77512fdbb9aed0a5cc8ba757dd5cb1c675a5b85f76ede06e8033cce7fc1ff399____match_multi_prop_state\": {\"value\": 0}, \"reflex___state____state.pcweb___components___docpage___sidebar___state____sidebar_state\": {\"sidebar_index\": 0}, \"reflex___state____state.flexdown___modules____522eacba5ffc4dbf8eb568cb69bde1e61e9fe65a48aa41b6fb48a803987139bf____debounce_state\": {\"settled_value\": 50}, \"reflex___state____state.flexdown___modules____238ce12f717a1e7f1d92bf0a6e08c6d6fc4a853f2388d8b9936325f39229e520____my_state\": {\"color\": \"red\", \"count\": 0}, \"reflex___state____state.pcweb___github____github_star_state\": {\"stars\": \"20523\", \"stars_short\": \"21K\"}, \"reflex___state____state.reflex___state____on_load_internal_state\": {}, \"reflex___state____state.pcweb___components___docpage___navbar___state____navbar_state\": {\"ai_chat\": true, \"banner\": true, \"current_category\": \"All\", \"enter\": false, \"search_input\": \"\", \"sidebar_open\": false}, \"reflex___state____state.flexdown___modules____e468334e4745e5407327d6bd2166b076ff9df422b278960a8e5d6d20d6a92e6c____nested_state\": {\"num\": 0}, \"reflex___state____state.flexdown___modules____4595ce4851047548bcf44a3b33abcb3a9667563081c1d4e13fe5c008b79799fa____react_flow_state\": {\"edges\": [{\"id\": \"e1-2\", \"source\": \"1\", \"target\": \"2\", \"label\": \"*\", \"animated\": true}, {\"id\": \"e2-3\", \"source\": \"2\", \"target\": \"3\", \"label\": \"+\", \"animated\": true}], \"nodes\": [{\"id\": \"1\", \"type\": \"input\", \"data\": {\"label\": \"150\"}, \"position\": {\"x\": 250, \"y\": 25}}, {\"id\": \"2\", \"data\": {\"label\": \"25\"}, \"position\": {\"x\": 100, \"y\": 125}}, {\"id\": \"3\", \"type\": \"output\", \"data\": {\"label\": \"5\"}, \"position\": {\"x\": 250, \"y\": 250}}]}, \"reflex___state____state.reflex___istate___dynamic____editable_text_n1\": {\"editing\": false, \"original_text\": \"\", \"text\": \"Click to edit\"}, \"reflex___state____state.flexdown___modules____9fcacc2475c1799c581de6037cf540337e700849919e6e0f701fb43db3da9ab6____scatter_chart_state\": {\"data\": []}, \"reflex___state____state.flexdown___modules____10ca73f56a11397258d41703a5e6506bf428da5e0058c878ecac7f1e6ce07a6e____text_area_feedback_state\": {\"feedback\": \"\", \"submitted\": false}, \"reflex___state____state.flexdown___modules____bc4788334c048b6b22992f5ccc42f85f2d1e11b9ed383660da4f034d8369ab61____setter_state1\": {\"selected\": \"1\"}, \"reflex___state____state.pcweb___templates___docpage___state____feedback_state\": {\"score\": null}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_menu_n1\": {\"is_open\": false}, \"reflex___state____state.docs___getting_started___chat_tutorial_utils____chatapp_state\": {\"chat_history\": [], \"question\": \"\"}, \"reflex___state____state.flexdown___modules____b7301982a3d1990072853bba6f9590168dccf2d2ecddc9697ba30f7fd91d54ef____state\": {\"current_user\": {\"id\": null, \"name\": null, \"email\": null}}, \"reflex___state____state.reflex___istate___dynamic____top_banner_signup_n1\": {\"hide\": false}, \"reflex___state____state.flexdown___modules____8b47317fb13d48cea98e3c2cb4d2a7f37d7996809f9df60a6ab5de7d824157b0____list_state\": {\"items\": [\"Apple\", \"Banana\", \"Cherry\"]}, \"reflex___state____state.flexdown___modules____529bb5b84bb33370309341dc179c631b51c581e957fc7f05bc3d6b9e254bcbde____state2\": {\"users\": [{\"name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"gender\": \"Male\"}, {\"name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"gender\": \"Female\"}]}, \"reflex___state____state.pcweb___pages___docs___custom_components____custom_component_gallery_state\": {\"components_list\": [], \"original_components_list\": [], \"selected_filter\": \"\", \"tags\": []}, \"reflex___state____state.flexdown___modules____7a5642c6ae562eea7f008fd8848149ee0da5a8b09d78d5a46ed9cd7948c30b91____slider_state\": {\"value\": 50}, \"reflex___state____state.flexdown___modules____e9ab838f5c2e034fc5e2149b8c0d1760052824c4a63792671f9da44ea26465dc____radar_chart_state\": {\"remaining_points\": 10, \"total_points\": 100, \"trait_names\": [\"Strength\", \"Dexterity\", \"Constitution\", \"Intelligence\", \"Wisdom\", \"Charisma\"], \"traits\": [{\"trait\": \"Strength\", \"value\": 15}, {\"trait\": \"Dexterity\", \"value\": 15}, {\"trait\": \"Constitution\", \"value\": 15}, {\"trait\": \"Intelligence\", \"value\": 15}, {\"trait\": \"Wisdom\", \"value\": 15}, {\"trait\": \"Charisma\", \"value\": 15}]}, \"reflex___state____state.flexdown___modules____4466a2027c3c0327703877fff547449de60a819c2f08d8948144a934a2fd0331____simple_dict_iter_state\": {\"color_chart\": {\"sky\": \"blue\", \"balloon\": \"red\", \"grass\": \"green\"}}, \"reflex___state____state.flexdown___modules____4cdab5d320979b92531baf339d9c6d89d4985304b4c0b728fb668c68074013b9____state3\": {\"users\": [{\"name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"gender\": \"Male\"}, {\"name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"gender\": \"Female\"}]}, \"reflex___state____state.flexdown___modules____ae145477bcd462515f98d7f6c698d8c88aaabd3dcf1b31963e489c342a95f335____live_slider_state\": {\"value\": 50}, \"reflex___state____state.flexdown___modules____308bb72fb33890094f0f45fdda67678b40be0a75d832612e071317dc9c1d9892____dropdown_menu_state2\": {\"which_dialog_open\": \"\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_move\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____1a1c7132c5e55ab03b5fffd51fed997ab81abfa9e48e9740744655079b76eec3___ag_grid_theme_state\": {\"theme\": \"quartz\", \"themes\": [\"quartz\", \"balham\", \"alpine\", \"material\"]}, \"reflex___state____state.flexdown___modules____fd9c8577a183317f1004e278dd8edce5dc6716c8756b2050954e6287a3509588____greeter_state\": {\"message\": \"\"}, \"reflex___state____state.pcweb___signup____index_state\": {\"show_confetti\": false, \"signed_up\": false}, \"reflex___state____state.flexdown___modules____c45e09fd3199c11139682d1e04bbfa063ad1bc2d958a26debd728e49f28e930a____form_select_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_leave\": {\"text\": \"Change Me!\"}, \"reflex___state____state.pcweb___pages___index___demos___chatbot___chatbot____tutorial_state\": {\"chat_history\": [[\"What is Reflex?\", \"Reflex is the open-source framework empowering Python developers to build web apps faster.\"]]}, \"reflex___state____state.flexdown___modules____daa818a9dbede74f225f644a8086952b7f39413c64101e1c7380f4c80ecb2917____area_state\": {\"curve_type\": \"\", \"data\": [{\"name\": \"Page A\", \"uv\": 4000, \"pv\": 2400, \"amt\": 2400}, {\"name\": \"Page B\", \"uv\": 3000, \"pv\": 1398, \"amt\": 2210}, {\"name\": \"Page C\", \"uv\": 2000, \"pv\": 9800, \"amt\": 2290}, {\"name\": \"Page D\", \"uv\": 2780, \"pv\": 3908, \"amt\": 2000}, {\"name\": \"Page E\", \"uv\": 1890, \"pv\": 4800, \"amt\": 2181}, {\"name\": \"Page F\", \"uv\": 2390, \"pv\": 3800, \"amt\": 2500}, {\"name\": \"Page G\", \"uv\": 3490, \"pv\": 4300, \"amt\": 2100}]}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____double_click_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____b94d026ceb15a79092d643277782e0cc4c692d0e919c3161dbd5cbb5413e37ea____line_chart_state\": {\"data\": [{\"name\": \"Page A\", \"uv\": 4000, \"pv\": 2400, \"amt\": 2400}, {\"name\": \"Page B\", \"uv\": 3000, \"pv\": 1398, \"amt\": 2210}, {\"name\": \"Page C\", \"uv\": 2000, \"pv\": 9800, \"amt\": 2290}, {\"name\": \"Page D\", \"uv\": 2780, \"pv\": 3908, \"amt\": 2000}, {\"name\": \"Page E\", \"uv\": 1890, \"pv\": 4800, \"amt\": 2181}, {\"name\": \"Page F\", \"uv\": 2390, \"pv\": 3800, \"amt\": 2500}, {\"name\": \"Page G\", \"uv\": 3490, \"pv\": 4300, \"amt\": 2100}], \"pv_type\": \"monotone\", \"uv_type\": \"monotone\"}, \"reflex___state____state.flexdown___modules____7e3ec7761aaa9cf4db470318e4eac62597d317de3a8104e41fbffd72cdc39377____text_state\": {\"text\": \"\"}, \"reflex___state____state.flexdown___modules____da2db8e386a953e9a95c793fcfd674b08cc595219e9402c844dfee350b968445____uppercase_state\": {\"text\": \"hello\", \"upper_text\": \"HELLO\"}, \"reflex___state____state.flexdown___modules____155312cdcda30884589ac85e5dcd2257cc4160a6c6bbaa14747853127f73fb46____dynamic_form_state\": {\"form_data\": {}, \"form_field_placeholders\": [\"First Name\", \"Last Name\", \"Email\"], \"form_fields\": [\"first_name\", \"last_name\", \"email\"]}, \"reflex___state____state.flexdown___modules____7ac7a00ce4ef68c49c7d19e5dc1c33f73a0c0eef542b7dcda1f9089247ab7ecb____progress_example_state\": {\"count\": 0, \"show_progress\": false}, \"reflex___state____state.flexdown___modules____704bfc9b2e737551fa64e5405aa98b8a360a9dcd554c91b425b3ad05a1caf6ef____logic_state\": {\"var_1\": true, \"var_2\": true}, \"reflex___state____state.pcweb___pages___index___demos___charts___charts____charts_state\": {\"data\": [{\"month\": \"Jan\", \"Mobile\": 470, \"Desktop\": 486}, {\"month\": \"Feb\", \"Mobile\": 399, \"Desktop\": 418}, {\"month\": \"Mar\", \"Mobile\": 465, \"Desktop\": 502}, {\"month\": \"Apr\", \"Mobile\": 268, \"Desktop\": 452}, {\"month\": \"May\", \"Mobile\": 484, \"Desktop\": 428}, {\"month\": \"Jun\", \"Mobile\": 468, \"Desktop\": 502}, {\"month\": \"Jul\", \"Mobile\": 490, \"Desktop\": 696}]}, \"reflex___state____state.flexdown___modules____b2330b91905eabebcbc5550636300d3c919a1a2838e58f58f95c251dff5b0cb0____table_for_each_state\": {\"people\": [[\"Danilo Sousa\", \"danilo@example.com\", \"Developer\"], [\"Zahra Ambessa\", \"zahra@example.com\", \"Admin\"], [\"Jasper Eriks\", \"jasper@example.com\", \"Developer\"]]}, \"reflex___state____state.flexdown___modules____62fddbde02b7efd09c1997eec9ef5232dd7c5a6b9b763a1b5afbdb3c297c4386____select_state8\": {\"is_open\": false}, \"reflex___state____state.flexdown___modules____9782a858cabf7ee2b7cf05d8857473ece81fee577a96fa5360120b0af778cb04____data_editor_state_hp\": {\"clicked_data\": \"Cell clicked: \", \"cols\": [{\"title\": \"Title\", \"type\": \"str\"}, {\"title\": \"Name\", \"type\": \"str\", \"group\": \"Data\", \"width\": 300}, {\"title\": \"Birth\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\", \"width\": 150}, {\"title\": \"Human\", \"type\": \"bool\", \"group\": \"Data\", \"width\": 80}, {\"title\": \"House\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\"}, {\"title\": \"Wand\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\", \"width\": 250}, {\"title\": \"Patronus\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\"}, {\"title\": \"Blood status\", \"type\": \"str\", \"id\": \"date\", \"group\": \"Data\", \"width\": 200}], \"data\": [[\"1\", \"Harry James Potter\", \"31 July 1980\", true, \"Gryffindor\", \"11' Holly phoenix feather\", \"Stag\", \"Half-blood\"], [\"2\", \"Ronald Bilius Weasley\", \"1 March 1980\", true, \"Gryffindor\", \"12' Ash unicorn tail hair\", \"Jack Russell terrier\", \"Pure-blood\"], [\"3\", \"Hermione Jean Granger\", \"19 September, 1979\", true, \"Gryffindor\", \"10¾' vine wood dragon heartstring\", \"Otter\", \"Muggle-born\"], [\"4\", \"Albus Percival Wulfric Brian Dumbledore\", \"Late August 1881\", true, \"Gryffindor\", \"15' Elder Thestral tail hair core\", \"Phoenix\", \"Half-blood\"], [\"5\", \"Rubeus Hagrid\", \"6 December 1928\", false, \"Gryffindor\", \"16' Oak unknown core\", \"None\", \"Part-Human (Half-giant)\"], [\"6\", \"Fred Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"]]}, \"reflex___state____state.flexdown___modules____2c8df49edba8b79342222b8004492d749bf8912bb7056efddba3f9bd2bb12558____select_state\": {\"value\": \"apple\"}, \"reflex___state____state.flexdown___modules____88e75f035518c4beaef238b6b4e6b37a59e3ed1ac690b89f3146a68c6715ad68____ag_grid_state\": {\"all_columns\": [], \"column_defs\": [], \"n_clicks\": 0, \"two_columns\": []}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n6\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e1fe8469721b372a716058023b994d8729a5677af89a7cd52560ce6654069c04____segmented_state\": {\"control\": \"test\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_out\": {\"text\": \"Change Me!\"}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n2\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e49a77f5b7993a34578ab10bd74f19082922fd04d21f4e3c74c33c704d2431f3____index2_state\": {\"language\": \"EN\"}, \"reflex___state____state.reflex___istate___dynamic____top_banner_newsletter_n1\": {\"hide\": false}, \"reflex___state____state.flexdown___modules____84f0789681e958ef765a0466b50c6191b483adf6bc9265822ad269042ac18e6b____special_events_state\": {}, \"reflex___state____state.flexdown___modules____28301499a77e36a92fdfe6d826c5c7ad7131e99bdd058393c350036af9f77775____match_state\": {\"animal_options\": [\"persian\", \"siamese\", \"maine coon\", \"ragdoll\", \"pug\", \"corgi\"], \"cat_breed\": \"\"}, \"reflex___state____state.flexdown___modules____6ecc00be167e37146435fb63a874cfb324d26d2ce462c593fe15ceebdba45b64____database_table_state3\": {\"limit\": 3, \"offset\": 0, \"page_number\": 1, \"total_items\": 0, \"total_pages\": 0, \"users\": []}, \"reflex___state____state.flexdown___modules____3200fa34374dc909195ea27ce00d24f39dc1dbaafc97fff514b1e3e892d0a3f5____toast_state\": {}, \"reflex___state____state.flexdown___modules____4cca1fe912afc54408223460980bf7a13121704e2a912131bfee015691755d6e____equals_state\": {\"favorite\": \"Banana\", \"selected\": \"Apple\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____blur_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.reflex___istate___dynamic____counter_n4\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____3bb5eebb2c03978582d41e152b9ac7c560ec3d4e9d0b947f47be231a335ebad0____cond_simple_state\": {\"show\": true}, \"reflex___state____state.flexdown___modules____4300ff9d706f81d2812d7d35f7734b415e4bf240055db1e369e86c1310b74bfb____textfield_blur\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____d3c6679584a308a79c140dc95f0e2615da781258367e2bacb047196de47506fd____state\": {\"current_user\": {\"id\": null, \"name\": null, \"email\": null}}, \"reflex___state____state.reflex___state____update_vars_internal_state\": {}, \"reflex___state____state.flexdown___modules____c7286644ff07923154e581d718ea3dfd8fa62d0ff05209c23a9fc2e6211746db____iter_index_state\": {\"color\": [\"red\", \"green\", \"blue\"]}, \"reflex___state____state.flexdown___modules____54bcdadfa6bbd24a09a564af8bc4c2959207196f31b04dc0f8cf87004934ba83____nested_dict_iter_state\": {\"color_chart\": {\"purple\": [\"red\", \"blue\"], \"orange\": [\"yellow\", \"red\"], \"green\": [\"blue\", \"yellow\"]}}, \"reflex___state____state.flexdown___modules____41e3ad30e71217fa430f980dc0f20056c25da3552f6d205dc5bd69aa133c3b96____text_area_blur\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____e131b7101e00531d354c8b0e39e5f02faf497446b0e16b878403b58c2a4c43f7____string_state\": {\"string_1\": \"PYTHON is FUN\", \"string_2\": \"react is hard\"}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_vertical_text_n1\": {\"is_open\": false}, \"reflex___state____state.flexdown___modules____31555626f85fb4f013ca16d45f28e30a9d7206e89990d576d2b76e2b32cf99ef____editor_state\": {\"content\": \"

Editor content

\"}, \"reflex___state____state.flexdown___modules____36fee42194b39feb7e2e7099df9adc29651f5c587acea7e1c04748fba3c356e3____translation_state\": {\"current_translation\": {\"original_text\": \"\", \"translated_text\": \"\"}, \"input_text\": \"Hola Mundo\"}, \"reflex___state____state.flexdown___modules____0e871acbbf94fa3bd88fe5858053c9836022e899b3993c7c61f319d2957f64df____single_selection_chips_state\": {\"selected_item\": \"\"}, \"reflex___state____state.pcweb___pages___docs___component____prop_docs_state\": {\"a_00328ce5\": \"1\", \"a_011af72a\": \"start\", \"a_01d54579\": \"start\", \"a_02d20bbd\": false, \"a_031b4af5\": \"ltr\", \"a_043066da\": \"row\", \"a_05ada863\": \"nowrap\", \"a_08490295\": \"tomato\", \"a_093434a3\": false, \"a_09895de0\": \"tomato\", \"a_0a2d643b\": false, \"a_0a5b046d\": \"row\", \"a_0b918943\": false, \"a_0e17daca\": \"none\", \"a_0e652381\": \"start\", \"a_0f4121d0\": false, \"a_0f8ef337\": false, \"a_0fd42b3f\": false, \"a_0fecf924\": \"0\", \"a_108c995b\": \"1\", \"a_114bd151\": \"partial\", \"a_1253e937\": false, \"a_13671077\": \"classic\", \"a_138d9e80\": false, \"a_14063697\": false, \"a_16badfc6\": \"ltr\", \"a_16dc368a\": \"classic\", \"a_19581e27\": false, \"a_1a656259\": \"vertical\", \"a_1be00341\": \"tomato\", \"a_1c6c0bb2\": \"light\", \"a_1d0ebea5\": \"start\", \"a_1d28c120\": \"start\", \"a_1da51b8d\": \"1\", \"a_1dfacb2e\": \"tomato\", \"a_1e472b39\": \"start\", \"a_1e68ed4e\": false, \"a_210e3b16\": \"nowrap\", \"a_2397346b\": false, \"a_23c657f2\": \"left\", \"a_25fc0e70\": \"classic\", \"a_2747b7c7\": false, \"a_27badc98\": \"tomato\", \"a_27d719c7\": \"1\", \"a_27e16152\": \"tomato\", \"a_2811745d\": \"0\", \"a_284de502\": \"start\", \"a_2858dcd1\": \"1\", \"a_28dae7c8\": false, \"a_29db0c67\": false, \"a_2abaca49\": \"1\", \"a_2ac878b0\": \"top\", \"a_2c624232\": \"tomato\", \"a_2c7d5490\": false, \"a_2fca346d\": false, \"a_3038bfb5\": false, \"a_303c8bd5\": \"left\", \"a_3068430d\": \"nowrap\", \"a_31489056\": \"single\", \"a_314f04b3\": \"solid\", \"a_3346f2bb\": \"1\", \"a_33512007\": false, \"a_349c4120\": false, \"a_35135aaa\": \"vertical\", \"a_3635a91e\": \"1\", \"a_36790ecd\": \"tomato\", \"a_36ebe205\": \"none\", \"a_37834f2f\": \"none\", \"a_37c20f19\": false, \"a_38b2d03f\": \"start\", \"a_38d66d96\": \"classic\", \"a_396f8044\": \"partial\", \"a_39bb88f4\": \"start\", \"a_39fa9ec1\": \"tomato\", \"a_3a1dfb05\": \"tomato\", \"a_3ada92f2\": \"classic\", \"a_3d3286f7\": \"x\", \"a_3d914f93\": \"classic\", \"a_3e1e967e\": \"classic\", \"a_3f9807cb\": \"border-box\", \"a_3fdba35f\": \"tomato\", \"a_41cfc0d1\": \"automatic\", \"a_41e521ad\": \"0\", \"a_434c9b5a\": \"classic\", \"a_43974ed7\": false, \"a_44c8031c\": \"0\", \"a_44cb730c\": \"tomato\", \"a_4523540f\": \"tomato\", \"a_454f63ac\": \"item-aligned\", \"a_4621c1d5\": false, \"a_482d9673\": false, \"a_48449a14\": false, \"a_49d180ec\": \"tomato\", \"a_4a44dc15\": \"none\", \"a_4a8596a7\": \"nowrap\", \"a_4b227777\": false, \"a_4be84111\": \"light\", \"a_4c970004\": \"surface\", \"a_4e074085\": \"tomato\", \"a_4ec9599f\": false, \"a_4fc82b26\": \"1\", \"a_51e8ea28\": \"1\", \"a_52f11620\": \"nowrap\", \"a_5316ca1c\": false, \"a_535fa30d\": \"tomato\", \"a_56f4da26\": false, \"a_580811fa\": \"0\", \"a_5966abd0\": \"1\", \"a_59e19706\": \"none\", \"a_5a39cadd\": \"solid\", \"a_5cf4e26b\": false, \"a_5d389f5e\": \"1\", \"a_5ec1a0c9\": \"1\", \"a_5ef6fdf3\": \"1\", \"a_5f9c4ab0\": \"tomato\", \"a_61a229ba\": \"row\", \"a_6208ef0f\": \"1\", \"a_620c9c33\": \"start\", \"a_624b60c5\": \"auto\", \"a_6566230e\": \"1\", \"a_65a69990\": \"vertical\", \"a_670671cd\": false, \"a_67e9c3ac\": false, \"a_684fe39f\": false, \"a_68519a9e\": \"start\", \"a_69f59c27\": false, \"a_6af1f692\": false, \"a_6affdae3\": \"none\", \"a_6b51d431\": \"soft\", \"a_6b86b273\": \"solid\", \"a_6c658ee8\": \"solid\", \"a_6e400187\": \"tomato\", \"a_6f4b6612\": \"normal\", \"a_70260742\": \"1\", \"a_7045d16a\": \"nowrap\", \"a_71812781\": \"normal\", \"a_71a1c003\": \"auto\", \"a_71ee45a3\": \"classic\", \"a_72440a20\": \"1\", \"a_73475cb4\": false, \"a_734d0759\": \"row\", \"a_73d3f1ba\": \"tomato\", \"a_749fc650\": \"1\", \"a_7559ca4a\": \"ltr\", \"a_766cb53c\": false, \"a_7688b6ef\": \"tomato\", \"a_768b84ef\": false, \"a_76a50887\": \"ltr\", \"a_785f3ec7\": \"start\", \"a_7902699b\": \"1\", \"a_79bf0868\": \"partial\", \"a_79d6eaa2\": \"0\", \"a_7a61b537\": \"vertical\", \"a_7b1a278f\": false, \"a_7b697596\": \"row\", \"a_7c252ab3\": \"start\", \"a_7ed8f0f3\": \"start\", \"a_7f0a2211\": \"normal\", \"a_7f2253d7\": false, \"a_802b906a\": false, \"a_80c3cd40\": \"horizontal\", \"a_811786ad\": \"1\", \"a_81b8a03f\": \"none\", \"a_82416496\": \"classic\", \"a_82c01ce1\": \"top\", \"a_835d5e83\": false, \"a_83f814f7\": false, \"a_84a5092e\": \"top\", \"a_8527a891\": false, \"a_85daaf6f\": \"start\", \"a_86e50149\": false, \"a_87226162\": \"badInput\", \"a_89aa1e58\": \"classic\", \"a_8acc2398\": \"1\", \"a_8ae4c23b\": false, \"a_8b496bf9\": \"light\", \"a_8b940be7\": false, \"a_8bcbb4c1\": false, \"a_8c1f1046\": \"tomato\", \"a_8cd25102\": \"row\", \"a_8d27ba37\": false, \"a_8df66f64\": false, \"a_8e612bd1\": \"1\", \"a_8f1f64db\": false, \"a_922c7954\": false, \"a_9400f1b2\": \"horizontal\", \"a_9512d95d\": false, \"a_9537f32e\": false, \"a_9556b824\": false, \"a_96061e92\": false, \"a_968076be\": \"partial\", \"a_98010bd9\": \"tomato\", \"a_98a3ab7c\": false, \"a_9a049b03\": \"top\", \"a_9ae2bdd7\": \"0\", \"a_9b871512\": false, \"a_9bdb2af6\": \"classic\", \"a_9d693eee\": false, \"a_9e6a7255\": \"1\", \"a_9f14025a\": false, \"a_9f1f9dce\": \"tomato\", \"a_9f484139\": \"top\", \"a_a0d177b4\": \"p\", \"a_a0eaec5a\": false, \"a_a21855da\": false, \"a_a30f4ef4\": \"start\", \"a_a46e3763\": \"tomato\", \"a_a4e00d7e\": \"1\", \"a_a512db27\": \"0\", \"a_a665a459\": false, \"a_a68b412c\": \"0\", \"a_a88a7902\": \"none\", \"a_ad48ff99\": false, \"a_ad573668\": false, \"a_aea92132\": \"none\", \"a_af180e43\": \"normal\", \"a_b1556dea\": \"none\", \"a_b17ef6d1\": \"soft\", \"a_b4944c6f\": \"1\", \"a_b4bbe448\": false, \"a_b7a56873\": \"classic\", \"a_b8aed072\": \"start\", \"a_bb668ca9\": \"0\", \"a_bba58959\": \"tomato\", \"a_bbb965ab\": \"row\", \"a_bc52dd63\": \"1\", \"a_bdd2d3af\": \"tomato\", \"a_be47addb\": \"surface\", \"a_bfa76346\": \"start\", \"a_c0509a48\": false, \"a_c17edaae\": false, \"a_c2356069\": \"1\", \"a_c6f3ac57\": \"single\", \"a_c75cb66a\": false, \"a_c75d3f1f\": false, \"a_c75de23d\": \"row\", \"a_c76b4057\": false, \"a_c837649c\": false, \"a_cba28b89\": \"start\", \"a_cd70bea0\": false, \"a_d029fa3a\": false, \"a_d29d5370\": false, \"a_d2f48367\": \"none\", \"a_d4735e3a\": \"1\", \"a_d48ff4b2\": \"partial\", \"a_d4ee9f58\": false, \"a_d59eced1\": \"tomato\", \"a_d6061bbe\": \"start\", \"a_d6a40317\": \"none\", \"a_d6d824ab\": false, \"a_d6e5a20b\": \"partial\", \"a_d6f0c71e\": false, \"a_d7cdaa5c\": \"light\", \"a_d80eae6e\": \"tomato\", \"a_d86580a5\": \"1\", \"a_d8d17907\": false, \"a_da4ea2a5\": false, \"a_dac53c17\": \"0\", \"a_dbae772d\": false, \"a_dbb1ded6\": false, \"a_dfe62e83\": \"partial\", \"a_e0850a77\": false, \"a_e0f05da9\": \"1\", \"a_e29c9c18\": false, \"a_e3d6c4d4\": false, \"a_e5b861a6\": \"item-aligned\", \"a_e629fa65\": \"1\", \"a_e7866fdc\": false, \"a_e7f6c011\": \"solid\", \"a_e888a676\": \"start\", \"a_ea5b2755\": \"classic\", \"a_eb1e33e8\": \"1\", \"a_eb3be230\": false, \"a_eb624dbe\": \"1\", \"a_ec2e990b\": \"start\", \"a_ee62de25\": \"1\", \"a_eeca91fd\": \"tomato\", \"a_ef2d127d\": \"none\", \"a_efd96aed\": \"light\", \"a_f0bc318f\": \"start\", \"a_f369cb89\": \"classic\", \"a_f57e5cb1\": false, \"a_f5ca38f7\": \"1\", \"a_f6e0a1e2\": \"tomato\", \"a_f747870a\": \"tomato\", \"a_f74efabe\": \"tomato\", \"a_f8809aff\": \"start\", \"a_fa2b7af0\": false, \"a_fc56dbc6\": \"top\", \"a_ff2ccb6b\": \"start\", \"a_ff5a1ae0\": false}, \"reflex___state____state.reflex___istate___dynamic____chat_n2\": {\"last_user_message\": \"\", \"messages\": [], \"processing\": false}, \"reflex___state____state.flexdown___modules____cd71beb49c528689f02f80a07594c95c2b543299de61012f281b8b06941a9bb6____prop_cond_state\": {\"value\": 0}, \"reflex___state____state.reflex___istate___dynamic____top_banner_basic_n1\": {\"hide\": false}, \"reflex___state____state.flexdown___modules____0673b8b8352e75c4d2b91b4c7fc1dc309cc34d595af3f190cc2ccfcdf9d82b30____basic_chips_state\": {\"selected_items\": [\"Data Management\", \"Networking\", \"Security\"]}, \"reflex___state____state.reflex___istate___dynamic____top_banner_gradient_n1\": {\"hide\": false}, \"reflex___state____state.reflex___istate___dynamic____editable_text_n3\": {\"editing\": false, \"original_text\": \"\", \"text\": \"Reflex is fun\"}, \"reflex___state____state.flexdown___modules____d6f7ece467a3aa5b7ce5cdb063efd51a3f9cfe2bc86f7327fc0fe70757e35e37____cached_var_state\": {\"counter_a\": 0, \"counter_b\": 0, \"last_counter_a_update\": \"0 at 12:16:23\", \"last_counter_b_update\": \"0 at 12:16:23\", \"last_touch_time\": \"12:16:23\"}, \"reflex___state____state.pcweb___pages___sales____form_state\": {\"email_sent\": false, \"is_loading\": false}, \"reflex___state____state.flexdown___modules____e48f8e775de5846317af716cdd2a326cec7a674e7563efa5b65600f9877ba58d____div_state\": {\"number_1\": 3.5, \"number_2\": 1.4}, \"reflex___state____state.flexdown___modules____15da7858c2fa270395edbbcf064f56ee482bf72ac8ba56a36e5d10a8a451b3b8____match_state\": {\"animal_options\": [\"persian\", \"siamese\", \"maine coon\", \"ragdoll\", \"pug\", \"corgi\"], \"cat_breed\": \"\"}, \"reflex___state____state.flexdown___modules____09034d896c665ea3b6117be2d161e4cd8c3d1bd97b8006ea8707156596b420b4____counter_state2\": {\"count\": 0}, \"reflex___state____state.reflex___istate___dynamic____counter_n6\": {\"count\": 0}, \"reflex___state____state.pcweb___components___icons___lucide___lucide____icon_state\": {\"expanded\": false, \"filtered_icons\": [], \"icons\": [], \"search_query\": \"\"}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n5\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e364746f65ba2c9f5a452cdf2cd7f4748cd845bab071d8e9db8fa6e99b207667____event_arg_state_slider\": {\"value\": 50}, \"reflex___state____state.pcweb___pages___hosting_countdown___waitlist____waitlist_state\": {\"loading\": false, \"success\": false}, \"reflex___state____state.flexdown___modules____fc773fda6da8021d2fcdd7e3c7c5b69acfb77f1a921735efc5d90bad084e3700____count_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____b549b08fb6b6a64ccf1619304752be84480b95a083fac6832b969df396288fc7____counter_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____context_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____c7fa70fd85f9992a31601b102a46ef3b7f29eab60b5f10e0e6d58f154e0d6230____select_state2\": {\"value\": \"\", \"values\": [\"apple\", \"grape\", \"pear\"]}, \"reflex___state____state.flexdown___modules____eb9cdc53c25abb6bdee9a004a2c00fc9c03a4a991e5325303e55bb76410d983d____sound_effect_state\": {}, \"reflex___state____state.reflex___istate___dynamic____counter_n1\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____5dc53ca9d11aaed9b7eeb73bd18397507e8c724b9abbad864e0f53498a7c961d___ag_grid_state_api\": {}, \"reflex___state____state.flexdown___modules____f991147b4490392e6a1a3377ef98e06a5094dcfab345b2b3a9898587b8098322____pyplot_state\": {\"fig\": null, \"num_points\": 100, \"plot_data\": [], \"scale\": []}, \"reflex___state____state.docs___datatable_tutorial___datatable_tutorial_utils____data_table_live_state\": {\"columns\": [{\"title\": \"id\", \"id\": \"v1\", \"type\": \"int\", \"width\": 100}, {\"title\": \"advice\", \"id\": \"v2\", \"type\": \"str\", \"width\": 750}], \"rate\": 0.4, \"running\": false, \"table_data\": []}, \"reflex___state____state.flexdown___modules____58e6cbb26a287027c344ae6993ee59d3cb8e071819a550363a03a1201a7fdad2____table_download_state\": {\"users\": []}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____focus_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____02a3c18c1c89ba007a3f1c005558df742c47dd2f78dee8e197bcb0ea6048a873____form_select_state\": {\"form_data\": {}}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n7\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____fd9c8577a183317f1004e278dd8edce5dc6716c8756b2050954e6287a3509588____settings_state\": {\"salutation\": \"Hello\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_up_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____b745ae73873614d2f3ccfd3f5ac28c32a249679e65cbca8fe21d3e0afb94e8cb____var_select_state\": {\"selected\": \"DOGE\"}, \"reflex___state____state.flexdown___modules____809bbf95cc575024b35844d690ec367610ac17f0e1e7173f0f41962acdd1ca88____flex_playground_state\": {\"align\": \"stretch\", \"direction\": \"row\", \"justify\": \"start\", \"wrap\": \"nowrap\"}, \"reflex___state____state.flexdown___modules____19641b1fb804b6a9bbd6d1e330d631a4ebf2891298c3f2a07cc248273803d6e9____counter_example_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e796cdd72e319e648fa54d444b4a1544e33fe00cb09de837d3b5c7b965adc247____plotly_state\": {\"df\": {\"columns\": [], \"data\": []}, \"figure\": {\"data\": [{\"hovertemplate\": \"\", \"legendgroup\": \"\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"marker\": {\"symbol\": \"circle\"}, \"mode\": \"lines\", \"name\": \"\", \"orientation\": \"v\", \"showlegend\": false, \"xaxis\": \"x\", \"yaxis\": \"y\", \"type\": \"scatter\"}], \"layout\": {\"legend\": {\"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}, \"pattern\": {\"fillmode\": \"overlay\", \"size\": 10, \"solidity\": 0.2}}, \"type\": \"barpolar\"}], \"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}, \"pattern\": {\"fillmode\": \"overlay\", \"size\": 10, \"solidity\": 0.2}}, \"type\": \"bar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram\": [{\"marker\": {\"pattern\": {\"fillmode\": \"overlay\", \"size\": 10, \"solidity\": 0.2}}, \"type\": \"histogram\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatter\": [{\"fillpattern\": {\"fillmode\": \"overlay\", \"size\": 10, \"solidity\": 0.2}, \"type\": \"scatter\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"autotypenumbers\": \"strict\", \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0]}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0]}}}}, \"reflex___state____state.flexdown___modules____b9df7a4e2ff1d8a2a8e2b91bce26d82861c863d86395de8eabd0db30cf846808____arg_state\": {\"colors\": [\"rgba(245,168,152)\", \"MediumSeaGreen\", \"#DEADE3\"]}, \"reflex___state____state.flexdown___modules____319c67702a5b0518a9e6279bc897d37121c0f99ae11566f03a69ecf4e02d27a5____github_state\": {\"profile_image\": \"https://avatars.githubusercontent.com/u/104714959\", \"url\": \"https://github.com/reflex-dev\"}, \"reflex___state____state.flexdown___modules____345d0e24130f0c5a552304d0e38cca86efb81788442ce262dcece385ac5d01fa____var_number_state\": {\"number\": 0}, \"reflex___state____state.flexdown___modules____20c87fa80f2987dcf5382ac1ebd845f0386c5e9cefc045279636b84e0a968467____yield_events_state\": {\"count\": 0, \"show_progress\": false}, \"reflex___state____state.flexdown___modules____f99d2763709126412d1e94f9eba6891877c3f513e778fe50f5193b124f373d9f____textfield_controlled1\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____f124a6e515a46d62c2ebd39299808144526eeee312d0eb531a8f7ab5e1313f7e____complex_local_storage_state\": {\"data\": {\"theme\": \"light\", \"sidebar_visible\": true, \"update_frequency\": 60, \"error_messages\": []}, \"data_raw\": \"{}\", \"settings_open\": false}, \"reflex___state____state.pcweb___components___hosting_banner____hosting_banner_state\": {\"show_banner\": true}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_down\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____637273dcb1b07229fb9bfd142d03ea781da2e5e5ab738351343dad1255dfcb47____iter_state2\": {\"color\": [\"red\", \"green\", \"blue\"]}, \"reflex___state____state.reflex___istate___dynamic____counter_n3\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____3b7d5a1a3ae394876b717a3c98a55bb3f5c19be6da94160f55fcd72ec02cda15____nested_foreach_state\": {\"numbers\": [[\"1\", \"2\", \"3\"], [\"4\", \"5\", \"6\"], [\"7\", \"8\", \"9\"]]}, \"reflex___state____state.flexdown___modules____276372f2daef572880ba7da1ece8df1cf0a2effec423b1e760108f4915abd20d____clipboard_paste_state\": {}, \"reflex___state____state.flexdown___modules____d43dcbae31d42a8299bbb1b1e8633b2c8e325f0604e190a76173507203dcb897____stop_propagation_state\": {\"where_clicked\": []}, \"reflex___state____state.flexdown___modules____91d521f5fc8501f835a43aab2ff7c4d53db7c60884f455eb709ac1d7b400f431____throttle_state\": {\"last_scroll\": null}, \"reflex___state____state.flexdown___modules____45139625453879ccb338f7fe7b01b519c3842d8a088485b4ba11fa1c8f95be5f____radix_form_submission_state\": {\"form_data\": {}, \"form_data_keys\": [], \"form_data_values\": []}, \"reflex___state____state.pcweb___pages___index___demos___demos____demo_state\": {\"demo\": \"Forms\"}, \"reflex___state____state.flexdown___modules____79b816a6ab27782036532a82cae7c07ba456ef322e856d5330bc0942f1baa828____radix_form_state\": {\"email\": \"\", \"input_invalid\": true, \"invalid_email\": true, \"mock_username_db\": [\"reflex\", \"admin\"], \"user_entered_email\": \"\", \"user_entered_username\": \"\", \"username\": \"\", \"username_empty\": true, \"username_is_taken\": false}, \"reflex___state____state.flexdown___modules____18964de36f6eb065e390ad67139695ad5544a78e6aa2d8b6d6d4864c288e40f8____editable_text_demo_state\": {\"value\": \"Global state text\"}, \"reflex___state____state.reflex___istate___dynamic____counter_n2\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____7d9c2931446cff54071c8cbe2f5c33c642db69e69276f9d2380841ee9252cf8b____state4\": {\"users\": [{\"name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"gender\": \"Male\"}, {\"name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"gender\": \"Female\"}], \"users_for_graph\": []}, \"reflex___state____state.flexdown___modules____db896bfd0d2da94f30ae9ad72dea39498948c260f02c7873249bb35aa0494341____moment_state\": {\"date_now\": \"2024-12-04 20:14:59.428108+00:00\"}, \"reflex___state____state.reflex___istate___dynamic____editable_text_n2\": {\"editing\": false, \"original_text\": \"\", \"text\": \"Edit me!\"}, \"reflex___state____state.flexdown___modules____6ec4af8d75edd984322e1c85f321df6c5850144d1aaebf0480209b904e9ff560____popover_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n1\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e9bd9f4fb49eb7bb46d20fc74c2e1c8f685b4814659acb30492112252a27594c____example_state\": {\"color\": \"black\", \"colors\": [\"black\", \"red\", \"green\", \"blue\", \"purple\"], \"index\": 0}, \"reflex___state____state.reflex___state____frontend_event_exception_state\": {}, \"reflex___state____state.flexdown___modules____e6a63672fdcf416b8f73e1c51b315384874f35909cc667448f11a41c97c14825____call_handler_state\": {\"count\": 0, \"progress\": 0}, \"reflex___state____state.flexdown___modules____65b4cef4edcd63e9438ca8451ecb7697f3958fd23aa2740c9c3ccd2183ff8bac____textfield_blur1\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____06767f317063e495780e9bd1c5e5f2bf64dd5232d5cc78a04403a30621d01c2c____nested_state_fe\": {\"projects\": [{\"technologies\": [\"Next.js\", \"Prisma\", \"Tailwind\", \"Google Cloud\", \"Docker\", \"MySQL\"]}, {\"technologies\": [\"Python\", \"Flask\", \"Google Cloud\", \"Docker\"]}]}, \"reflex___state____state.flexdown___modules____e4ff61eb372e991cfc79647f77899cc2a016053f567a359b3a16008a637a13c6____cond_complex_state\": {\"age\": 19}, \"reflex___state____state.flexdown___modules____d77efb4f40d325ae265a1d38838ec45d0d416ee31b2d027b255fd1ec9efe404c____scatter_chart_state2\": {\"data01\": [{\"x\": 100, \"y\": 200, \"z\": 200}, {\"x\": 120, \"y\": 100, \"z\": 260}, {\"x\": 170, \"y\": 300, \"z\": 400}, {\"x\": 170, \"y\": 250, \"z\": 280}, {\"x\": 150, \"y\": 400, \"z\": 500}, {\"x\": 110, \"y\": 280, \"z\": 200}], \"legend_type\": \"circle\", \"legend_types\": [\"square\", \"circle\", \"cross\", \"diamond\", \"star\", \"triangle\", \"wye\"], \"shape\": \"circle\", \"shapes\": [\"square\", \"circle\", \"cross\", \"diamond\", \"star\", \"triangle\", \"wye\"]}, \"reflex___state____state.flexdown___modules____fb75258a82f056ddc70b85e7fcc84c05293fd4165654b28a066af2210bb82218____axis_state\": {\"label_offsets\": [\"-30\", \"-20\", \"-10\", \"0\", \"10\", \"20\", \"30\"], \"label_positions\": [\"center\", \"insideTopLeft\", \"insideTopRight\", \"insideBottomRight\", \"insideBottomLeft\", \"insideTop\", \"insideBottom\", \"insideLeft\", \"insideRight\", \"outside\", \"top\", \"bottom\", \"left\", \"right\"], \"x_axis_offset\": 0, \"x_axis_postion\": \"bottom\", \"y_axis_offset\": 0, \"y_axis_postion\": \"left\"}, \"reflex___state____state.flexdown___modules____7ffc884be18c2458d797db78404946ea0536ec3694d1884a1ed130d510ed5e7b____textfield_controlled\": {\"text\": \"Hello World!\"}, \"reflex___state____state.flexdown___modules____e7b47212fba489598986fda7da12acab32b9e156c5a9505d719494e7df7d1fdc____oper_state\": {\"number\": 0, \"numbers_seen\": []}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_vertical_n1\": {\"is_open\": false}, \"reflex___state____state.flexdown___modules____7fb141d05bc34fc03a78f80bf434b0b17d2b0a7359074d6064f1585d349a456b____alert_dialog_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____82910ae9f0efcb985bd65645bd6f9aca58ac8b0a5475d031bd3ba3d59f000446____iter_state\": {\"color\": [\"red\", \"green\", \"blue\"]}, \"reflex___state____state.flexdown___modules____ef44d38ac72501d881cfb5bb37793dbc43c56b7d774727389be47015f03eea3c____flex_grow_shrink_state\": {\"width_pct\": [100]}, \"reflex___state____state.pcweb___templates___docpage___docpage____radix_doc_state\": {\"color\": \"tomato\"}, \"reflex___state____state.flexdown___modules____869480648d68c065c3396065fbea3024497aa833324f212d60a99d0233622bb9____checkbox_state\": {\"checked\": false}, \"reflex___state____state.flexdown___modules____d09a5baea3d91e060f8ce25b6b3e60c48b88ff18339eb20760a3c0aaa51e679d____redirect_example_state\": {}, \"reflex___state____state.flexdown___modules____b092941dc4cce954855150d077e5ad0adeea2cfc3f2ae8f7e09345641267e416____link_prevent_default_state\": {\"status\": false}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____unmount_state\": {\"events\": []}, \"reflex___state____state.flexdown___modules____dddcfa55e99d264326eee44a01fb47ceb22e54d161c5a3233ade15e63f0b7cb8____list_state\": {\"items\": [\"Write Code\", \"Sleep\", \"Have Fun\"], \"new_item\": \"\"}, \"reflex___state____state.flexdown___modules____92d10b6f2ec3796113e599e68837a9b1cbda719a8882511fd5b4d8fdbb493689____my_state3\": {\"count\": 0, \"text\": \"even\"}, \"reflex___state____state.flexdown___modules____f5ab2c9d97455224b63b02fdab5eb7bbb0f654ded6e0192e3359f9366991a240____switch_state\": {\"value\": false}, \"reflex___state____state.flexdown___modules____99a29b452b3e7aa0c0ce8c9f95ea730decaaacb025225ec5d1d0f7795c4b78e8____accordion_state\": {\"item_selected\": \"\", \"value\": \"item_1\"}, \"reflex___state____state.flexdown___modules____a4e3de79f19b87b4f4fce3d5f729c6b6b225d8d968533932d2e49adf411f2694____ticker_state\": {\"price\": \"$150\", \"ticker\": \"AAPL\"}, \"reflex___state____state.flexdown___modules____4de81dd5dc63b8444a72f5f1e8c50ab032b3bd487290bbcad74dfe7719b927f3____redirect2_example_state\": {\"redirect_to_org\": false, \"url\": \"https://github.com/reflex-dev/reflex/\"}, \"reflex___state____state.flexdown___modules____0d58bee5d27b6bfef17a6030fc04f7c979dacb595e3ba004f8772d2c01d5e9f3____context_menu_state\": {\"which_dialog_open\": \"\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_enter\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____df9dc218d0b920248fd7e41384446cce563bae6bd5e8f9c58bb2987a9f3b0086____state5\": {\"users\": [{\"name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"gender\": \"Male\"}, {\"name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"gender\": \"Female\"}], \"users_for_graph\": []}, \"reflex___state____state.flexdown___modules____8d394adcc40b8ef48f331f25c69a99981cb7be3778ca75b8fab287eccb5390a6___ag_grid_editing_state\": {\"data\": []}, \"reflex___state____state.flexdown___modules____5c5f87af873bd517e53dbf5fc95ab79b50c398f659a7b08a0fa0c08b173758b4____dynamic_iter_state\": {\"color\": [\"red\", \"green\", \"blue\"]}, \"reflex___state____state.flexdown___modules____0feff92b06e3c2121c44ed21995363e90475c197c993568449c401f1f2178368____client_storage_state\": {\"custom_cookie\": \"\", \"my_cookie\": \"\", \"my_local_storage\": \"\"}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____scroll_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____061011ac0daad47822c9531c1be88fc011aab097fc944e0ca2a8860969ddec38____form_radio_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____19641b1fb804b6a9bbd6d1e330d631a4ebf2891298c3f2a07cc248273803d6e9____intro_tabs_state\": {\"tab_selected\": \"\", \"value\": \"tab1\"}, \"reflex___state____state.flexdown___modules____315a72e692ba93947d10ef7bc9f332999f90cf68f29160b32c00f43eee3c0929____form_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____0b72d3c655ee78e5f6ecc7f3f5d8b49ca5813542569ece3947909fb44b5547fe___ag_grid_state2\": {\"data\": []}, \"reflex___state____state.flexdown___modules____7a0cb0b793363448281dc1631ed042c6f857ecb33f0817084b9f514c4a74de6c____lists_state\": {\"list_1\": [1, 2, 3, 4, 6], \"list_2\": [7, 8, 9, 10], \"list_3\": [\"p\", \"y\", \"t\", \"h\", \"o\", \"n\"]}, \"reflex___state____state.flexdown___modules____8af33b82c35a54d4def43b59134b914d76fffbc7b795b752b81e30d23de4e90a____tabs_state\": {\"tab_selected\": \"\", \"value\": \"tab1\"}, \"reflex___state____state.flexdown___modules____161ffdc40a8a0a2548a4f338843eb5037ffa9f3afa8c21d51bdf4de2af567b9b____window_state\": {\"location\": {}, \"scroll_position\": {}}, \"reflex___state____state.flexdown___modules____6a8f943fec4e749846786ea8aba6804432246282f6a462748d59eaaf2c6a211b____multi_match_state\": {\"animal_breed\": \"\", \"animal_options\": [\"persian\", \"siamese\", \"maine coon\", \"pug\", \"corgi\", \"mustang\", \"rahvan\", \"football\", \"golf\"]}, \"reflex___state____state.flexdown___modules____64e19b898cf541d6824e51248a2b190c8522d60f79235b8b1d600077f517de65____event_arg_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____4d8fb930069e8c09c623e08a608e4a6a01f29ac940fc6c26ab540ef9cc088b76____github_state\": {\"profile_image\": \"https://avatars.githubusercontent.com/u/104714959\", \"url\": \"https://github.com/reflex-dev\"}, \"reflex___state____state.flexdown___modules____0956fb940489aadace582871f0e370c55d3d6e49e48683abc3c0ce6551bc5733____foreach_state\": {\"color\": [\"red\", \"green\", \"blue\", \"yellow\", \"orange\", \"purple\"]}, \"reflex___state____state.reflex___istate___dynamic____counter_n5\": {\"count\": 0}, \"reflex___state____state.reflex___istate___dynamic____editable_text_n5\": {\"editing\": false, \"original_text\": \"\", \"text\": \"Click to edit\"}, \"reflex___state____state.flexdown___modules____a259eb1f3061f61271f71bdd035de705ca10291956d2af89a7c2e123e54e00f2____progress_state\": {\"value\": 0}, \"reflex___state____state.flexdown___modules____40b334e1603b81b80b3771ef0f5c95556c9aa8f32b21385c8999176904c8d232____clipboard_paste_image_state\": {\"last_image_uri\": \"\"}, \"reflex___state____state.docs___datatable_tutorial___datatable_tutorial_utils____data_table_state2\": {\"clicked_cell\": \"Cell clicked: \", \"cols\": [{\"title\": \"Title\", \"type\": \"str\", \"width\": 100}, {\"title\": \"Name\", \"type\": \"str\", \"group\": \"Data\", \"width\": 200}, {\"title\": \"Birth\", \"type\": \"str\", \"group\": \"Data\", \"width\": 150}, {\"title\": \"Human\", \"type\": \"bool\", \"group\": \"Data\", \"width\": 80}, {\"title\": \"House\", \"type\": \"str\", \"group\": \"Data\"}, {\"title\": \"Wand\", \"type\": \"str\", \"group\": \"Data\", \"width\": 250}, {\"title\": \"Patronus\", \"type\": \"str\", \"group\": \"Data\"}, {\"title\": \"Blood status\", \"type\": \"str\", \"group\": \"Data\", \"width\": 200}], \"data\": [[\"1\", \"Harry James Potter\", \"31 July 1980\", true, \"Gryffindor\", \"11' Holly phoenix feather\", \"Stag\", \"Half-blood\"], [\"2\", \"Ronald Bilius Weasley\", \"1 March 1980\", true, \"Gryffindor\", \"12' Ash unicorn tail hair\", \"Jack Russell terrier\", \"Pure-blood\"], [\"3\", \"Hermione Jean Granger\", \"19 September, 1979\", true, \"Gryffindor\", \"10¾' vine wood dragon heartstring\", \"Otter\", \"Muggle-born\"], [\"4\", \"Albus Percival Wulfric Brian Dumbledore\", \"Late August 1881\", true, \"Gryffindor\", \"15' Elder Thestral tail hair core\", \"Phoenix\", \"Half-blood\"], [\"5\", \"Rubeus Hagrid\", \"6 December 1928\", false, \"Gryffindor\", \"16' Oak unknown core\", \"None\", \"Part-Human (Half-giant)\"], [\"6\", \"Fred Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"], [\"7\", \"George Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"]], \"deleted\": \"Deleted: \", \"edited_cell\": \"Cell edited: \", \"item_hovered\": \"Item Hovered: \", \"right_clicked_group_header\": \"Group header right clicked: \"}, \"reflex___state____state.flexdown___modules____fcb0aec86d726a74b01ebb9d3b50b096640ebe147909968bae45d7a63d9fa4cc____prop_example_state\": {\"color\": \"red\", \"text\": \"Hello World\"}, \"reflex___state____state.flexdown___modules____c88d213fe6e06cfc1afccea0201353de231f5452942eee3b2b0c525289be85ac____word_cycle_state\": {\"get_text\": \"Welcome\", \"index\": 0, \"text\": [\"Welcome\", \"to\", \"Reflex\", \"!\"]}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____change_state\": {\"checked\": false}, \"reflex___state____state.flexdown___modules____a319e1074a7dc63469021776aaa40957ad64065058826032d37084671de5791e____hovercard_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____4abf1b8eb088e52843e82da531cf8c052faa681aa93edd825f9f863128442b17____cond_state\": {\"show\": true}, \"reflex___state____state.flexdown___modules____9526812f903fc17767eec451a29e5934900bd2784d06459a818fb519ab0c7a1b____database_table_state\": {\"users\": []}, \"reflex___state____state.flexdown___modules____22e163ce0d5ec1e7778da7eb24dd6670f1045476a5796f2fefcb06b1bc5d0ac3____form_input_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____4c8aab1695843a4a3d8fb21517ecfa0db4eb05fd3d7198b986c627f2f2c412d0____database_table_state2\": {\"search_value\": \"\", \"sort_value\": \"\", \"users\": []}, \"reflex___state____state.flexdown___modules____f9308c71cdb8a0e73f76187e36c78f40a5354c23640285683aaf54e5c2a629c3____match_prop_state\": {\"value\": 0}, \"reflex___state____state.flexdown___modules____af976e780831a52cc0e7760f0b9a8382c7f3487e62ca0617ce2f5f7a213fb2e9____form_checkbox_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____753822fc81b2a56eb0807a807e1d23025585b65dd20dc1d89f921edbac47e98a____foreach_cond_state\": {\"to_do_list\": [{\"item_name\": \"Space suit\", \"is_packed\": true}, {\"item_name\": \"Helmet\", \"is_packed\": true}, {\"item_name\": \"Back Pack\", \"is_packed\": false}]}, \"reflex___state____state.flexdown___modules____deb7df4e94dc8954a870a85b748d68a2635d72c11eac33e4177d9093f5db1585____simple_dict_foreach_state\": {\"color_chart\": {\"1\": \"blue\", \"2\": \"red\", \"3\": \"green\"}}, \"reflex___state____state.flexdown___modules____5efbbe10e1751e995cea40d1e9e469f160fcc16d5a4bc19b7c8d459a11bc3c64____comp_state\": {\"number_1\": 0, \"number_2\": 0}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____click_state\": {\"text\": \"Change Me!\"}, \"reflex___state____state.flexdown___modules____d2962adac89dfbe2557aeda1f3184a0ba4475bbb7a2b0783eaa5d3d0cdd5af7c____router_state\": {}, \"reflex___state____state.flexdown___modules____42ac95bbf36f0a2b7cc1437623b4f44ab86ba420709c0a92eefc35c6de826768____complex_dict_foreach_state\": {\"color_chart\": {\"purple\": [\"red\", \"blue\"], \"orange\": [\"yellow\", \"red\"], \"green\": [\"blue\", \"yellow\"]}}, \"reflex___state____state.flexdown___modules____a812bae68e3c616c27af93e636823dfae0c672adbd01cfbd1ab82861b77c8946____alert_dialog_state2\": {\"opened\": false}, \"reflex___state____state.flexdown___modules____4e4b140d00d5da14b4c0259ccf732178f0223e34a8b8f4cbbd7594dc50e3b8fe____dropdown_menu_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____ed65d87e9a14efcc2bec85e5a9fab99fa27b58c0fd456696fb95ec422ef18d3c____tooltip_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____f84454d9b1ab1473ea3d6dd6e24b19119ef8b54808f524d43682ad30d0d9667e____backend_var_state\": {\"limit\": 10, \"offset\": 0, \"page\": [83, 8, 90, 94, 32, 84, 66, 18, 57, 74], \"page_number\": 1, \"total_pages\": 10}, \"reflex___state____state.flexdown___modules____7dea7b58e83a0d0dd62cf4a6d3bd701f9186d7483efceb79c6e37cfb680ce456____setter_state2\": {\"selected\": \"1\"}, \"reflex___state____state.flexdown___modules____db91fbd38f6677ca763e09fac3800fe69cf10e2a2cf9cc266bfad50e55962899____login_state\": {\"logged_in\": false}, \"reflex___state____state.flexdown___modules____23791033e1ae406779e3eaff0e1e61637b860bde94aecbfda4f9ea194c08cf3e____multi_data_type_state\": {\"actresses\": [{\"actress_name\": \"Ariana Grande\", \"age\": 30, \"pages\": [{\"url\": \"arianagrande.com\"}, {\"url\": \"https://es.wikipedia.org/wiki/Ariana_Grande\"}]}, {\"actress_name\": \"Gal Gadot\", \"age\": 38, \"pages\": [{\"url\": \"http://www.galgadot.com/\"}, {\"url\": \"https://es.wikipedia.org/wiki/Gal_Gadot\"}]}]}, \"reflex___state____state.flexdown___modules____650790a946d6b97ac5bbc12b53da6d7ca20ed5437fcbfab5b0aeda11623bb3dc____dialog_state\": {\"num_opens\": 0, \"opened\": false}, \"reflex___state____state.flexdown___modules____3ec7e62b8a848b2fd5786c487877303b7cd40bf13f5ad9b9df7313d317676e5c____multi_update_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____48ee1838953051a5d8bc08f19be7a327b0beecafb7c11816bbe1d8a8b15db3be____pie_chart_state\": {\"resource_types\": [\"🏆\", \"🪵\", \"🥑\", \"🧱\"], \"resources\": [{\"type_\": \"🏆\", \"count\": 1}, {\"type_\": \"🪵\", \"count\": 1}, {\"type_\": \"🥑\", \"count\": 1}, {\"type_\": \"🧱\", \"count\": 1}]}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mount_state\": {\"events\": []}, \"reflex___state____state.flexdown___modules____b1dbdc5816a23f7022fdd87528fa30ab0e361091940361a28bd530f5ecad9089____form_switch_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____dc2e5349403317a7db4df1f3637325c9744fbee48a7329349653dc6814928cdc____state1\": {\"users\": [[\"Danilo Sousa\", \"danilo@example.com\", \"Male\"], [\"Zahra Ambessa\", \"zahra@example.com\", \"Female\"]]}, \"reflex___state____state.flexdown___modules____af9754f6514cbfbe7437e4e0ce4652f9a736c7d62c232a7d17b108e06c2b962e____radio_group_state\": {\"item\": \"No Selection\"}, \"reflex___state____state.flexdown___modules____04dcd1282d621006cedb95a163f1cfbe15bb6207981c48352f89dfa733bc3c7e____global_hotkey_state\": {\"key\": \"\"}, \"reflex___state____state.reflex___istate___dynamic____reusable_counter_n3\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____d0c4115161cd37a28a66245a7941ae9c6de960c5f022a76f124ab40f7e91b717____count_even_state\": {\"count\": 0}, \"reflex___state____state.flexdown___modules____e3f74049203f58f4a223a4dc23089b4e69495158f7308d7f136981f5cdbd4434____table_sorting_state\": {\"current_people\": [{\"full_name\": \"Danilo Sousa\", \"email\": \"danilo@example.com\", \"group\": \"Developer\"}, {\"full_name\": \"Zahra Ambessa\", \"email\": \"zahra@example.com\", \"group\": \"Admin\"}, {\"full_name\": \"Jasper Eriks\", \"email\": \"zjasper@example.com\", \"group\": \"B-Developer\"}], \"search_value\": \"\", \"sort_value\": \"\"}, \"reflex___state____state.flexdown___modules____cdacb2a3a50961d989ff4c76c1ff083e150bc03de9df57687725c8450908a8c2____select_state3\": {\"value\": \"apple\", \"values\": [\"apple\", \"grape\", \"pear\"]}, \"reflex___state____state.flexdown___modules____c5b46700a8bd155e715801a5160718ce0d9a83ee5c48d4a7e23c3c1fe7632cdf____get_item_state1\": {\"list_1\": [50, 10, 20]}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_horizontal_n1\": {\"is_open\": false}, \"reflex___state____state.flexdown___modules____5035dc694443427c263304a8eed23203bac55bafda94a5b9ba13b42185247b1d____moment_live_state\": {\"updating\": false}, \"reflex___state____state.flexdown___modules____8d6c664fccbd918b5eb807058f7fe1b5fb2f3cf5394bf9dc2b84b8953bd5e234____form_slider_state\": {\"form_data\": {}}, \"reflex___state____state.flexdown___modules____0271e9f899e52f4f80c39447ffef658bfec48576041829219655c0cb5432b013____download_state\": {}, \"reflex___state____state.flexdown___modules____1de38311df0db9173105f16fae323aa11f1d6cc486afc98b43be5ad5b45539ff____projects_state\": {\"projects\": [{\"technologies\": [\"Next.js\", \"Prisma\", \"Tailwind\", \"Google Cloud\", \"Docker\", \"MySQL\"]}, {\"technologies\": [\"Python\", \"Flask\", \"Google Cloud\", \"Docker\"]}]}, \"reflex___state____state.flexdown___modules____8e4d4beb59da08420209695c7d7696a2e581997771b2e26fe19fbbe14f5fce12____funnel_state\": {\"data\": [{\"value\": 100, \"name\": \"Sent\", \"fill\": \"#8884d8\"}, {\"value\": 80, \"name\": \"Viewed\", \"fill\": \"#83a6ed\"}, {\"value\": 50, \"name\": \"Clicked\", \"fill\": \"#8dd1e1\"}, {\"value\": 40, \"name\": \"Add to Cart\", \"fill\": \"#82ca9d\"}, {\"value\": 26, \"name\": \"Purchased\", \"fill\": \"#a4de6c\"}]}, \"reflex___state____state.flexdown___modules____d5b1df5ab880d1671a74936fbf6ca05626dae9f6978cc7fb00d810cede34df27____collatz_state\": {\"count\": 1}, \"reflex___state____state.flexdown___modules____cb6ef1e1990588161377eb8672b8f6353910ed4b4996cc8e7cd035983b622e20____mouse_over\": {\"text\": \"Change Me!\"}, \"reflex___state____state.docs___datatable_tutorial___datatable_tutorial_utils____data_table_state\": {\"clicked_cell\": \"Cell clicked: \", \"cols\": [{\"title\": \"Title\", \"type\": \"str\"}, {\"title\": \"Name\", \"type\": \"str\", \"width\": 300}, {\"title\": \"Birth\", \"type\": \"str\", \"width\": 150}, {\"title\": \"Human\", \"type\": \"bool\", \"width\": 80}, {\"title\": \"House\", \"type\": \"str\"}, {\"title\": \"Wand\", \"type\": \"str\", \"width\": 250}, {\"title\": \"Patronus\", \"type\": \"str\"}, {\"title\": \"Blood status\", \"type\": \"str\", \"width\": 200}], \"data\": [[\"1\", \"Harry James Potter\", \"31 July 1980\", true, \"Gryffindor\", \"11' Holly phoenix feather\", \"Stag\", \"Half-blood\"], [\"2\", \"Ronald Bilius Weasley\", \"1 March 1980\", true, \"Gryffindor\", \"12' Ash unicorn tail hair\", \"Jack Russell terrier\", \"Pure-blood\"], [\"3\", \"Hermione Jean Granger\", \"19 September, 1979\", true, \"Gryffindor\", \"10¾' vine wood dragon heartstring\", \"Otter\", \"Muggle-born\"], [\"4\", \"Albus Percival Wulfric Brian Dumbledore\", \"Late August 1881\", true, \"Gryffindor\", \"15' Elder Thestral tail hair core\", \"Phoenix\", \"Half-blood\"], [\"5\", \"Rubeus Hagrid\", \"6 December 1928\", false, \"Gryffindor\", \"16' Oak unknown core\", \"None\", \"Part-Human (Half-giant)\"], [\"6\", \"Fred Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"], [\"7\", \"George Weasley\", \"1 April, 1978\", true, \"Gryffindor\", \"Unknown\", \"Unknown\", \"Pure-blood\"]], \"edited_cell\": \"Cell edited: \"}, \"reflex___state____state.flexdown___modules____2657f7efe022b63d6c1c830575b3fec7daa38de42893dbaba1bdeaa7efce90ad____bar_state\": {\"data\": [{\"name\": \"Page A\", \"uv\": 4000, \"pv\": 2400, \"amt\": 2400}, {\"name\": \"Page B\", \"uv\": 3000, \"pv\": 1398, \"amt\": 2210}, {\"name\": \"Page C\", \"uv\": 2000, \"pv\": 9800, \"amt\": 2290}, {\"name\": \"Page D\", \"uv\": 2780, \"pv\": 3908, \"amt\": 2000}, {\"name\": \"Page E\", \"uv\": 1890, \"pv\": 4800, \"amt\": 2181}, {\"name\": \"Page F\", \"uv\": 2390, \"pv\": 3800, \"amt\": 2500}, {\"name\": \"Page G\", \"uv\": 3490, \"pv\": 4300, \"amt\": 2100}]}, \"reflex___state____state.flexdown___modules____5c0ae5b7babee529487f42767bf4bec8c08d4b8611d3b0cb3e75b3bcb30dbd8a____drawer_state\": {\"is_open\": false}, \"reflex___state____state.reflex___istate___dynamic____speed_dial_reveal_n1\": {\"is_open\": false}, \"reflex___state____state.pcweb___pages___pricing___calculator____billing_state\": {\"cpu_rate\": 0.000463, \"estimated_cpu_number\": 1, \"estimated_ram_gb\": 1, \"estimated_seats\": 1, \"max_cpu\": 5, \"max_ram\": 10, \"max_seats\": 5, \"mem_rate\": 0.000231, \"seat_rate\": 19, \"selected_plan\": \"Pro\"}, \"reflex___state____state.reflex___istate___dynamic____chat_n1\": {\"last_user_message\": \"\", \"messages\": [], \"processing\": false}, \"reflex___state____state.flexdown___modules____3ba12fa161fbef7317bad2af06d26b5e0cea00c1b21a667445fb0bfc8af4576c____control_switch_state\": {\"checked\": true}, \"reflex___state____state.pcweb___pages___customers___views___customers_list____customers_state\": {\"tags\": []}, \"reflex___state____state.flexdown___modules____2960b03a9555bf63d592b0a3fd01196b44c8eeb86b2c0fb21a4e04e5f8948835____range_slider_state\": {\"value_end\": 75, \"value_start\": 25}, \"reflex___state____state.flexdown___modules____a83651895f38fb3dded6a1442c914d1d94eb85c35ad1dbe00eff11578fa11ca9____my_task_state\": {\"counter\": 0, \"max_counter\": 10, \"running\": false}, \"reflex___state____state.pcweb___pages___index___demos___image_gen___image_gen____image_gen_state\": {\"image_url\": \"\", \"processing\": false}}, \"events\": [], \"final\": true}" \ No newline at end of file diff --git a/pcweb/whitelist.py b/pcweb/whitelist.py index a1c8d2ef3..c3f74420b 100644 --- a/pcweb/whitelist.py +++ b/pcweb/whitelist.py @@ -9,7 +9,7 @@ # - Correct: WHITELISTED_PAGES = ["/docs/getting-started/introduction"] # - Incorrect: WHITELISTED_PAGES = ["/docs/getting-started/introduction/"] -WHITELISTED_PAGES = [] +WHITELISTED_PAGES = [] def _check_whitelisted_path(path): if len(WHITELISTED_PAGES) == 0: @@ -27,4 +27,3 @@ def _check_whitelisted_path(path): return True return False - \ No newline at end of file