{
  "templates": {
    "main_button": {
      "type": "container",
      "width": {
        "type": "match_parent"
      },
      "height": {
        "type": "wrap_content"
      },
      "paddings": {
        "top": 16,
        "bottom": 16,
        "left": 24,
        "right": 24
      },
      "border": {
        "corner_radius": 32
      },
      "background": [
        {
          "type": "solid",
          "color": "#130E10"
        }
      ],
      "content_alignment_horizontal": "center",
      "items": [
        {
          "type": "text",
          "$text": "button_text",
          "font_size": 16,
          "font_weight": "medium",
          "text_color": "#FFFFFF",
          "text_alignment_horizontal": "center"
        }
      ],
      "actions": [
        {
          "log_id": "main_button_tap",
          "$url": "action_url"
        }
      ]
    },
    "action_button": {
      "type": "container",
      "width": {
        "type": "match_parent"
      },
      "height": {
        "type": "wrap_content"
      },
      "paddings": {
        "top": 20,
        "bottom": 20,
        "left": 20,
        "right": 20
      },
      "margins": {
        "bottom": 10
      },
      "border": {
        "corner_radius": 20,
        "stroke": {
          "color": "#00000000",
          "width": 1
        }
      },
      "background": [
        {
          "type": "solid",
          "color": "#FBFBFD"
        }
      ],
      "orientation": "horizontal",
      "content_alignment_vertical": "center",
      "items": [
        {
          "type": "custom",
          "custom_type": "svg_view",
          "custom_props": {
            "$url": "icon_url"
          },
          "width": {
            "type": "fixed",
            "value": 48
          },
          "height": {
            "type": "fixed",
            "value": 48
          }
        },
        {
          "type": "container",
          "orientation": "vertical",
          "width": {
            "type": "match_parent",
            "weight": 1
          },
          "items": [
            {
              "type": "text",
              "$text": "button_text",
              "font_size": 20,
              "font_weight": "medium",
              "text_color": "#000000"
            },
            {
              "type": "text",
              "$text": "subtitle",
              "font_size": 14,
              "text_color": "#808080",
              "max_lines": 2,
              "$visibility": "subtitle_visibility"
            }
          ],
          "margins": {
            "left": 8
          }
        }
      ],
      "$actions": "button_actions"
    },
    "lottie_screen": {
      "type": "container",
      "orientation": "vertical",
      "height": {
        "type": "match_parent"
      },
      "paddings": {
        "top": 24,
        "bottom": 8
      },
      "content_alignment_vertical": "space-between",
      "items": [
        {
          "type": "text",
          "$text": "title",
          "font_size": 32,
          "font_weight": "medium",
          "text_alignment_horizontal": "center",
          "max_lines": 3,
          "paddings": {
            "left": 16,
            "right": 16
          }
        },
        {
          "type": "custom",
          "custom_type": "lottie_view",
          "custom_props": {
            "$asset_path": "lottie_path",
            "fit": "contain",
            "alignment": "center",
            "$aspect_ratio": "lottie_aspect_ratio"
          },
          "height": {
            "type": "match_parent",
            "weight": 1
          }
        },
        {
          "type": "text",
          "$text": "description",
          "font_size": 16,
          "text_alignment_horizontal": "center",
          "max_lines": 4,
          "margins": {
            "top": 8,
            "bottom": 8
          },
          "paddings": {
            "left": 16,
            "right": 16
          }
        },
        {
          "type": "container",
          "width": {
            "type": "match_parent"
          },
          "height": {
            "type": "wrap_content"
          },
          "margins": {
            "left": 16,
            "right": 16
          },
          "paddings": {
            "top": 16,
            "bottom": 16,
            "left": 24,
            "right": 24
          },
          "border": {
            "corner_radius": 32
          },
          "background": [
            {
              "type": "solid",
              "color": "#130E10"
            }
          ],
          "content_alignment_horizontal": "center",
          "items": [
            {
              "type": "text",
              "$text": "button_text",
              "font_size": 16,
              "font_weight": "medium",
              "text_color": "#FFFFFF",
              "text_alignment_horizontal": "center"
            }
          ],
          "actions": [
            {
              "log_id": "continue_tap",
              "$url": "action_url"
            }
          ]
        }
      ]
    },
    "yes_no_buttons": {
      "type": "container",
      "orientation": "horizontal",
      "items": [
        {
          "type": "container",
          "width": {
            "type": "match_parent",
            "weight": 2
          },
          "background": [
            {
              "type": "solid",
              "color": "#F0F0F0"
            }
          ],
          "paddings": {
            "top": 16,
            "bottom": 16
          },
          "border": {
            "corner_radius": 16
          },
          "items": [
            {
              "type": "text",
              "text": "@{L_no}",
              "text_alignment_horizontal": "center",
              "font_weight": "medium",
              "text_color": "#000000"
            }
          ],
          "$actions": "no_actions"
        },
        {
          "type": "container",
          "width": {
            "type": "match_parent",
            "weight": 3
          },
          "margins": {
            "left": 11
          },
          "background": [
            {
              "type": "solid",
              "color": "#130E10"
            }
          ],
          "paddings": {
            "top": 16,
            "bottom": 16
          },
          "border": {
            "corner_radius": 16
          },
          "items": [
            {
              "type": "text",
              "text": "@{L_yes}",
              "text_alignment_horizontal": "center",
              "font_weight": "medium",
              "text_color": "#FFFFFF"
            }
          ],
          "$actions": "yes_actions"
        }
      ]
    },
    "title_text": {
      "type": "text",
      "$text": "title",
      "font_size": 32,
      "font_weight": "medium",
      "text_alignment_horizontal": "center",
      "max_lines": 3
    }
  },
  "card": {
    "log_id": "onboarding_card",
    "variables": [
      {
        "name": "current_screen",
        "type": "string",
        "value": "0"
      },
      {
        "name": "gender",
        "type": "string",
        "value": ""
      },
      {
        "name": "birth_year",
        "type": "integer",
        "value": 0
      },
      {
        "name": "height",
        "type": "integer",
        "value": 165
      },
      {
        "name": "current_weight",
        "type": "number",
        "value": 70.0
      },
      {
        "name": "target_weight",
        "type": "number",
        "value": 65.0
      },
      {
        "name": "goal",
        "type": "string",
        "value": ""
      },
      {
        "name": "activity_level",
        "type": "string",
        "value": ""
      },
      {
        "name": "health_issues",
        "type": "array",
        "value": []
      },
      {
        "name": "meals_per_day",
        "type": "string",
        "value": ""
      },
      {
        "name": "start_eating_time",
        "type": "string",
        "value": ""
      },
      {
        "name": "end_eating_time",
        "type": "string",
        "value": ""
      },
      {
        "name": "eat_outside_frequency",
        "type": "string",
        "value": ""
      },
      {
        "name": "eat_location",
        "type": "string",
        "value": ""
      },
      {
        "name": "distraction_level",
        "type": "string",
        "value": ""
      },
      {
        "name": "snacking_times",
        "type": "array",
        "value": []
      },
      {
        "name": "likes_snacking",
        "type": "string",
        "value": ""
      },
      {
        "name": "diet_type",
        "type": "string",
        "value": ""
      },
      {
        "name": "allergies",
        "type": "array",
        "value": []
      },
      {
        "name": "nutrition_knowledge_level",
        "type": "string",
        "value": ""
      },
      {
        "name": "wants_to_lose_weight",
        "type": "string",
        "value": ""
      },
      {
        "name": "sleep_quality",
        "type": "string",
        "value": ""
      },
      {
        "name": "tracking_frequency",
        "type": "string",
        "value": ""
      },
      {
        "name": "motivation",
        "type": "string",
        "value": ""
      },
      {
        "name": "self_confidence_goal",
        "type": "string",
        "value": ""
      },
      {
        "name": "body_disappointment",
        "type": "boolean",
        "value": false
      },
      {
        "name": "unsure_about_healthy_food",
        "type": "boolean",
        "value": false
      },
      {
        "name": "difficult_to_stick_to_diet",
        "type": "boolean",
        "value": false
      },
      {
        "name": "step49_selection",
        "type": "boolean",
        "value": false
      },
      {
        "name": "step50_selection",
        "type": "boolean",
        "value": false
      },
      {
        "name": "step51_selection",
        "type": "boolean",
        "value": false
      },
      {
        "name": "progress",
        "type": "number",
        "value": 0
      }
    ],
    "states": [
      {
        "state_id": 0,
        "div": {
          "type": "state",
          "id": "onboarding_flow",
          "default_state_id": "0",
          "width": {
            "type": "match_parent"
          },
          "height": {
            "type": "match_parent"
          },
          "states": [
            {
              "state_id": "0",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step1_title}"
                  },
                  {
                    "type": "custom",
                    "custom_type": "lottie_view",
                    "custom_props": {
                      "asset_type": "url",
                      "asset_path": "https://assets.edaai.uz/onboarding/lotties/main/phone_main_anim.json",
                      "text_delegates": {
                        "Всего калорий": "@{L_lottie_total_calories}",
                        "Узбекский плов": "@{L_lottie_uzbek_pilaf}",
                        "Говядина": "@{L_lottie_beef}",
                        "Масло": "@{L_lottie_butter}",
                        "Морковь": "@{L_lottie_carrot}",
                        "Рис": "@{L_lottie_rice}",
                        "белки": "@{L_lottie_proteins}",
                        "жиры": "@{L_lottie_fats}",
                        "углеводы": "@{L_lottie_carbs}",
                        "10 г": "@{L_lottie_10g}",
                        "28 г": "@{L_lottie_28g}",
                        "80 г": "@{L_lottie_80g}",
                        "120 Ккал": "@{L_lottie_120kcal}",
                        "AI Checked": "@{L_lottie_ai_checked}"
                      },
                      "aspect_ratio": 0.4613
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/1"
                  }
                ]
              }
            },
            {
              "state_id": "1",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_select_language}"
                  },
                  {
                    "type": "custom",
                    "custom_type": "language_selector",
                    "custom_props": {
                      "next_screen": "2"
                    },
                    "height": {
                      "type": "wrap_content"
                    }
                  }
                ]
              }
            },
            {
              "state_id": "2",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step6_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{gender == 'male' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{gender == 'male' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/man.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_male}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "gender_male_tap",
                            "url": "div-action://set_variable?name=gender&value=male"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/3"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{gender == 'female' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{gender == 'female' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/woman.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_female}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "gender_female_tap",
                            "url": "div-action://set_variable?name=gender&value=female"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/3"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "3",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_make_goal_reality}"
                  },
                  {
                    "type": "custom",
                    "custom_type": "lottie_view",
                    "custom_props": {
                      "asset_type": "url",
                      "asset_path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/lotties/1/anim_man/1_man.json' : 'https://assets.edaai.uz/onboarding/lotties/1/anim_woman/1_woman.json'}",
                      "text_delegates": {
                        "День 1": "@{L_lottie_day_1}",
                        "День 7": "@{L_lottie_day_7}",
                        "День 28": "@{L_lottie_day_28}",
                        "-6 кг": "@{L_lottie_minus_6_kg}",
                        "-15 кг": "@{L_lottie_minus_15_kg}"
                      },
                      "aspect_ratio": 0.3704
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "container",
                    "width": {
                      "type": "match_parent"
                    },
                    "height": {
                      "type": "wrap_content"
                    },
                    "paddings": {
                      "top": 16,
                      "bottom": 16,
                      "left": 24,
                      "right": 24
                    },
                    "border": {
                      "corner_radius": 32
                    },
                    "background": [
                      {
                        "type": "solid",
                        "color": "#130E10"
                      }
                    ],
                    "content_alignment_horizontal": "center",
                    "items": [
                      {
                        "type": "text",
                        "text": "@{L_continue}",
                        "font_size": 16,
                        "font_weight": "medium",
                        "text_color": "#FFFFFF",
                        "text_alignment_horizontal": "center"
                      }
                    ],
                    "actions": [
                      {
                        "log_id": "continue_tap",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/4"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "4",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step4_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{goal == 'lose_weight' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{goal == 'lose_weight' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/lose-weight.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step4_lose_weight}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "goal_lose_weight_tap",
                            "url": "div-action://set_variable?name=goal&value=lose_weight"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/5"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{goal == 'become_healthier' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{goal == 'become_healthier' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/become-healthier.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step4_become_healthier}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "goal_become_healthier_tap",
                            "url": "div-action://set_variable?name=goal&value=become_healthier"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/5"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{goal == 'become_stronger' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{goal == 'become_stronger' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/become-stronger.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step4_become_stronger}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "goal_become_stronger_tap",
                            "url": "div-action://set_variable?name=goal&value=become_stronger"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/5"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "5",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step8_title}",
                "asset_type": "url",
                "lottie_path": "https://assets.edaai.uz/onboarding/lotties/2/graph_anim/2.json",
                "action_url": "div-action://set_state?state_id=0/onboarding_flow/6",
                "button_text": "@{L_continue}",
                "text_delegates": {
                  "Традиционная диета": "@{L_lottie_traditional_diet}",
                  "Вес возвращается через\rнекоторое время": "@{L_lottie_weight_returns}",
                  "EDA AI план": "@{L_lottie_edaai_plan}",
                  "Время": "@{L_lottie_time}",
                  "Твой вес": "@{L_lottie_your_weight}"
                },
                "lottie_aspect_ratio": 1.1814
              }
            },
            {
              "state_id": "6",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step7_title}"
                  },
                  {
                    "type": "custom",
                    "custom_type": "birth_year_picker",
                    "custom_props": {},
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/7"
                  }
                ]
              }
            },
            {
              "state_id": "7",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step9_title}"
                  },
                  {
                    "type": "custom",
                    "custom_type": "height_ruler",
                    "custom_props": {
                      "min_value": 100,
                      "max_value": 250,
                      "unit": "cm"
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/8"
                  }
                ]
              }
            },
            {
              "state_id": "8",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step10_title}",
                    "paddings": {
                      "left": 16,
                      "right": 16
                    }
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "content_alignment_vertical": "center",
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "text",
                        "text": "@{current_weight_text} @{L_kg}",
                        "font_size": 64,
                        "font_weight": "semibold",
                        "text_color": "#000000",
                        "text_alignment_horizontal": "center",
                        "paddings": {
                          "left": 16,
                          "right": 16
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "weight_ruler",
                        "custom_props": {
                          "min_value": 30,
                          "max_value": 200,
                          "variable_name": "current_weight",
                          "unit": "kg"
                        },
                        "height": {
                          "type": "fixed",
                          "value": 150
                        }
                      }
                    ]
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/9",
                    "margins": {
                      "left": 16,
                      "right": 16
                    }
                  }
                ]
              }
            },
            {
              "state_id": "9",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "top": 24
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step11_title}",
                    "paddings": {
                      "left": 16,
                      "right": 16
                    }
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "content_alignment_vertical": "center",
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "container",
                        "orientation": "horizontal",
                        "content_alignment_horizontal": "space-between",
                        "paddings": {
                          "left": 16,
                          "right": 16
                        },
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "content_alignment_vertical": "center",
                            "width": {
                              "type": "wrap_content"
                            }
                          },
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "content_alignment_vertical": "center",
                            "width": {
                              "type": "wrap_content"
                            },
                            "items": [
                              {
                                "type": "text",
                                "text": "@{target_weight_text}",
                                "font_size": 64,
                                "font_weight": "semibold",
                                "text_color": "#000000"
                              },
                              {
                                "type": "text",
                                "text": " @{L_kg}",
                                "font_size": 16,
                                "text_color": "#000000"
                              }
                            ]
                          },
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "width": {
                              "type": "wrap_content"
                            },
                            "paddings": {
                              "left": 12,
                              "right": 12,
                              "top": 7,
                              "bottom": 7
                            },
                            "background": [
                              {
                                "type": "solid",
                                "color": "#F0F0F0"
                              }
                            ],
                            "border": {
                              "corner_radius": 12
                            },
                            "content_alignment_vertical": "center",
                            "items": [
                              {
                                "type": "custom",
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/chevron-back.svg"
                                },
                                "width": {
                                  "type": "fixed",
                                  "value": 16
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 16
                                }
                              },
                              {
                                "type": "text",
                                "text": "@{current_weight_text}",
                                "font_size": 14,
                                "text_color": "#808080",
                                "margins": {
                                  "left": 4
                                }
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "type": "custom",
                        "custom_type": "weight_ruler",
                        "custom_props": {
                          "min_value": 30,
                          "max_value": 200,
                          "variable_name": "target_weight",
                          "unit": "kg"
                        },
                        "height": {
                          "type": "fixed",
                          "value": 150
                        }
                      }
                    ]
                  },
                  {
                    "type": "container",
                    "paddings": {
                      "left": 16,
                      "right": 16,
                      "bottom": 8
                    },
                    "items": [
                      {
                        "type": "main_button",
                        "button_text": "@{L_continue}",
                        "action_url": "div-action://set_state?state_id=0/onboarding_flow/10"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "10",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "top": 24,
                  "bottom": 8
                },
                "items": [
                  {
                    "type": "custom",
                    "custom_type": "weight_feedback",
                    "custom_props": {},
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/11",
                    "margins": {
                      "left": 16,
                      "right": 16
                    }
                  }
                ]
              }
            },
            {
              "state_id": "11",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step13_title}",
                "asset_type": "url",
                "lottie_path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/lotties/4/stomach_comp_man/4_man.json' : 'https://assets.edaai.uz/onboarding/lotties/4/stomach_comp_woman/4_woman.json'}",
                "description": "@{L_onboarding_step13_description}",
                "action_url": "div-action://set_state?state_id=0/onboarding_flow/12",
                "button_text": "@{L_continue}",
                "text_delegates_male": {
                  "Традиционная диета": "@{L_lottie_traditional_diet}",
                  "Вес возвращается через\rнекоторое время": "@{L_lottie_weight_returns}",
                  "Eda AI план": "@{L_lottie_edaai_plan}",
                  "Время": "@{L_lottie_time}",
                  "Твой вес": "@{L_lottie_your_weight}",
                  "70 кг": "@{L_lottie_70_kg}",
                  "80 кг": "@{L_lottie_80_kg}",
                  "50 кг": "@{L_lottie_50_kg}",
                  "85 кг": "@{L_lottie_85_kg}",
                  "100 кг": "@{L_lottie_100_kg}"
                },
                "text_delegates_female": {
                  "Традиционная диета": "@{L_lottie_traditional_diet}",
                  "Вес возвращается через\rнекоторое время": "@{L_lottie_weight_returns}",
                  "Eda AI план": "@{L_lottie_edaai_plan}",
                  "Время": "@{L_lottie_time}",
                  "Твой вес": "@{L_lottie_your_weight}",
                  "70 кг": "@{L_lottie_55_kg}",
                  "80 кг": "@{L_lottie_80_kg}",
                  "50 кг": "@{L_lottie_50_kg}",
                  "85 кг": "@{L_lottie_65_kg}",
                  "100 кг": "@{L_lottie_80_kg}"
                },
                "lottie_aspect_ratio": 1.1123
              }
            },
            {
              "state_id": "12",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step14_title}",
                "asset_type": "url",
                "lottie_path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/lotties/5/face_comp_man/5_man.json' : 'https://assets.edaai.uz/onboarding/lotties/5/face_comp_woman/5_woman.json'}",
                "description": "@{L_onboarding_step14_description}",
                "action_url": "div-action://set_state?state_id=0/onboarding_flow/14",
                "button_text": "@{L_continue}",
                "lottie_aspect_ratio": 1.1123
              }
            },
            {
              "state_id": "14",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step15_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{activity_level == 'sedentary' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{activity_level == 'sedentary' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/lazy.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step15_sedentary}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "activity_level_sedentary_tap",
                            "url": "div-action://set_variable?name=activity_level&value=sedentary"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/15"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{activity_level == 'slightly_active' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{activity_level == 'slightly_active' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/slightly-active.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step15_slightly_active}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "activity_level_slightly_active_tap",
                            "url": "div-action://set_variable?name=activity_level&value=slightly_active"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/15"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{activity_level == 'moderately_active' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{activity_level == 'moderately_active' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/active.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step15_moderately_active}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "activity_level_moderately_active_tap",
                            "url": "div-action://set_variable?name=activity_level&value=moderately_active"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/15"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{activity_level == 'very_active' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{activity_level == 'very_active' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/very-active.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step15_very_active}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "activity_level_very_active_tap",
                            "url": "div-action://set_variable?name=activity_level&value=very_active"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/15"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "15",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step16_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/healthly.svg",
                          "button_text": "@{L_onboarding_step16_fully_healthy}",
                          "item_key": "fully_healthy",
                          "array_name": "health_issues"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/blood-pressure.svg",
                          "button_text": "@{L_onboarding_step16_high_blood_pressure}",
                          "item_key": "high_blood_pressure",
                          "array_name": "health_issues"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/high-cholesterol.svg",
                          "button_text": "@{L_onboarding_step16_high_cholesterol}",
                          "item_key": "high_cholesterol",
                          "array_name": "health_issues"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/obesity.svg",
                          "button_text": "@{L_onboarding_step16_obesity}",
                          "item_key": "obesity",
                          "array_name": "health_issues"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/diabed.svg",
                          "button_text": "@{L_onboarding_step16_diabetes}",
                          "item_key": "diabetes",
                          "array_name": "health_issues"
                        }
                      }
                    ]
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/16"
                  }
                ]
              }
            },
            {
              "state_id": "16",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step17_title}"
                  },
                  {
                    "type": "custom",
                    "custom_type": "summary_info",
                    "custom_props": {},
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/18"
                  }
                ]
              }
            },
            {
              "state_id": "18",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "background": [
                  {
                    "type": "solid",
                    "color": "#00AD6E"
                  }
                ],
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "paddings": {
                      "left": 16,
                      "right": 16,
                      "top": 24
                    },
                    "items": [
                      {
                        "type": "text",
                        "text": "@{L_onboarding_step18_title}",
                        "font_size": 32,
                        "font_weight": "medium",
                        "text_color": "#FFFFFF",
                        "text_alignment_horizontal": "left"
                      },
                      {
                        "type": "text",
                        "text": "@{L_onboarding_step18_subtitle}",
                        "font_size": 16,
                        "text_color": "#FFFFFF",
                        "margins": {
                          "top": 16
                        }
                      }
                    ]
                  },
                  {
                    "type": "custom",
                    "custom_type": "image_view",
                    "custom_props": {
                      "path": "https://assets.edaai.uz/onboarding/icons/white-plate-with-fork-knife-isolated-white-background 1.png",
                      "fit": "contain",
                      "alignment": "centerRight"
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "container",
                    "paddings": {
                      "left": 16,
                      "right": 16,
                      "bottom": 8
                    },
                    "items": [
                      {
                        "type": "main_button",
                        "button_text": "@{L_continue}",
                        "action_url": "div-action://set_state?state_id=0/onboarding_flow/19"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "19",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24
                },
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step19_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 16
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{meals_per_day == '5_meals' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "#FBFBFD"
                          }
                        ],
                        "orientation": "vertical",
                        "content_alignment_horizontal": "left",
                        "items": [
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step19_5_meals}",
                            "font_size": 18,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "max_lines": 2
                          },
                          {
                            "type": "separator",
                            "height": {
                              "type": "fixed",
                              "value": 12
                            }
                          },
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "content_alignment_vertical": "center",
                            "items": [
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/egg.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/lunch.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/soup.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/free.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/sweet-roll.svg",
                                  "color": "#6B6B6B"
                                }
                              }
                            ]
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "meals_per_day_5_meals_tap",
                            "url": "div-action://set_variable?name=meals_per_day&value=5_meals"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/20"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{meals_per_day == '4_meals' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "#FBFBFD"
                          }
                        ],
                        "orientation": "vertical",
                        "content_alignment_horizontal": "left",
                        "items": [
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step19_4_meals}",
                            "font_size": 18,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "max_lines": 2
                          },
                          {
                            "type": "separator",
                            "height": {
                              "type": "fixed",
                              "value": 12
                            }
                          },
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "content_alignment_vertical": "center",
                            "items": [
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/egg.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/lunch.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/soup.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/free.svg",
                                  "color": "#6B6B6B"
                                }
                              }
                            ]
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "meals_per_day_4_meals_tap",
                            "url": "div-action://set_variable?name=meals_per_day&value=4_meals"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/20"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{meals_per_day == '3_meals' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "#FBFBFD"
                          }
                        ],
                        "orientation": "vertical",
                        "content_alignment_horizontal": "left",
                        "items": [
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step19_3_meals}",
                            "font_size": 18,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "max_lines": 2
                          },
                          {
                            "type": "separator",
                            "height": {
                              "type": "fixed",
                              "value": 12
                            }
                          },
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "content_alignment_vertical": "center",
                            "items": [
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/egg.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/lunch.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/soup.svg",
                                  "color": "#6B6B6B"
                                }
                              }
                            ]
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "meals_per_day_3_meals_tap",
                            "url": "div-action://set_variable?name=meals_per_day&value=3_meals"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/20"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{meals_per_day == '2_meals' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "#FBFBFD"
                          }
                        ],
                        "orientation": "vertical",
                        "content_alignment_horizontal": "left",
                        "items": [
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step19_2_meals}",
                            "font_size": 18,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "max_lines": 2
                          },
                          {
                            "type": "separator",
                            "height": {
                              "type": "fixed",
                              "value": 12
                            }
                          },
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "content_alignment_vertical": "center",
                            "items": [
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/egg.svg",
                                  "color": "#6B6B6B"
                                }
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 12
                                }
                              },
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/lunch.svg",
                                  "color": "#6B6B6B"
                                }
                              }
                            ]
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "meals_per_day_2_meals_tap",
                            "url": "div-action://set_variable?name=meals_per_day&value=2_meals"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/20"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{meals_per_day == '1_meal' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "#FBFBFD"
                          }
                        ],
                        "orientation": "vertical",
                        "content_alignment_horizontal": "left",
                        "items": [
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step19_1_meal}",
                            "font_size": 18,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "max_lines": 2
                          },
                          {
                            "type": "separator",
                            "height": {
                              "type": "fixed",
                              "value": 12
                            }
                          },
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "content_alignment_vertical": "center",
                            "items": [
                              {
                                "type": "custom",
                                "width": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 32
                                },
                                "custom_type": "svg_view",
                                "custom_props": {
                                  "url": "https://assets.edaai.uz/onboarding/icons/egg.svg",
                                  "color": "#6B6B6B"
                                }
                              }
                            ]
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "meals_per_day_1_meal_tap",
                            "url": "div-action://set_variable?name=meals_per_day&value=1_meal"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/20"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "20",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step20_title}"
                  },
                  {
                    "type": "custom",
                    "custom_type": "eating_time_picker",
                    "custom_props": {
                      "start_label": "@{L_onboarding_step20_start_label}",
                      "end_label": "@{L_onboarding_step20_end_label}"
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/21"
                  }
                ]
              }
            },
            {
              "state_id": "21",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step21_title}",
                "asset_type": "url",
                "lottie_path": "https://assets.edaai.uz/onboarding/lotties/7/food_comp/7.json",
                "action_url": "div-action://set_state?state_id=0/onboarding_flow/22",
                "button_text": "@{L_continue}",
                "text_delegates": {
                  "460 cal": "@{L_lottie_460_cal}",
                  "Cамса с мясом": "@{L_lottie_samsa_with_meat}",
                  "Баланс БЖУ": "@{L_lottie_balance_bju}",
                  "Быстрый голод": "@{L_lottie_quick_hunger}",
                  "Высокая сытность": "@{L_lottie_high_satiety}",
                  "Долгая энергия": "@{L_lottie_long_energy}",
                  "Много жира и теста": "@{L_lottie_lot_of_fat_and_dough}",
                  "Низкая пищевая ценность": "@{L_lottie_low_nutritional_value}",
                  "Полезная тарелка": "@{L_lottie_healthy_plate}"
                },
                "lottie_aspect_ratio": 0.782
              }
            },
            {
              "state_id": "22",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step22_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 16
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{eat_outside_frequency == '1_2_times' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{eat_outside_frequency == '1_2_times' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/lunch.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step22_option_1_2_times}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "eat_outside_frequency_1_2_times_tap",
                            "url": "div-action://set_variable?name=eat_outside_frequency&value=1_2_times"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/23"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{eat_outside_frequency == '3_5_times' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{eat_outside_frequency == '3_5_times' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/soup.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step22_option_3_5_times}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "eat_outside_frequency_3_5_times_tap",
                            "url": "div-action://set_variable?name=eat_outside_frequency&value=3_5_times"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/23"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{eat_outside_frequency == '5_plus_times' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{eat_outside_frequency == '5_plus_times' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/free.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step22_option_5_plus_times}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "eat_outside_frequency_5_plus_times_tap",
                            "url": "div-action://set_variable?name=eat_outside_frequency&value=5_plus_times"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/23"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{eat_outside_frequency == 'rarely' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{eat_outside_frequency == 'rarely' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/cocktail.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step22_option_rarely}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "eat_outside_frequency_rarely_tap",
                            "url": "div-action://set_variable?name=eat_outside_frequency&value=rarely"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/23"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "23",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step23_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 16
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{eat_location == 'home' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{eat_location == 'home' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/home.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step23_option_home}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "eat_location_home_tap",
                            "url": "div-action://set_variable?name=eat_location&value=home"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/24"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{eat_location == 'restaurants' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{eat_location == 'restaurants' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/restaurant.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step23_option_restaurants}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "eat_location_restaurants_tap",
                            "url": "div-action://set_variable?name=eat_location&value=restaurants"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/24"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{eat_location == 'office_school' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{eat_location == 'office_school' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/office-and-school.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step23_option_office_school}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "eat_location_office_school_tap",
                            "url": "div-action://set_variable?name=eat_location&value=office_school"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/24"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{eat_location == 'other_places' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{eat_location == 'other_places' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/other-places.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step23_option_other_places}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "eat_location_other_places_tap",
                            "url": "div-action://set_variable?name=eat_location&value=other_places"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/24"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "24",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step24_title}",
                "description": "@{L_onboarding_step24_subtitle}",
                "asset_type": "url",
                "lottie_path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/lotties/8/trad_man/8_man.json' : 'https://assets.edaai.uz/onboarding/lotties/8/trad_woman/8_woman.json'}",
                "action_url": "div-action://set_state?state_id=0/onboarding_flow/25",
                "button_text": "@{L_continue}",
                "text_delegates": {
                  "Ешьте где угодно\rи когда угодно": "@{L_lottie_eat_anywhere_anytime}",
                  "Cканируйте перед\rедой": "@{L_lottie_scan_before_eating}",
                  "Добивайтесь\rрезультатов без\rусилий": "@{L_lottie_achieve_results_effortlessly}",
                  "C помощью \rEda AI": "@{L_lottie_with_edaai}",
                  "Легко теряете\rмотивацию": "@{L_lottie_easily_lose_motivation}",
                  "Тратить часы\rна готовку": "@{L_lottie_spend_hours_cooking}",
                  "Взвешивать все\rвручную": "@{L_lottie_weigh_everything_manually}",
                  "Традиционный\rподход": "@{L_lottie_traditional_approach}"
                },
                "lottie_aspect_ratio": 1.0342
              }
            },
            {
              "state_id": "25",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step25_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 16
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/distraction.svg",
                        "button_text": "@{L_onboarding_step25_option_often_distracted}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "distraction_often_tap",
                            "url": "div-action://set_variable?name=distraction_level&value=often"
                          },
                          {
                            "log_id": "navigate_26",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/26"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/sometimes.svg",
                        "button_text": "@{L_onboarding_step25_option_sometimes}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "distraction_sometimes_tap",
                            "url": "div-action://set_variable?name=distraction_level&value=sometimes"
                          },
                          {
                            "log_id": "navigate_26",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/26"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/rare.svg",
                        "button_text": "@{L_onboarding_step25_option_rarely_focused}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "distraction_rarely_tap",
                            "url": "div-action://set_variable?name=distraction_level&value=rarely"
                          },
                          {
                            "log_id": "navigate_26",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/26"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/never.svg",
                        "button_text": "@{L_onboarding_step25_option_never}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "distraction_never_tap",
                            "url": "div-action://set_variable?name=distraction_level&value=never"
                          },
                          {
                            "log_id": "navigate_26",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/26"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "26",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step26_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 16
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/hungry.svg",
                          "button_text": "@{L_onboarding_step26_option_when_hungry}",
                          "item_key": "when_hungry",
                          "array_name": "snacking_times"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/party.svg",
                          "button_text": "@{L_onboarding_step26_option_during_leisure}",
                          "item_key": "during_leisure",
                          "array_name": "snacking_times"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/at-work.svg",
                          "button_text": "@{L_onboarding_step26_option_during_work_study}",
                          "item_key": "during_work_study",
                          "array_name": "snacking_times"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/stress.svg",
                          "button_text": "@{L_onboarding_step26_option_to_relieve_stress}",
                          "item_key": "to_relieve_stress",
                          "array_name": "snacking_times"
                        }
                      }
                    ]
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/27"
                  }
                ]
              }
            },
            {
              "state_id": "27",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step27_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "height": {
                      "type": "wrap_content"
                    },
                    "items": [
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/like.svg",
                        "button_text": "@{L_onboarding_step27_option_yes}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "likes_snacking_yes_tap",
                            "url": "div-action://set_variable?name=likes_snacking&value=yes"
                          },
                          {
                            "log_id": "navigate_28",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/28"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/dislike.svg",
                        "button_text": "@{L_onboarding_step27_option_no}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "likes_snacking_no_tap",
                            "url": "div-action://set_variable?name=likes_snacking&value=no"
                          },
                          {
                            "log_id": "navigate_28",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/28"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "28",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step28_title}",
                "asset_type": "url",
                "lottie_path": "https://assets.edaai.uz/onboarding/lotties/9/comparison/9.json",
                "action_url": "div-action://set_state?state_id=0/onboarding_flow/29",
                "button_text": "@{L_continue}",
                "text_delegates": {
                  "Сосредоточьтесь \rна тренде": "@{L_lottie_focus_on_trend}",
                  " Чит-дни = \rличный план": "@{L_lottie_cheat_days_personal_plan}",
                  "Чит-дни = \rчувство вины": "@{L_lottie_cheat_days_guilt}",
                  "Одержимость\rкалориями": "@{L_lottie_calorie_obsession}",
                  "Ограниченный\rвыбор": "@{L_lottie_limited_choice}"
                },
                "lottie_aspect_ratio": 0.8766
              }
            },
            {
              "state_id": "29",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step29_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 16
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/balance.svg",
                        "button_text": "@{L_onboarding_step29_option_balanced}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "diet_balanced_tap",
                            "url": "div-action://set_variable?name=diet_type&value=balanced"
                          },
                          {
                            "log_id": "navigate_30",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/30"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/low-carb.svg",
                        "button_text": "@{L_onboarding_step29_option_low_carb}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "diet_low_carb_tap",
                            "url": "div-action://set_variable?name=diet_type&value=low_carb"
                          },
                          {
                            "log_id": "navigate_30",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/30"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/keto.svg",
                        "button_text": "@{L_onboarding_step29_option_keto}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "diet_keto_tap",
                            "url": "div-action://set_variable?name=diet_type&value=keto"
                          },
                          {
                            "log_id": "navigate_30",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/30"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/vegetarian.svg",
                        "button_text": "@{L_onboarding_step29_option_vegetarian}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "diet_vegetarian_tap",
                            "url": "div-action://set_variable?name=diet_type&value=vegetarian"
                          },
                          {
                            "log_id": "navigate_30",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/30"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/hard-vegetarian.svg",
                        "button_text": "@{L_onboarding_step29_option_strict_vegetarian}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "diet_strict_vegetarian_tap",
                            "url": "div-action://set_variable?name=diet_type&value=strict_vegetarian"
                          },
                          {
                            "log_id": "navigate_30",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/30"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/little-understand.svg",
                        "button_text": "@{L_onboarding_step31_option_unknown}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "diet_unknown_tap",
                            "url": "div-action://set_variable?name=diet_type&value=unknown"
                          },
                          {
                            "log_id": "navigate_30",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/30"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "30",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step30_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "margins": {
                      "top": 16
                    },
                    "items": [
                      {
                        "type": "container",
                        "orientation": "vertical",
                        "width": {
                          "type": "match_parent"
                        },
                        "paddings": {
                          "top": 24,
                          "bottom": 10,
                          "left": 10,
                          "right": 10
                        },
                        "margins": {
                          "top": 16
                        },
                        "border": {
                          "corner_radius": 24
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "#FFFBFBFD"
                          }
                        ],
                        "items": [
                          {
                            "type": "container",
                            "orientation": "overlap",
                            "content_alignment_horizontal": "center",
                            "content_alignment_vertical": "center",
                            "width": {
                              "type": "match_parent"
                            },
                            "items": [
                              {
                                "type": "custom",
                                "custom_type": "image_view",
                                "custom_props": {
                                  "path": "https://assets.edaai.uz/onboarding/icons/recycle.png",
                                  "fit": "contain",
                                  "alignment": "center"
                                },
                                "width": {
                                  "type": "fixed",
                                  "value": 200
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 200
                                }
                              },
                              {
                                "type": "text",
                                "text": "@{L_onboarding_step30_yo_yo_effect}",
                                "font_size": 16,
                                "font_weight": "medium",
                                "text_alignment_horizontal": "center",
                                "text_color": "#FF1C1C1E",
                                "width": {
                                  "type": "fixed",
                                  "value": 98
                                }
                              }
                            ]
                          },
                          {
                            "type": "separator",
                            "height": {
                              "type": "fixed",
                              "value": 24
                            }
                          },
                          {
                            "type": "container",
                            "orientation": "horizontal",
                            "width": {
                              "type": "match_parent"
                            },
                            "paddings": {
                              "left": 18,
                              "right": 18,
                              "top": 10,
                              "bottom": 10
                            },
                            "border": {
                              "corner_radius": 16,
                              "stroke": {
                                "color": "#1AFFFFFF"
                              }
                            },
                            "content_alignment_vertical": "center",
                            "items": [
                              {
                                "type": "container",
                                "orientation": "horizontal",
                                "width": {
                                  "type": "match_parent",
                                  "weight": 1
                                },
                                "content_alignment_vertical": "top",
                                "items": [
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step30_cycle_start}",
                                    "font_size": 12,
                                    "font_weight": "medium",
                                    "text_color": "#FF00AD6E",
                                    "max_lines": 2,
                                    "width": {
                                      "type": "match_parent",
                                      "weight": 1
                                    }
                                  },
                                  {
                                    "type": "custom",
                                    "custom_type": "svg_view",
                                    "width": {
                                      "type": "fixed",
                                      "value": 20
                                    },
                                    "height": {
                                      "type": "fixed",
                                      "value": 20
                                    },
                                    "custom_props": {
                                      "url": "https://assets.edaai.uz/onboarding/icons/chevron-right.svg"
                                    }
                                  }
                                ]
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 8
                                }
                              },
                              {
                                "type": "container",
                                "orientation": "horizontal",
                                "width": {
                                  "type": "match_parent",
                                  "weight": 1
                                },
                                "content_alignment_vertical": "top",
                                "items": [
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step30_cycle_weight_loss}",
                                    "font_size": 12,
                                    "font_weight": "medium",
                                    "text_color": "#FFFE8A05",
                                    "max_lines": 2,
                                    "width": {
                                      "type": "match_parent",
                                      "weight": 1
                                    }
                                  },
                                  {
                                    "type": "custom",
                                    "custom_type": "svg_view",
                                    "width": {
                                      "type": "fixed",
                                      "value": 20
                                    },
                                    "height": {
                                      "type": "fixed",
                                      "value": 20
                                    },
                                    "custom_props": {
                                      "url": "https://assets.edaai.uz/onboarding/icons/chevron-right.svg"
                                    }
                                  }
                                ]
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 8
                                }
                              },
                              {
                                "type": "container",
                                "orientation": "horizontal",
                                "width": {
                                  "type": "match_parent",
                                  "weight": 1
                                },
                                "content_alignment_vertical": "top",
                                "items": [
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step30_cycle_diet_stop}",
                                    "font_size": 12,
                                    "font_weight": "medium",
                                    "text_color": "#FF00AD6E",
                                    "max_lines": 2,
                                    "width": {
                                      "type": "match_parent",
                                      "weight": 1
                                    }
                                  },
                                  {
                                    "type": "custom",
                                    "custom_type": "svg_view",
                                    "width": {
                                      "type": "fixed",
                                      "value": 20
                                    },
                                    "height": {
                                      "type": "fixed",
                                      "value": 20
                                    },
                                    "custom_props": {
                                      "url": "https://assets.edaai.uz/onboarding/icons/chevron-right.svg"
                                    }
                                  }
                                ]
                              },
                              {
                                "type": "separator",
                                "width": {
                                  "type": "fixed",
                                  "value": 8
                                }
                              },
                              {
                                "type": "container",
                                "orientation": "horizontal",
                                "width": {
                                  "type": "match_parent",
                                  "weight": 1
                                },
                                "content_alignment_vertical": "top",
                                "items": [
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step30_cycle_weight_return}",
                                    "font_size": 12,
                                    "font_weight": "medium",
                                    "text_color": "#FFFE5005",
                                    "max_lines": 2,
                                    "width": {
                                      "type": "match_parent",
                                      "weight": 1
                                    }
                                  },
                                  {
                                    "type": "custom",
                                    "custom_type": "svg_view",
                                    "width": {
                                      "type": "fixed",
                                      "value": 20
                                    },
                                    "height": {
                                      "type": "fixed",
                                      "value": 20
                                    },
                                    "custom_props": {
                                      "url": "https://assets.edaai.uz/onboarding/icons/chevron-right.svg"
                                    }
                                  }
                                ]
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "type": "separator",
                        "height": {
                          "type": "fixed",
                          "value": 21
                        }
                      },
                      {
                        "type": "container",
                        "orientation": "vertical",
                        "width": {
                          "type": "match_parent"
                        },
                        "paddings": {
                          "left": 16,
                          "right": 16,
                          "top": 16,
                          "bottom": 16
                        },
                        "border": {
                          "corner_radius": 16
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "#FFFBFBFD"
                          }
                        ],
                        "items": [
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step30_method_title}",
                            "font_size": 16,
                            "font_weight": "medium",
                            "text_color": "#FF1C1C1E"
                          },
                          {
                            "type": "separator",
                            "height": {
                              "type": "fixed",
                              "value": 8
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step30_method_description}",
                            "font_size": 14,
                            "text_color": "#661C1C1E"
                          }
                        ]
                      },
                      {
                        "type": "separator",
                        "height": {
                          "type": "fixed",
                          "value": 21
                        }
                      }
                    ]
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/31"
                  }
                ]
              }
            },
            {
              "state_id": "31",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step31_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 16
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/gluten.svg",
                          "button_text": "@{L_onboarding_step31_option_gluten}",
                          "item_key": "gluten",
                          "array_name": "allergies"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/eggs.svg",
                          "button_text": "@{L_onboarding_step31_option_eggs}",
                          "item_key": "eggs",
                          "array_name": "allergies"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/walnuts.svg",
                          "button_text": "@{L_onboarding_step31_option_nuts}",
                          "item_key": "nuts",
                          "array_name": "allergies"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/dairy-products.svg",
                          "button_text": "@{L_onboarding_step31_option_dairy}",
                          "item_key": "dairy",
                          "array_name": "allergies"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/sea-food.svg",
                          "button_text": "@{L_onboarding_step31_option_seafood}",
                          "item_key": "seafood",
                          "array_name": "allergies"
                        }
                      },
                      {
                        "type": "custom",
                        "custom_type": "selection_button",
                        "custom_props": {
                          "icon_url": "https://assets.edaai.uz/onboarding/icons/correct-choose.svg",
                          "button_text": "@{L_onboarding_step31_option_no_limitations}",
                          "item_key": "no_limitations",
                          "array_name": "allergies"
                        }
                      }
                    ]
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/32"
                  }
                ]
              }
            },
            {
              "state_id": "32",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "background": [
                  {
                    "type": "solid",
                    "color": "#00AD6E"
                  }
                ],
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 24,
                      "left": 16,
                      "right": 16
                    },
                    "items": [
                      {
                        "type": "text",
                        "text": "@{L_onboarding_step18_title}",
                        "font_size": 32,
                        "font_weight": "medium",
                        "text_alignment_horizontal": "left",
                        "max_lines": 3,
                        "text_color": "#FFFFFF"
                      },
                      {
                        "type": "text",
                        "text": "@{L_onboarding_step18_subtitle}",
                        "font_size": 16,
                        "text_alignment_horizontal": "left",
                        "text_color": "#FFFFFF"
                      }
                    ]
                  },
                  {
                    "type": "custom",
                    "custom_type": "image_view",
                    "custom_props": {
                      "path": "https://assets.edaai.uz/onboarding/icons/analytic.png",
                      "fit": "contain",
                      "alignment": "centerRight"
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "container",
                    "paddings": {
                      "left": 16,
                      "right": 16,
                      "bottom": 8
                    },
                    "items": [
                      {
                        "type": "main_button",
                        "button_text": "@{L_continue}",
                        "action_url": "div-action://set_state?state_id=0/onboarding_flow/33"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "33",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step33_title}"
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "paddings": {
                      "top": 16
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "items": [
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/knowledge.svg",
                        "button_text": "@{L_onboarding_step33_option_knowledge}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "knowledge_tap",
                            "url": "div-action://set_variable?name=nutrition_knowledge_level&value=knowledge"
                          },
                          {
                            "log_id": "navigate_32",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/34"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/little-understand.svg",
                        "button_text": "@{L_onboarding_step33_option_little_understand}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "little_understand_tap",
                            "url": "div-action://set_variable?name=nutrition_knowledge_level&value=little_understand"
                          },
                          {
                            "log_id": "navigate_32",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/34"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/interested-but-lacking.svg",
                        "button_text": "@{L_onboarding_step33_option_interested_but_lacking}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "interested_but_lacking_tap",
                            "url": "div-action://set_variable?name=nutrition_knowledge_level&value=interested_but_lacking"
                          },
                          {
                            "log_id": "navigate_32",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/34"
                          }
                        ]
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/not-interested.svg",
                        "button_text": "@{L_onboarding_step33_option_not_interested}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "not_interested_tap",
                            "url": "div-action://set_variable?name=nutrition_knowledge_level&value=not_interested"
                          },
                          {
                            "log_id": "navigate_32",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/34"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "34",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step34_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "items": [
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/like.svg",
                        "button_text": "@{L_onboarding_step27_option_yes}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "yes_tap",
                            "url": "div-action://set_variable?name=wants_to_lose_weight&value=yes"
                          },
                          {
                            "log_id": "yes_navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/35"
                          }
                        ],
                        "text_color": "#00AD6E"
                      },
                      {
                        "type": "action_button",
                        "icon_url": "https://assets.edaai.uz/onboarding/icons/dislike.svg",
                        "button_text": "@{L_onboarding_step27_option_no}",
                        "subtitle": "",
                        "subtitle_visibility": "gone",
                        "button_actions": [
                          {
                            "log_id": "no_tap",
                            "url": "div-action://set_variable?name=wants_to_lose_weight&value=no"
                          },
                          {
                            "log_id": "no_navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/35"
                          }
                        ],
                        "text_color": "#FE5005"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "35",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step36_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{sleep_quality == 'very_well' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{sleep_quality == 'very_well' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/smile.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step36_option_very_well}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "sleep_quality_very_well_tap",
                            "url": "div-action://set_variable?name=sleep_quality&value=very_well"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/36"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{sleep_quality == 'somewhat_well' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{sleep_quality == 'somewhat_well' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/happy.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step36_option_somewhat_well}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "sleep_quality_somewhat_well_tap",
                            "url": "div-action://set_variable?name=sleep_quality&value=somewhat_well"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/36"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{sleep_quality == 'not_at_all' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{sleep_quality == 'not_at_all' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/bad.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step36_option_not_at_all}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "sleep_quality_not_at_all_tap",
                            "url": "div-action://set_variable?name=sleep_quality&value=not_at_all"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/36"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "36",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step37_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{tracking_frequency == 'often' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{tracking_frequency == 'often' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/yes_eager.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step37_option_often_track}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "tracking_frequency_often_tap",
                            "url": "div-action://set_variable?name=tracking_frequency&value=often"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/37"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{tracking_frequency == 'sometimes' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{tracking_frequency == 'sometimes' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/yes_nervous.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step37_option_sometimes_track}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "tracking_frequency_sometimes_tap",
                            "url": "div-action://set_variable?name=tracking_frequency&value=sometimes"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/37"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{tracking_frequency == 'never' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{tracking_frequency == 'never' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/unsure.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step37_option_never_tracked}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "tracking_frequency_never_tap",
                            "url": "div-action://set_variable?name=tracking_frequency&value=never"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/37"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "37",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step38_title}",
                "asset_type": "url",
                "lottie_path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/lotties/10/tracker_comp_man/10_man.json' : 'https://assets.edaai.uz/onboarding/lotties/10/tracker_comp_woman/10_woman.json'}",
                "action_url": "div-action://set_state?state_id=0/onboarding_flow/38",
                "button_text": "@{L_continue}",
                "text_delegates": {
                  "Простое сканирование,\rпростая регистрация": "@{L_lottie_simple_scanning_simple_registration}",
                  "Eda AI\rтрекер": "@{L_lottie_edaai_tracker}",
                  "Ведение журнала\rвручную занимает\rцелую вечность": "@{L_lottie_manual_journaling_takes_forever}",
                  "Традиционный\rтрекер": "@{L_lottie_traditional_tracker}"
                },
                "lottie_aspect_ratio": 1.0333
              }
            },
            {
              "state_id": "38",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "paddings": {
                      "left": 16,
                      "right": 16,
                      "top": 24
                    },
                    "items": [
                      {
                        "type": "title_text",
                        "title": "@{L_onboarding_step39_title}"
                      }
                    ]
                  },
                  {
                    "type": "gallery",
                    "orientation": "vertical",
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "paddings": {
                      "left": 16,
                      "right": 16
                    },
                    "items": [
                      {
                        "type": "separator",
                        "height": {
                          "type": "fixed",
                          "value": 32
                        }
                      },
                      {
                        "type": "gallery",
                        "orientation": "horizontal",
                        "paddings": {
                          "top": 16
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "item_spacing": 8,
                        "items": [
                          {
                            "type": "container",
                            "orientation": "vertical",
                            "width": {
                              "type": "fixed",
                              "value": 180
                            },
                            "background": [
                              {
                                "type": "solid",
                                "color": "#F5F5F5"
                              }
                            ],
                            "border": {
                              "corner_radius": 20
                            },
                            "paddings": {
                              "top": 4,
                              "bottom": 4,
                              "left": 4,
                              "right": 4
                            },
                            "items": [
                              {
                                "type": "custom",
                                "custom_type": "image_view",
                                "custom_props": {
                                  "path": "https://assets.edaai.uz/onboarding/icons/224.png",
                                  "fit": "cover"
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 160
                                },
                                "width": {
                                  "type": "fixed",
                                  "value": 172
                                },
                                "border": {
                                  "corner_radius": 18
                                }
                              },
                              {
                                "type": "separator",
                                "height": {
                                  "type": "fixed",
                                  "value": 4
                                }
                              },
                              {
                                "type": "container",
                                "orientation": "vertical",
                                "paddings": {
                                  "left": 10,
                                  "right": 10,
                                  "top": 8,
                                  "bottom": 8
                                },
                                "items": [
                                  {
                                    "type": "separator",
                                    "height": {
                                      "type": "fixed",
                                      "value": 8
                                    }
                                  },
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step39_food_plov}",
                                    "font_size": 13,
                                    "text_color": "#66000000",
                                    "text_alignment_horizontal": "left"
                                  },
                                  {
                                    "type": "separator",
                                    "height": {
                                      "type": "fixed",
                                      "value": 4
                                    }
                                  },
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step39_subtitle_900}",
                                    "font_size": 15,
                                    "font_weight": "medium",
                                    "text_color": "#000000",
                                    "text_alignment_horizontal": "left"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "type": "container",
                            "orientation": "vertical",
                            "width": {
                              "type": "fixed",
                              "value": 180
                            },
                            "background": [
                              {
                                "type": "solid",
                                "color": "#F5F5F5"
                              }
                            ],
                            "border": {
                              "corner_radius": 20
                            },
                            "paddings": {
                              "top": 4,
                              "bottom": 4,
                              "left": 4,
                              "right": 4
                            },
                            "items": [
                              {
                                "type": "custom",
                                "custom_type": "image_view",
                                "custom_props": {
                                  "path": "https://assets.edaai.uz/onboarding/icons/224.png",
                                  "fit": "cover"
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 160
                                },
                                "width": {
                                  "type": "fixed",
                                  "value": 172
                                },
                                "border": {
                                  "corner_radius": 18
                                }
                              },
                              {
                                "type": "separator",
                                "height": {
                                  "type": "fixed",
                                  "value": 4
                                }
                              },
                              {
                                "type": "container",
                                "orientation": "vertical",
                                "paddings": {
                                  "left": 10,
                                  "right": 10,
                                  "top": 8,
                                  "bottom": 8
                                },
                                "items": [
                                  {
                                    "type": "separator",
                                    "height": {
                                      "type": "fixed",
                                      "value": 8
                                    }
                                  },
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step39_food_plov}",
                                    "font_size": 13,
                                    "text_color": "#66000000",
                                    "text_alignment_horizontal": "left"
                                  },
                                  {
                                    "type": "separator",
                                    "height": {
                                      "type": "fixed",
                                      "value": 4
                                    }
                                  },
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step39_subtitle_900}",
                                    "font_size": 15,
                                    "font_weight": "medium",
                                    "text_color": "#000000",
                                    "text_alignment_horizontal": "left"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "type": "container",
                            "orientation": "vertical",
                            "width": {
                              "type": "fixed",
                              "value": 180
                            },
                            "background": [
                              {
                                "type": "solid",
                                "color": "#F5F5F5"
                              }
                            ],
                            "border": {
                              "corner_radius": 20
                            },
                            "paddings": {
                              "top": 4,
                              "bottom": 4,
                              "left": 4,
                              "right": 4
                            },
                            "items": [
                              {
                                "type": "custom",
                                "custom_type": "image_view",
                                "custom_props": {
                                  "path": "https://assets.edaai.uz/onboarding/icons/10988.png",
                                  "fit": "cover"
                                },
                                "height": {
                                  "type": "fixed",
                                  "value": 160
                                },
                                "width": {
                                  "type": "fixed",
                                  "value": 172
                                },
                                "border": {
                                  "corner_radius": 18
                                }
                              },
                              {
                                "type": "separator",
                                "height": {
                                  "type": "fixed",
                                  "value": 4
                                }
                              },
                              {
                                "type": "container",
                                "orientation": "vertical",
                                "paddings": {
                                  "left": 10,
                                  "right": 10,
                                  "top": 8,
                                  "bottom": 8
                                },
                                "items": [
                                  {
                                    "type": "separator",
                                    "height": {
                                      "type": "fixed",
                                      "value": 8
                                    }
                                  },
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step39_food_manti}",
                                    "font_size": 13,
                                    "text_color": "#66000000",
                                    "text_alignment_horizontal": "left"
                                  },
                                  {
                                    "type": "separator",
                                    "height": {
                                      "type": "fixed",
                                      "value": 4
                                    }
                                  },
                                  {
                                    "type": "text",
                                    "text": "@{L_onboarding_step39_subtitle_800}",
                                    "font_size": 15,
                                    "font_weight": "medium",
                                    "text_color": "#000000",
                                    "text_alignment_horizontal": "left"
                                  }
                                ]
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "type": "separator",
                        "height": {
                          "type": "fixed",
                          "value": 40
                        }
                      },
                      {
                        "type": "container",
                        "orientation": "vertical",
                        "background": [
                          {
                            "type": "solid",
                            "color": "#F5F5F5"
                          }
                        ],
                        "border": {
                          "corner_radius": 16
                        },
                        "paddings": {
                          "top": 16,
                          "bottom": 16,
                          "left": 16,
                          "right": 16
                        },
                        "margins": {
                          "top": 16,
                          "left": 16,
                          "right": 16
                        },
                        "items": [
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step39_accuracy_title}",
                            "font_size": 16,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "text_alignment_horizontal": "left"
                          },
                          {
                            "type": "separator",
                            "height": {
                              "type": "fixed",
                              "value": 8
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step39_accuracy_description}",
                            "font_size": 13,
                            "text_color": "#66000000",
                            "text_alignment_horizontal": "left"
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "container",
                    "paddings": {
                      "left": 16,
                      "right": 16,
                      "bottom": 24
                    },
                    "items": [
                      {
                        "type": "main_button",
                        "button_text": "@{L_continue}",
                        "action_url": "div-action://set_state?state_id=0/onboarding_flow/40"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "40",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "background": [
                  {
                    "type": "solid",
                    "color": "#00AD6E"
                  }
                ],
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "paddings": {
                      "left": 16,
                      "right": 16,
                      "top": 24
                    },
                    "items": [
                      {
                        "type": "text",
                        "text": "@{L_onboarding_step40_title}",
                        "font_size": 32,
                        "font_weight": "medium",
                        "text_alignment_horizontal": "left",
                        "max_lines": 3,
                        "text_color": "#FFFFFF"
                      },
                      {
                        "type": "text",
                        "text": "@{L_onboarding_step40_description}",
                        "font_size": 16,
                        "text_alignment_horizontal": "left",
                        "text_color": "#FFFFFF",
                        "margins": {
                          "top": 16
                        }
                      }
                    ]
                  },
                  {
                    "type": "custom",
                    "custom_type": "image_view",
                    "custom_props": {
                      "path": "https://assets.edaai.uz/onboarding/icons/message.png",
                      "fit": "contain",
                      "alignment": "centerRight"
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    }
                  },
                  {
                    "type": "container",
                    "paddings": {
                      "left": 16,
                      "right": 16,
                      "bottom": 8
                    },
                    "items": [
                      {
                        "type": "main_button",
                        "button_text": "@{L_continue}",
                        "action_url": "div-action://set_state?state_id=0/onboarding_flow/41"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "41",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step41_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{motivation == 'appearance' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{motivation == 'appearance' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/appearance.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step41_option_appearance}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "motivation_appearance_tap",
                            "url": "div-action://set_variable?name=motivation&value=appearance"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/42"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{motivation == 'feel_better' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{motivation == 'feel_better' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/feel-better.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step41_option_feel_better}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "motivation_feel_better_tap",
                            "url": "div-action://set_variable?name=motivation&value=feel_better"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/42"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{motivation == 'improve_health' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{motivation == 'improve_health' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/improve-health.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step41_option_improve_health}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "motivation_improve_health_tap",
                            "url": "div-action://set_variable?name=motivation&value=improve_health"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/42"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "42",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step42_title}"
                  },
                  {
                    "type": "container",
                    "background": [
                      {
                        "type": "solid",
                        "color": "#F0F0F0"
                      }
                    ],
                    "border": {
                      "corner_radius": 26
                    },
                    "paddings": {
                      "top": 16,
                      "bottom": 16,
                      "left": 16,
                      "right": 16
                    },
                    "items": [
                      {
                        "type": "custom",
                        "custom_type": "image_view",
                        "custom_props": {
                          "path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/icons/man-1.png' : 'https://assets.edaai.uz/onboarding/icons/woman-1.png'}",
                          "fit": "contain"
                        },
                        "height": {
                          "type": "fixed",
                          "value": 265
                        },
                        "width": {
                          "type": "match_parent"
                        }
                      },
                      {
                        "type": "separator",
                        "height": {
                          "type": "fixed",
                          "value": 16
                        }
                      },
                      {
                        "type": "text",
                        "paddings": {
                          "top": 16
                        },
                        "text": "@{L_onboarding_step42_statement}",
                        "font_size": 16,
                        "text_alignment_horizontal": "center",
                        "text_color": "#000000"
                      }
                    ]
                  },
                  {
                    "type": "yes_no_buttons",
                    "no_actions": [
                      {
                        "log_id": "body_disappointment_no",
                        "url": "div-action://set_variable?name=body_disappointment&value=false"
                      },
                      {
                        "log_id": "navigate_to_43",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/43"
                      }
                    ],
                    "yes_actions": [
                      {
                        "log_id": "body_disappointment_yes",
                        "url": "div-action://set_variable?name=body_disappointment&value=true"
                      },
                      {
                        "log_id": "navigate_to_43",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/43"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "43",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step43_title}"
                  },
                  {
                    "type": "container",
                    "background": [
                      {
                        "type": "solid",
                        "color": "#F0F0F0"
                      }
                    ],
                    "border": {
                      "corner_radius": 26
                    },
                    "paddings": {
                      "top": 16,
                      "bottom": 16,
                      "left": 16,
                      "right": 16
                    },
                    "items": [
                      {
                        "type": "custom",
                        "custom_type": "image_view",
                        "custom_props": {
                          "path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/icons/man-2.png' : 'https://assets.edaai.uz/onboarding/icons/woman-2.png'}",
                          "fit": "contain"
                        },
                        "height": {
                          "type": "fixed",
                          "value": 265
                        },
                        "width": {
                          "type": "match_parent"
                        }
                      },
                      {
                        "type": "text",
                        "text": "@{L_onboarding_step43_statement}",
                        "font_size": 16,
                        "text_alignment_horizontal": "center",
                        "text_color": "#000000",
                        "paddings": {
                          "top": 16
                        }
                      }
                    ]
                  },
                  {
                    "type": "yes_no_buttons",
                    "no_actions": [
                      {
                        "log_id": "unsure_about_healthy_food_no",
                        "url": "div-action://set_variable?name=unsure_about_healthy_food&value=false"
                      },
                      {
                        "log_id": "navigate_to_44",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/44"
                      }
                    ],
                    "yes_actions": [
                      {
                        "log_id": "unsure_about_healthy_food_yes",
                        "url": "div-action://set_variable?name=unsure_about_healthy_food&value=true"
                      },
                      {
                        "log_id": "navigate_to_44",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/44"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "44",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step44_title}"
                  },
                  {
                    "type": "container",
                    "background": [
                      {
                        "type": "solid",
                        "color": "#F0F0F0"
                      }
                    ],
                    "border": {
                      "corner_radius": 26
                    },
                    "paddings": {
                      "top": 16,
                      "bottom": 16,
                      "left": 16,
                      "right": 16
                    },
                    "items": [
                      {
                        "type": "custom",
                        "custom_type": "image_view",
                        "custom_props": {
                          "path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/icons/man-3.png' : 'https://assets.edaai.uz/onboarding/icons/woman-3.png'}",
                          "fit": "contain"
                        },
                        "height": {
                          "type": "fixed",
                          "value": 265
                        },
                        "width": {
                          "type": "match_parent"
                        }
                      },
                      {
                        "type": "separator",
                        "height": {
                          "type": "fixed",
                          "value": 16
                        }
                      },
                      {
                        "type": "text",
                        "text": "@{L_onboarding_step44_statement}",
                        "font_size": 16,
                        "text_alignment_horizontal": "center",
                        "text_color": "#000000",
                        "paddings": {
                          "top": 16
                        }
                      }
                    ]
                  },
                  {
                    "type": "yes_no_buttons",
                    "no_actions": [
                      {
                        "log_id": "difficult_to_stick_to_diet_no",
                        "url": "div-action://set_variable?name=difficult_to_stick_to_diet&value=false"
                      },
                      {
                        "log_id": "navigate_to_45",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/45"
                      }
                    ],
                    "yes_actions": [
                      {
                        "log_id": "difficult_to_stick_to_diet_yes",
                        "url": "div-action://set_variable?name=difficult_to_stick_to_diet&value=true"
                      },
                      {
                        "log_id": "navigate_to_45",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/45"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "45",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step45_title}"
                  },
                  {
                    "type": "custom",
                    "custom_type": "statistics_view",
                    "custom_props": {
                      "stats": [
                        {
                          "title": "99",
                          "subtitle": "@{L_onboarding_step45_stat_1}"
                        },
                        {
                          "title": "93",
                          "subtitle": "@{L_onboarding_step45_stat_2}"
                        },
                        {
                          "title": "87",
                          "subtitle": "@{L_onboarding_step45_stat_3}"
                        }
                      ]
                    }
                  },
                  {
                    "type": "text",
                    "text": "@{L_onboarding_step45_footer}",
                    "font_size": 14,
                    "text_alignment_horizontal": "center",
                    "text_color": "#6E6E73"
                  },
                  {
                    "type": "main_button",
                    "button_text": "@{L_continue}",
                    "action_url": "div-action://set_state?state_id=0/onboarding_flow/46"
                  }
                ]
              }
            },
            {
              "state_id": "46",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "left": 16,
                  "right": 16,
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step46_title}"
                  },
                  {
                    "type": "container",
                    "orientation": "vertical",
                    "items": [
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{self_confidence_goal == 'buy_clothes' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{self_confidence_goal == 'buy_clothes' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/clothes.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step46_option_buy_clothes}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "self_confidence_goal_buy_clothes_tap",
                            "url": "div-action://set_variable?name=self_confidence_goal&value=buy_clothes"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/47"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{self_confidence_goal == 'proud' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{self_confidence_goal == 'proud' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/proud.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step46_option_proud}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "self_confidence_goal_proud_tap",
                            "url": "div-action://set_variable?name=self_confidence_goal&value=proud"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/47"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{self_confidence_goal == 'caring' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{self_confidence_goal == 'caring' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/caring.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step46_option_caring}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "self_confidence_goal_caring_tap",
                            "url": "div-action://set_variable?name=self_confidence_goal&value=caring"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/47"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{self_confidence_goal == 'feel_great' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{self_confidence_goal == 'feel_great' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/feel-good.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step46_option_feel_great}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "self_confidence_goal_feel_great_tap",
                            "url": "div-action://set_variable?name=self_confidence_goal&value=feel_great"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/47"
                          }
                        ]
                      },
                      {
                        "type": "container",
                        "width": {
                          "type": "match_parent"
                        },
                        "height": {
                          "type": "wrap_content"
                        },
                        "paddings": {
                          "top": 20,
                          "bottom": 20,
                          "left": 20,
                          "right": 20
                        },
                        "margins": {
                          "bottom": 10
                        },
                        "border": {
                          "corner_radius": 20,
                          "stroke": {
                            "color": "@{self_confidence_goal == 'share_social' ? '#130E10' : '#00000000'}",
                            "width": 2
                          }
                        },
                        "background": [
                          {
                            "type": "solid",
                            "color": "@{self_confidence_goal == 'share_social' ? '#F0F0F0' : '#FBFBFD'}"
                          }
                        ],
                        "orientation": "horizontal",
                        "content_alignment_vertical": "center",
                        "items": [
                          {
                            "type": "custom",
                            "width": {
                              "type": "fixed",
                              "value": 48
                            },
                            "height": {
                              "type": "fixed",
                              "value": 48
                            },
                            "custom_type": "svg_view",
                            "custom_props": {
                              "url": "https://assets.edaai.uz/onboarding/icons/camera.svg"
                            }
                          },
                          {
                            "type": "text",
                            "text": "@{L_onboarding_step46_option_share_social}",
                            "font_size": 20,
                            "font_weight": "medium",
                            "text_color": "#000000",
                            "margins": {
                              "left": 8
                            }
                          }
                        ],
                        "actions": [
                          {
                            "log_id": "self_confidence_goal_share_social_tap",
                            "url": "div-action://set_variable?name=self_confidence_goal&value=share_social"
                          },
                          {
                            "log_id": "navigate_next",
                            "url": "div-action://set_state?state_id=0/onboarding_flow/47"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "47",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step48_title}",
                "asset_type": "url",
                "lottie_path": "@{gender == 'male' ? 'https://assets.edaai.uz/onboarding/lotties/11/anim_man/11_man.json' : 'https://assets.edaai.uz/onboarding/lotties/11/anim_woman/11_woman.json'}",
                "action_url": "div-action://set_state?state_id=0/onboarding_flow/48",
                "button_text": "@{L_continue}",
                "expandable": true,
                "text_delegates": {
                  "Цель": "@{L_lottie_goal}",
                  "Сейчас": "@{L_lottie_now}",
                  "Сжигание жира": "@{L_lottie_fat_burning}"
                },
                "lottie_aspect_ratio": 0.6855
              }
            },
            {
              "state_id": "48",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step49_title}",
                    "paddings": {
                      "left": 16,
                      "right": 16
                    }
                  },
                  {
                    "type": "custom",
                    "custom_type": "image_view",
                    "custom_props": {
                      "path": "https://assets.edaai.uz/onboarding/icons/loose-weight.png",
                      "fit": "contain"
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "width": {
                      "type": "match_parent"
                    }
                  },
                  {
                    "type": "yes_no_buttons",
                    "paddings": {
                      "left": 16,
                      "right": 16
                    },
                    "no_actions": [
                      {
                        "log_id": "step49_selection_no",
                        "url": "div-action://set_variable?name=step49_selection&value=false"
                      },
                      {
                        "log_id": "navigate_to_49",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/49"
                      }
                    ],
                    "yes_actions": [
                      {
                        "log_id": "step49_selection_yes",
                        "url": "div-action://set_variable?name=step49_selection&value=true"
                      },
                      {
                        "log_id": "navigate_to_49",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/49"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "49",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step50_title}",
                    "paddings": {
                      "left": 16,
                      "right": 16
                    }
                  },
                  {
                    "type": "custom",
                    "custom_type": "image_view",
                    "custom_props": {
                      "path": "https://assets.edaai.uz/onboarding/icons/healthly-food-without-favorite.png",
                      "fit": "contain"
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "width": {
                      "type": "match_parent"
                    }
                  },
                  {
                    "type": "yes_no_buttons",
                    "paddings": {
                      "left": 16,
                      "right": 16
                    },
                    "no_actions": [
                      {
                        "log_id": "step50_selection_no",
                        "url": "div-action://set_variable?name=step50_selection&value=false"
                      },
                      {
                        "log_id": "navigate_to_50",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/50"
                      }
                    ],
                    "yes_actions": [
                      {
                        "log_id": "step50_selection_yes",
                        "url": "div-action://set_variable?name=step50_selection&value=true"
                      },
                      {
                        "log_id": "navigate_to_50",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/50"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "50",
              "div": {
                "type": "container",
                "orientation": "vertical",
                "height": {
                  "type": "match_parent"
                },
                "paddings": {
                  "top": 24,
                  "bottom": 8
                },
                "content_alignment_vertical": "space-between",
                "items": [
                  {
                    "type": "title_text",
                    "title": "@{L_onboarding_step51_title}",
                    "paddings": {
                      "left": 16,
                      "right": 16
                    }
                  },
                  {
                    "type": "custom",
                    "custom_type": "image_view",
                    "custom_props": {
                      "path": "https://assets.edaai.uz/onboarding/icons/freepik__talk__71557 1.png",
                      "fit": "contain"
                    },
                    "height": {
                      "type": "match_parent",
                      "weight": 1
                    },
                    "width": {
                      "type": "match_parent"
                    }
                  },
                  {
                    "type": "yes_no_buttons",
                    "paddings": {
                      "left": 16,
                      "right": 16
                    },
                    "no_actions": [
                      {
                        "log_id": "step51_selection_no",
                        "url": "div-action://set_variable?name=step51_selection&value=false"
                      },
                      {
                        "log_id": "navigate_to_51",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/51"
                      }
                    ],
                    "yes_actions": [
                      {
                        "log_id": "step51_selection_yes",
                        "url": "div-action://set_variable?name=step51_selection&value=true"
                      },
                      {
                        "log_id": "navigate_to_51",
                        "url": "div-action://set_state?state_id=0/onboarding_flow/51"
                      }
                    ]
                  }
                ]
              }
            },
            {
              "state_id": "51",
              "div": {
                "type": "custom",
                "custom_type": "processing_view",
                "custom_props": {
                  "next_screen": "52",
                  "title": "@{L_onboarding_step53_title}",
                  "step1_title": "@{L_onboarding_step53_analyzing_profile}",
                  "step2_title": "@{L_onboarding_step53_calculating_metabolism}",
                  "step3_title": "@{L_onboarding_step53_creating_meal_plan}",
                  "step4_title": "@{L_onboarding_step53_health_maintenance}",
                  "kcal_label": "@{L_onboarding_step53_kcal_per_day}",
                  "meals_label": "@{L_onboarding_step53_meals_count}",
                  "parameters_label": "@{L_onboarding_step53_parameters}",
                  "optimization_label": "@{L_onboarding_step53_optimization}",
                  "unit_cm": "@{L_unit_cm}",
                  "unit_kg": "@{L_unit_kg}",
                  "reviews": [
                    {
                      "text": "@{L_onboarding_step53_review_text_1}",
                      "author": "@{L_onboarding_step53_review_author_1}",
                      "rating": 5
                    },
                    {
                      "text": "@{L_onboarding_step53_review_text_2}",
                      "author": "@{L_onboarding_step53_review_author_2}",
                      "rating": 5
                    },
                    {
                      "text": "@{L_onboarding_step53_review_text_3}",
                      "author": "@{L_onboarding_step53_review_author_3}",
                      "rating": 5
                    },
                    {
                      "text": "@{L_onboarding_step53_review_text_4}",
                      "author": "@{L_onboarding_step53_review_author_4}",
                      "rating": 5
                    }
                  ]
                },
                "height": {
                  "type": "match_parent"
                }
              }
            },
            {
              "state_id": "52",
              "div": {
                "type": "custom",
                "custom_type": "review_view",
                "custom_props": {
                  "title": "@{L_review_title}",
                  "subtitle": "@{L_review_subtitle}",
                  "user_count_text": "@{L_review_user_count}",
                  "button_text": "@{L_continue}",
                  "skip_in_review_mode": true,
                  "next_screen": "53",
                  "avatars": [
                    {
                      "image": "assets/images/person1.jpg",
                      "image_type": "asset"
                    },
                    {
                      "image": "assets/images/person2.jpg",
                      "image_type": "asset"
                    },
                    {
                      "image": "assets/images/person3.jpg",
                      "image_type": "asset"
                    }
                  ],
                  "testimonials": [
                    {
                      "name": "@{L_review_testimonial1_name}",
                      "testimonial": "@{L_review_testimonial1_text}",
                      "highlight": "@{L_review_testimonial1_highlight}",
                      "testimonial_end": "@{L_review_testimonial1_end}",
                      "rating": 5,
                      "image": "assets/images/person1.jpg",
                      "image_type": "asset"
                    },
                    {
                      "name": "@{L_review_testimonial2_name}",
                      "testimonial": "@{L_review_testimonial2_text}",
                      "highlight": "@{L_review_testimonial2_highlight}",
                      "testimonial_end": "@{L_review_testimonial2_end}",
                      "rating": 5,
                      "image": "assets/images/person2.jpg",
                      "image_type": "asset"
                    },
                    {
                      "name": "@{L_review_testimonial3_name}",
                      "testimonial": "@{L_review_testimonial3_text}",
                      "highlight": "@{L_review_testimonial3_highlight}",
                      "testimonial_end": "@{L_review_testimonial3_end}",
                      "rating": 5,
                      "image": "assets/images/person3.jpg",
                      "image_type": "asset"
                    }
                  ]
                },
                "height": {
                  "type": "match_parent"
                }
              }
            },
            {
              "state_id": "53",
              "div": {
                "type": "lottie_screen",
                "title": "@{L_onboarding_step52_title}",
                "asset_type": "url",
                "lottie_path": "https://assets.edaai.uz/onboarding/lotties/12/last_graph/12.json",
                "action_url": "div-action://set_variable?name=action&value=show_auth",
                "button_text": "@{L_continue}",
                "text_delegates": {
                  "65 кг": "@{target_weight_text} @{L_kg}",
                  "74 кг": "@{current_weight_text} @{L_kg}",
                  "День 28": "@{L_lottie_day_28}",
                  "Сегодня": "@{L_lottie_today}",
                  "Всего калорий": "@{L_lottie_total_calories}",
                  "Плов": "@{L_lottie_uzbek_pilaf}",
                  "Говядина": "@{L_lottie_beef}",
                  "Масло": "@{L_lottie_butter}",
                  "Морковь": "@{L_lottie_carrot}",
                  "Рис": "@{L_lottie_rice}",
                  "белки": "@{L_lottie_proteins}",
                  "жиры": "@{L_lottie_fats}",
                  "углеводы": "@{L_lottie_carbs}",
                  "Белки": "@{L_lottie_proteins}",
                  "Жиры": "@{L_lottie_fats}",
                  "Углеводы": "@{L_lottie_carbs}",
                  "10 г": "@{L_lottie_10g}",
                  "28 г": "@{L_lottie_28g}",
                  "80 г": "@{L_lottie_80g}",
                  "120 Ккал": "@{L_lottie_120kcal}",
                  "Checked": "@{L_lottie_ai_checked}"
                },
                "lottie_aspect_ratio": 1.2281
              }
            }
          ]
        }
      }
    ]
  }
}