Помогите составить jsonpath

Markoonij

Client
Регистрация
13.10.2020
Сообщения
77
Благодарностей
3
Баллы
8
Ребя, помогите составить jsonpath.
Есть json вида:
C#:
{
  "Result": {
    "Id": 10035516,
    "EventType": 0,
    "NodeType": "EV",
    "Competitors": [
      {
        "Id": 44437,
        "Order": 1
      },
      {
        "Id": 157270,
        "Order": 2
      }
    ],
    "IsLiveEvent": true,
    "MarketGroups": [
      {
        "Id": 1,
        "Items": [
          {
            "Id": 827472655,
            "Name": "Winner (incl. OT)",
            "Items": [
              {
                "MobileColumnNum": 1,
                "Id": 1945257569,
              },
              {
                "MobileColumnNum": 1,
                "Id": 8465121381,
              }
              
            ],
            "ColumnCount": 2,
          }
        ]
      }
    ],
    "IsParlay": false,
    "DbId": 10
  }
}
Необходимо получить значение ключа Name = Winner (incl. OT) у которого дочерний элемент Id равен 1945257569
Т.е. jsonpath должен быть составлен с условием
 
Последнее редактирование:

Manfredman

Client
Регистрация
25.10.2017
Сообщения
21
Благодарностей
4
Баллы
3
C#:
string need_id = "1945257569";
string json = project.Variables["json"].Value;

var jsonObject = Global.ZennoLab.Json.JsonConvert.DeserializeObject<dynamic>(json);
var marketGroup = jsonObject["Result"]["MarketGroups"];

foreach (var group in marketGroup){
    foreach (var item in group["Items"]){
        foreach (var childItem in item["Items"]){
            if (childItem["Id"] == need_id){
                string name = (string)item["Name"];
                return name; // Вывод: Winner (incl. OT)
            }
        }
    }
}
 
  • Спасибо
Реакции: Markoonij

Markoonij

Client
Регистрация
13.10.2020
Сообщения
77
Благодарностей
3
Баллы
8
Спасибо, работает!
 

Markoonij

Client
Регистрация
13.10.2020
Сообщения
77
Благодарностей
3
Баллы
8
Помогите еще вот с этим:
C#:
{
"marketCategories": [
    {
      "items": [
        {
          "id": 195419,
          "caption": null,
          "betViews": [
            {
              "marketId": 1388292579,
              "marketInstanceId": 1388292579,
              "betItems": [
                {
                  "id": "5767246002",
                  "codeCaption": null,
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "isAvailable": true
                },
                {
                  "id": "5767246003",
                  "codeCaption": null,
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "isAvailable": true
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}
Надо получить значение ключа marketInstanceId, у которого дочерний ключ id = 5767246003. Т.е. в итоге должны получить 1388292579
 

code

Administrator
Регистрация
04.06.2025
Сообщения
75
Благодарностей
24
Баллы
8
Помогите еще вот с этим:
C#:
{
"marketCategories": [
    {
      "items": [
        {
          "id": 195419,
          "caption": null,
          "betViews": [
            {
              "marketId": 1388292579,
              "marketInstanceId": 1388292579,
              "betItems": [
                {
                  "id": "5767246002",
                  "codeCaption": null,
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "isAvailable": true
                },
                {
                  "id": "5767246003",
                  "codeCaption": null,
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "isAvailable": true
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}
Надо получить значение ключа marketInstanceId, у которого дочерний ключ id = 5767246003. Т.е. в итоге должны получить 1388292579
Проверьте:

Код для получения значения `marketInstanceId` по указанному `id` из `betItems`:
string need_id = "5767246003";
string json = project.Variables["json"].Value;

var jsonObject = Global.ZennoLab.Json.JsonConvert.DeserializeObject<dynamic>(json);
var marketCategories = jsonObject["marketCategories"];

foreach (var category in marketCategories){
    foreach (var item in category["items"]){
        foreach (var betView in item["betViews"]){
            foreach (var betItem in betView["betItems"]){
                if (betItem["id"] == need_id){
                    string marketInstanceId = betView["marketInstanceId"].ToString();
                    project.Variables["marketInstanceId"].Value = marketInstanceId;
                    break;
                }
            }
        }
    }
}
Этот код:
1. Проходит по всем элементам в `marketCategories`
2. Для каждой категории перебирает `items`
3. Для каждого элемента перебирает `betViews`
4. Для каждого `betView` проверяет все `betItems`
5. Когда находит `betItem` с нужным `id`, извлекает `marketInstanceId` из родительского `betView`
6. Сохраняет результат в переменную проекта marketInstanceId

В результате в переменной `marketInstanceId` будет значение `1388292579`.
 
  • Спасибо
Реакции: Markoonij

Markoonij

Client
Регистрация
13.10.2020
Сообщения
77
Благодарностей
3
Баллы
8
Спасибо
С json из моего примера (это чать, которую я выдернул из общего массива) работает отлично, но если взять весь json, то выдает ошибку:
Выполнение действия CSharp OwnCode: marketInstanceId. Cannot access child value on Global.ZennoLab.Json.Linq.JValue.

Весь json:
C#:
{
  "betContextId": 41192367,
  "competitionHistoryBetContextId": 37913411,
  "timestamp": 638867250198714603,
  "additionalCaptions": {
    "type": 1,
    "competitor1": "Palmeiras SP",
    "competitor1ImageId": 85985,
    "competitor2": "Botafogo RJ",
    "competitor2ImageId": 171056,
    "discriminator": "TwoCompetitorCaptionModel"
  },
  "marketViewId": 6580888,
  "path": "matches/palmeiras-sp-botafogo-rj",
  "regionImageId": 167252,
  "pathLocations": [
    {
      "caption": "Soccer",
      "path": "soccer",
      "marketViewGroupId": 4372606,
      "marketViewGroupSysname": "SOCCER",
      "regionId": null,
      "regionSysname": null,
      "regionCaption": null,
      "imageId": null,
      "hasContents": false
    },
    {
      "caption": "FIFA Club World Cup 2025",
      "path": "fifa-club-world-cup-2025",
      "marketViewGroupId": 6057588,
      "marketViewGroupSysname": "FIFA_CLUB_WORLD_CUP",
      "regionId": 1,
      "regionSysname": null,
      "regionCaption": "World",
      "imageId": 167365,
      "hasContents": false
    },
    {
      "caption": "Matches",
      "path": "matches",
      "marketViewGroupId": 6057653,
      "marketViewGroupSysname": "MATCHES",
      "regionId": null,
      "regionSysname": null,
      "regionCaption": null,
      "imageId": null,
      "hasContents": false
    }
  ],
  "fullLocationPath": {
    "locationPathItems": [
      {
        "caption": "World",
        "regionImageId": null,
        "level": "Region"
      },
      {
        "caption": "FIFA Club World Cup",
        "regionImageId": null,
        "level": "Region"
      },
      {
        "caption": "FIFA Club World Cup",
        "regionImageId": null,
        "level": "Competition"
      },
      {
        "caption": "Matches",
        "regionImageId": null,
        "level": "CompetitionHistory"
      },
      {
        "caption": "Palmeiras SP - Botafogo RJ",
        "regionImageId": null,
        "level": "EventHistory"
      }
    ]
  },
  "eventSysname": "SOCCER_MATCH",
  "startTimeUTC": "2025-06-28T19:00:00+03:00",
  "startTime": "in 1'",
  "sportradarMatchId": 57490693,
  "betBuilderSupported": true,
  "betContextInfos": [],
  "competitors": {
    "homeTeam": {
      "teamId": 199,
      "teamCaption": "Palmeiras SP",
      "individualIds": [
        226842,
        214829,
        174431,
        174004,
        35684,
        235402,
        91078,
        109789,
        176316,
        135857,
        98982,
        174327,
        13262,
        24551,
        5845,
        230134,
        167856,
        175086,
        226720,
        89457,
        157758,
        63818,
        136042,
        145440,
        88958,
        176358,
        98498,
        137001,
        89461
      ],
      "individuals": [
        {
          "id": 226842,
          "caption": "Andrade Allan Elias"
        },
        {
          "id": 214829,
          "caption": " Estevao"
        },
        {
          "id": 174431,
          "caption": "Bruno Fuchs"
        },
        {
          "id": 174004,
          "caption": "AgustГn  Giay"
        },
        {
          "id": 35684,
          "caption": "Gustavo Portillo Gomez"
        },
        {
          "id": 235402,
          "caption": "Emiliano MartГnez Toranza"
        },
        {
          "id": 91078,
          "caption": "Magalhaes Prado Mauricio "
        },
        {
          "id": 109789,
          "caption": "Joaquin  Piquerez"
        },
        {
          "id": 176316,
          "caption": "Richard Rios"
        },
        {
          "id": 135857,
          "caption": "Vitor  Roque"
        },
        {
          "id": 98982,
          "caption": "Pereira  Weverton"
        },
        {
          "id": 174327,
          "caption": "  Micael "
        },
        {
          "id": 13262,
          "caption": "Felipe Anderson"
        },
        {
          "id": 24551,
          "caption": "Lucas Evangelista"
        },
        {
          "id": 5845,
          "caption": "Luis Benedetti Gustavo"
        },
        {
          "id": 230134,
          "caption": "Luighi Hanri"
        },
        {
          "id": 167856,
          "caption": "Marcelo Lomba"
        },
        {
          "id": 175086,
          "caption": "Jose Manuel Flaco  Lopez"
        },
        {
          "id": 226720,
          "caption": "Oliveira Mendes Mateus "
        },
        {
          "id": 89457,
          "caption": "Oliveira Mayke"
        },
        {
          "id": 157758,
          "caption": "AnГbal Moreno"
        },
        {
          "id": 63818,
          "caption": "Cerqueira Murilo"
        },
        {
          "id": 136042,
          "caption": "Kaiky Naves"
        },
        {
          "id": 145440,
          "caption": "Henrique Sampaio Filho Paulinho "
        },
        {
          "id": 88958,
          "caption": "Marcos  Rocha"
        },
        {
          "id": 176358,
          "caption": "Henrique Thalys"
        },
        {
          "id": 98498,
          "caption": "Facundo  Torres"
        },
        {
          "id": 137001,
          "caption": "Barbosa  Vanderlan "
        },
        {
          "id": 89461,
          "caption": "Raphael  Veiga"
        }
      ],
      "nonTradedIndividualIds": [
        174327,
        13262,
        24551,
        5845,
        230134,
        167856,
        175086,
        226720,
        89457,
        157758,
        63818,
        136042,
        145440,
        88958,
        176358,
        98498,
        137001,
        89461
      ]
    },
    "awayTeam": {
      "teamId": 33,
      "teamCaption": "Botafogo RJ",
      "individualIds": [
        8390,
        29628,
        135897,
        140660,
        19203,
        135683,
        243281,
        148682,
        175080,
        59361,
        34824,
        25048,
        65226,
        19111,
        176048,
        174683,
        301432,
        136420,
        230120,
        176021,
        301431,
        39299,
        148649,
        137107,
        222075,
        184424,
        176254,
        175617,
        226456,
        136505,
        195634
      ],
      "individuals": [
        {
          "id": 8390,
          "caption": "Nicolao Alex Telles"
        },
        {
          "id": 29628,
          "caption": "Marques Loureiro Allan"
        },
        {
          "id": 135897,
          "caption": "Victor  Artur"
        },
        {
          "id": 140660,
          "caption": "Alexander  Barboza"
        },
        {
          "id": 19203,
          "caption": "da Silva Danilo Barbosa"
        },
        {
          "id": 135683,
          "caption": "Marlon Freitas"
        },
        {
          "id": 243281,
          "caption": "Maciel Igor Jesus"
        },
        {
          "id": 148682,
          "caption": "Paula Jair Cunha"
        },
        {
          "id": 175080,
          "caption": "Maciel John Victor"
        },
        {
          "id": 59361,
          "caption": "Jefferson Savarino"
        },
        {
          "id": 34824,
          "caption": "Victor Vitinho"
        },
        {
          "id": 25048,
          "caption": "Bartolomeu Bastos"
        },
        {
          "id": 65226,
          "caption": "Arthur Cabral"
        },
        {
          "id": 19111,
          "caption": "Joaquin Correa"
        },
        {
          "id": 176048,
          "caption": "Luis Cuiabano"
        },
        {
          "id": 174683,
          "caption": "Loiola David Ricardo"
        },
        {
          "id": 301432,
          "caption": "Kaio Fernando"
        },
        {
          "id": 136420,
          "caption": "Magalhaes Gregore "
        },
        {
          "id": 230120,
          "caption": " Kayke"
        },
        {
          "id": 176021,
          "caption": "Matias Leo Linck"
        },
        {
          "id": 301431,
          "caption": "Cristhian Loor"
        },
        {
          "id": 39299,
          "caption": "Fernando Marcal"
        },
        {
          "id": 148649,
          "caption": "Gonzalo  Mastriani"
        },
        {
          "id": 137107,
          "caption": "Silva Matheus Martins"
        },
        {
          "id": 222075,
          "caption": "Alvaro Montoro"
        },
        {
          "id": 184424,
          "caption": "Ribeiro Nathan Fernandes"
        },
        {
          "id": 176254,
          "caption": "Araujo Newton"
        },
        {
          "id": 175617,
          "caption": "Mateo  Ponte"
        },
        {
          "id": 226456,
          "caption": "Jonas Raul "
        },
        {
          "id": 136505,
          "caption": "Santiago  RodrГguez"
        },
        {
          "id": 195634,
          "caption": "Philipe Rwan Cruz"
        }
      ],
      "nonTradedIndividualIds": [
        25048,
        65226,
        19111,
        176048,
        174683,
        301432,
        136420,
        230120,
        176021,
        301431,
        39299,
        148649,
        137107,
        222075,
        184424,
        176254,
        175617,
        226456,
        136505,
        195634
      ]
    },
    "type": 1
  },
  "filters": [
    {
      "caption": "Main",
      "alias": "MAIN",
      "isCurrent": true,
      "hasBetBuilderSupportedMarkets": true
    },
    {
      "caption": "Goals",
      "alias": "GOALS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": true
    },
    {
      "caption": "Half Markets",
      "alias": "HALVES",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": true
    },
    {
      "caption": "Corners",
      "alias": "CORNERS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": true
    },
    {
      "caption": "Cards",
      "alias": "CARDS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": true
    },
    {
      "caption": "Minutes",
      "alias": "10_MINUTES_MARKETS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": false
    },
    {
      "caption": "Players",
      "alias": "PLAYERS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": true
    },
    {
      "caption": "Player Specials",
      "alias": "PLAYER_SPECIALS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": false
    },
    {
      "caption": "Asian Lines",
      "alias": "ASIAN_LINES",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": false
    },
    {
      "caption": "Specials",
      "alias": "SPECIALS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": true
    },
    {
      "caption": "Stats",
      "alias": "STATS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": false
    },
    {
      "caption": "Combo Bets",
      "alias": "COMBO_BETS",
      "isCurrent": false,
      "hasBetBuilderSupportedMarkets": true
    }
  ],
  "liveData": {
    "homeGoals": 0,
    "awayGoals": 0,
    "homeCorners": 3,
    "awayCorners": 1,
    "homeYellowCards": 0,
    "awayYellowCards": 1,
    "homeRedCards": 0,
    "awayRedCards": 0,
    "homePenaltyKicks": 0,
    "awayPenaltyKicks": 0,
    "injuryMinutes": null,
    "homeThrowIns": 6,
    "awayThrowIns": 3,
    "homeGoalKicks": null,
    "awayGoalKicks": 2,
    "homeExpectedGoals": 0.36,
    "awayExpectedGoals": null,
    "homeWoodworkHits": null,
    "awayWoodworkHits": null,
    "homePlayersWoodworkHits": null,
    "awayPlayersWoodworkHits": null,
    "homeTackles": 5,
    "awayTackles": 1,
    "homePlayersTackles": [
      {
        "name": "Andrade Allan Elias",
        "value": 1
      },
      {
        "name": "Vitor  Roque",
        "value": 1
      },
      {
        "name": "Joaquin  Piquerez",
        "value": 1
      },
      {
        "name": " Estevao",
        "value": 1
      },
      {
        "name": "Richard Rios",
        "value": 1
      }
    ],
    "awayPlayersTackles": [
      {
        "name": "Alexander  Barboza",
        "value": 1
      }
    ],
    "homeFouls": 3,
    "awayFouls": 4,
    "homePlayersFouls": [
      {
        "name": "Emiliano MartГnez Toranza",
        "value": 1
      },
      {
        "name": " Estevao",
        "value": 1
      },
      {
        "name": "Gustavo Portillo Gomez",
        "value": 1
      }
    ],
    "awayPlayersFouls": [
      {
        "name": "Alexander  Barboza",
        "value": 2
      },
      {
        "name": "Marlon Freitas",
        "value": 1
      },
      {
        "name": "da Silva Danilo Barbosa",
        "value": 1
      }
    ],
    "homeOffsides": 2,
    "awayOffsides": 1,
    "homePlayersOffsides": [
      {
        "name": " Estevao",
        "value": 2
      }
    ],
    "awayPlayersOffsides": [
      {
        "name": "Jefferson Savarino",
        "value": 1
      }
    ],
    "homePlayersShots": [
      {
        "name": "Richard Rios",
        "value": 1
      },
      {
        "name": "AgustГn  Giay",
        "value": 1
      },
      {
        "name": "Bruno Fuchs",
        "value": 1
      },
      {
        "name": "Emiliano MartГnez Toranza",
        "value": 1
      },
      {
        "name": "Gustavo Portillo Gomez",
        "value": 1
      }
    ],
    "awayPlayersShots": null,
    "homePlayersShotsOnTarget": null,
    "awayPlayersShotsOnTarget": null,
    "homePlayersAssists": null,
    "awayPlayersAssists": null,
    "penaltyShootoutInfo": null,
    "supportsAchievements": true,
    "supportsActions": true,
    "liveStreamingCountries": "GR,CY,FI,IE",
    "providers": {
      "streams": [
        {
          "eventId": "489957",
          "discriminator": "IMG"
        }
      ],
      "flashbets": [
        {
          "eventId": "370g150j1tflo70hueh62tnh0",
          "discriminator": "KeroSports"
        }
      ],
      "fields": [
        {
          "performFixtureId": "370g150j1tflo70hueh62tnh0",
          "discriminator": "Perform"
        }
      ]
    },
    "betgeniusFixtureId": null,
    "betgeniusStreamId": null,
    "betgeniusDashId": null,
    "betgeniusHlsId": null,
    "sportradarMatchId": 57490693,
    "performFixtureId": "370g150j1tflo70hueh62tnh0",
    "imgEventId": "489957",
    "beterEventId": null,
    "beterStreamId": null,
    "beterStreamBaseUrl": null,
    "streamingProvider": "IMG",
    "supportsPerformActions": true,
    "twitchChannelName": null,
    "referenceTime": "2025-06-28T19:30:19.9311762+03:00",
    "referenceTimeUnix": 1751128219,
    "adjustTimeMillis": 2,
    "elapsed": "00:29:56.3852557",
    "elapsedSeconds": 1796.3852557,
    "duration": null,
    "durationSeconds": null,
    "timeToNextPhase": null,
    "timeToNextPhaseSeconds": null,
    "phaseSysname": "SOCCER_MATCH_FIRST_HALF",
    "phaseCaption": "1H",
    "phaseCaptionLong": "1Лўбµ— Half",
    "isLive": true,
    "isInPlay": true,
    "isInPlayPaused": false,
    "isInterrupted": false,
    "timeline": [
      {
        "context": "G",
        "type": "StartOfMatch",
        "phaseCode": "1H",
        "timeOffset": 0,
        "captions": [
          "6/28/2025 4:00:23 PM"
        ]
      },
      {
        "context": "H",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 0,
        "captions": [
          "0",
          "Palmeiras SP"
        ]
      },
      {
        "context": "H",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 1,
        "captions": [
          "1",
          "Palmeiras SP"
        ]
      },
      {
        "context": "H",
        "type": "FoulWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 1,
        "captions": [
          "1",
          "Palmeiras SP",
          "Emiliano MartГnez Toranza"
        ]
      },
      {
        "context": "A",
        "type": "FoulWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 2,
        "captions": [
          "2",
          "Botafogo RJ",
          "Alexander  Barboza"
        ]
      },
      {
        "context": "A",
        "type": "YellowCardWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 3,
        "captions": [
          "3",
          "Botafogo RJ",
          "Alexander  Barboza"
        ]
      },
      {
        "context": "H",
        "type": "ShotWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 6,
        "captions": [
          "6",
          "Palmeiras SP",
          "Richard Rios"
        ]
      },
      {
        "context": "A",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 7,
        "captions": [
          "7",
          "Botafogo RJ"
        ]
      },
      {
        "context": "A",
        "type": "TackleWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 7,
        "captions": [
          "7",
          "Botafogo RJ",
          "Alexander  Barboza"
        ]
      },
      {
        "context": "H",
        "type": "TackleWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 7,
        "captions": [
          "7",
          "Palmeiras SP",
          "Andrade Allan Elias"
        ]
      },
      {
        "context": "H",
        "type": "Corner",
        "phaseCode": "1H",
        "timeOffset": 8,
        "captions": [
          "8",
          "Palmeiras SP"
        ]
      },
      {
        "context": "A",
        "type": "OffsideWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 8,
        "captions": [
          "8",
          "Botafogo RJ",
          "Jefferson Savarino"
        ]
      },
      {
        "context": "A",
        "type": "GoalKick",
        "phaseCode": "1H",
        "timeOffset": 9,
        "captions": [
          "9",
          "Botafogo RJ"
        ]
      },
      {
        "context": "H",
        "type": "FoulWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 9,
        "captions": [
          "9",
          "Palmeiras SP",
          " Estevao"
        ]
      },
      {
        "context": "H",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 10,
        "captions": [
          "10",
          "Palmeiras SP"
        ]
      },
      {
        "context": "A",
        "type": "GoalKick",
        "phaseCode": "1H",
        "timeOffset": 10,
        "captions": [
          "10",
          "Botafogo RJ"
        ]
      },
      {
        "context": "A",
        "type": "FoulWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 11,
        "captions": [
          "11",
          "Botafogo RJ",
          "Marlon Freitas"
        ]
      },
      {
        "context": "H",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 12,
        "captions": [
          "12",
          "Palmeiras SP"
        ]
      },
      {
        "context": "H",
        "type": "TackleWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 14,
        "captions": [
          "14",
          "Palmeiras SP",
          "Vitor  Roque"
        ]
      },
      {
        "context": "H",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 16,
        "captions": [
          "16",
          "Palmeiras SP"
        ]
      },
      {
        "context": "H",
        "type": "OffsideWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 16,
        "captions": [
          "16",
          "Palmeiras SP",
          " Estevao"
        ]
      },
      {
        "context": "A",
        "type": "FoulWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 18,
        "captions": [
          "18",
          "Botafogo RJ",
          "Alexander  Barboza"
        ]
      },
      {
        "context": "A",
        "type": "Corner",
        "phaseCode": "1H",
        "timeOffset": 19,
        "captions": [
          "19",
          "Botafogo RJ"
        ]
      },
      {
        "context": "H",
        "type": "ShotWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 19,
        "captions": [
          "19",
          "Palmeiras SP",
          "AgustГn  Giay"
        ]
      },
      {
        "context": "H",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 20,
        "captions": [
          "20",
          "Palmeiras SP"
        ]
      },
      {
        "context": "H",
        "type": "ShotWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 21,
        "captions": [
          "21",
          "Palmeiras SP",
          "Bruno Fuchs"
        ]
      },
      {
        "context": "H",
        "type": "Corner",
        "phaseCode": "1H",
        "timeOffset": 22,
        "captions": [
          "22",
          "Palmeiras SP"
        ]
      },
      {
        "context": "H",
        "type": "TackleWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 24,
        "captions": [
          "24",
          "Palmeiras SP",
          "Joaquin  Piquerez"
        ]
      },
      {
        "context": "A",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 24,
        "captions": [
          "24",
          "Botafogo RJ"
        ]
      },
      {
        "context": "H",
        "type": "ShotWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 24,
        "captions": [
          "24",
          "Palmeiras SP",
          "Emiliano MartГnez Toranza"
        ]
      },
      {
        "context": "H",
        "type": "OffsideWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 24,
        "captions": [
          "24",
          "Palmeiras SP",
          " Estevao"
        ]
      },
      {
        "context": "H",
        "type": "ShotWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 24,
        "captions": [
          "24",
          "Palmeiras SP",
          "Gustavo Portillo Gomez"
        ]
      },
      {
        "context": "H",
        "type": "Corner",
        "phaseCode": "1H",
        "timeOffset": 25,
        "captions": [
          "25",
          "Palmeiras SP"
        ]
      },
      {
        "context": "A",
        "type": "ThrowIn",
        "phaseCode": "1H",
        "timeOffset": 26,
        "captions": [
          "26",
          "Botafogo RJ"
        ]
      },
      {
        "context": "A",
        "type": "FoulWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 28,
        "captions": [
          "28",
          "Botafogo RJ",
          "da Silva Danilo Barbosa"
        ]
      },
      {
        "context": "H",
        "type": "TackleWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 29,
        "captions": [
          "29",
          "Palmeiras SP",
          " Estevao"
        ]
      },
      {
        "context": "H",
        "type": "TackleWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 29,
        "captions": [
          "29",
          "Palmeiras SP",
          "Richard Rios"
        ]
      },
      {
        "context": "H",
        "type": "FoulWithPlayer",
        "phaseCode": "1H",
        "timeOffset": 29,
        "captions": [
          "29",
          "Palmeiras SP",
          "Gustavo Portillo Gomez"
        ]
      }
    ],
    "sportradarStreamId": null,
    "sportradarStreamType": null,
    "fieldProvider": null,
    "eventSysname": "SOCCER_MATCH",
    "timeAccelerationFactor": null,
    "discriminator": "SoccerMatchLiveDataModel"
  },
  "marketTags": [
    {
      "marketId": 1386446477,
      "tag": "ENHANCED"
    },
    {
      "marketId": 1386446478,
      "tag": "ENHANCED"
    },
    {
      "marketId": 1385831305,
      "tag": "ENHANCED"
    },
    {
      "marketId": 1385831306,
      "tag": "ENHANCED"
    },
    {
      "marketId": 1386446488,
      "tag": "ENHANCED"
    }
  ],
  "marketCategories": [
    {
      "sysname": "MAIN",
      "caption": "Main",
      "items": [
        {
          "id": 21448,
          "groupByModifiersGroupId": "21448-1",
          "type": "Single",
          "sysname": "MAIN|0",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557860,
              "marketInstanceId": 1385557860,
              "marketEntityId": 1,
              "marketSysname": "SOCCER_MATCH_RESULT",
              "betItems": [
                {
                  "id": "5756620792",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5756620793",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.7,
                  "oddsText": "2.70",
                  "isAvailable": true
                },
                {
                  "id": "5756620794",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.75,
                  "oddsText": "4.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Full Time Result рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result рџљЂ",
              "betViewKey": "1385557860",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21450,
          "groupByModifiersGroupId": "21450-1",
          "type": "Single",
          "sysname": "MAIN|1",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385559083,
              "marketInstanceId": 1385559083,
              "marketEntityId": 133,
              "marketSysname": "SOCCER_MATCH_QUALIFICATION",
              "betItems": [
                {
                  "id": "5756627269",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.47,
                  "oddsText": "1.47",
                  "isAvailable": true
                },
                {
                  "id": "5756627270",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.7,
                  "oddsText": "2.70",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "To Qualify",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "To Qualify",
              "betViewKey": "1385559083",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21459,
          "groupByModifiersGroupId": "21459-1",
          "type": "Group",
          "sysname": "MAIN|2",
          "caption": " Goals Over/Under рџљЂ",
          "betViews": [
            {
              "marketId": 1385557929,
              "marketInstanceId": 1385557929,
              "marketEntityId": 7111,
              "marketSysname": "SOCCER_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621033",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.2,
                  "oddsText": "1.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621034",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Goals Over/Under рџљЂ",
              "betViewKey": "1385557929",
              "modelType": "List"
            },
            {
              "marketId": 1385557930,
              "marketInstanceId": 1385557930,
              "marketEntityId": 7111,
              "marketSysname": "SOCCER_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621035",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.83,
                  "oddsText": "1.83",
                  "isAvailable": true
                },
                {
                  "id": "5756621036",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Goals Over/Under рџљЂ",
              "betViewKey": "1385557930",
              "modelType": "List"
            },
            {
              "marketId": 1385557931,
              "marketInstanceId": 1385557931,
              "marketEntityId": 7111,
              "marketSysname": "SOCCER_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621037",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.6,
                  "oddsText": "3.60",
                  "isAvailable": true
                },
                {
                  "id": "5756621038",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Goals Over/Under рџљЂ",
              "betViewKey": "1385557931",
              "modelType": "List"
            },
            {
              "marketId": 1389020749,
              "marketInstanceId": 1389020749,
              "marketEntityId": 7111,
              "marketSysname": "SOCCER_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770102453",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102454",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.08,
                  "oddsText": "1.08",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Goals Over/Under рџљЂ",
              "betViewKey": "1389020749",
              "modelType": "List"
            },
            {
              "marketId": 1389020750,
              "marketInstanceId": 1389020750,
              "marketEntityId": 7111,
              "marketSysname": "SOCCER_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770102455",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102456",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.02,
                  "oddsText": "1.02",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Goals Over/Under рџљЂ",
              "betViewKey": "1389020750",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21461,
          "groupByModifiersGroupId": "21461-1",
          "type": "Single",
          "sysname": "MAIN|3",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557915,
              "marketInstanceId": 1385557915,
              "marketEntityId": 7088,
              "marketSysname": "SOCCER_TEAM_TO_SCORE_GOAL_N",
              "betItems": [
                {
                  "id": "5756620947",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.8,
                  "oddsText": "1.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620948",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620949",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Team to Score Goal (1)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Team to Score Goal (1)",
              "betViewKey": "1385557915",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21460,
          "groupByModifiersGroupId": "21460-1",
          "type": "Single",
          "sysname": "MAIN|4",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557886,
              "marketInstanceId": 1385557886,
              "marketEntityId": 106,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756620854",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620855",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.42,
                  "oddsText": "1.42",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score рџљЂ",
              "betViewKey": "1385557886",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 54993,
          "groupByModifiersGroupId": "54993-1",
          "type": "Single",
          "sysname": "MAIN|5",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558141,
              "marketInstanceId": 1385558141,
              "marketEntityId": 8758,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE_OR_OVER",
              "betItems": [
                {
                  "id": "5756621737",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621738",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No (2-0, 1-0, 0-0, 0-1 or 0-2)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.53,
                  "oddsText": "1.53",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score or Over 2.5",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score or Over 2.5",
              "betViewKey": "1385558141",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21462,
          "groupByModifiersGroupId": "21462-1",
          "type": "Single",
          "sysname": "MAIN|6",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557863,
              "marketInstanceId": 1385557863,
              "marketEntityId": 30,
              "marketSysname": "SOCCER_DOUBLE_CHANCE",
              "betItems": [
                {
                  "id": "5756620806",
                  "code": "1X",
                  "codeCaption": null,
                  "caption": "1X",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.2,
                  "oddsText": "1.20",
                  "isAvailable": true
                },
                {
                  "id": "5756620807",
                  "code": "X2",
                  "codeCaption": null,
                  "caption": "О§2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                },
                {
                  "id": "5756620808",
                  "code": "12",
                  "codeCaption": null,
                  "caption": "12",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Double Chance",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Double Chance",
              "betViewKey": "1385557863",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21463,
          "groupByModifiersGroupId": "21463-1",
          "type": "Single",
          "sysname": "MAIN|7",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557862,
              "marketInstanceId": 1385557862,
              "marketEntityId": 11,
              "marketSysname": "SOCCER_MATCH_RESULT_NODRAW",
              "betItems": [
                {
                  "id": "5756620804",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.38,
                  "oddsText": "1.38",
                  "isAvailable": true
                },
                {
                  "id": "5756620805",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Draw No Bet",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Draw No Bet",
              "betViewKey": "1385557862",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21452,
          "groupByModifiersGroupId": "21452-1",
          "type": "Single",
          "sysname": "MAIN|8",
          "caption": null,
          "betViews": [
            {
              "numColumns": 2,
              "marketId": 1385559084,
              "marketInstanceId": 1385559084,
              "marketEntityId": 894,
              "marketSysname": "SOCCER_QUALIFICATION_WINNING_METHOD",
              "betItems": [
                {
                  "id": "5756627271",
                  "code": "1R",
                  "codeCaption": null,
                  "caption": "Palmeiras SP - Regular Time",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5756627274",
                  "code": "2R",
                  "codeCaption": null,
                  "caption": "Botafogo RJ - Regular Time",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.75,
                  "oddsText": "4.75",
                  "isAvailable": true
                },
                {
                  "id": "5756627272",
                  "code": "1E",
                  "codeCaption": null,
                  "caption": "Palmeiras SP - Extra Time",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5756627275",
                  "code": "2E",
                  "codeCaption": null,
                  "caption": "Botafogo RJ - Extra Time",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5756627273",
                  "code": "1P",
                  "codeCaption": null,
                  "caption": "Palmeiras SP - Penalty Shootout",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5756627276",
                  "code": "2P",
                  "codeCaption": null,
                  "caption": "Botafogo RJ - Penalty Shootout",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table",
              "caption": "Qualification Method",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Qualification Method",
              "betViewKey": "1385559084",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82800,
          "groupByModifiersGroupId": "82800-1",
          "type": "Single",
          "sysname": "MAIN|9",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385559087,
              "marketInstanceId": 1385559087,
              "marketEntityId": 9999,
              "marketSysname": "SOCCER_GAME_DECIDED_IN_EXTRA_TIME",
              "betItems": [
                {
                  "id": "5756627282",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.15,
                  "oddsText": "5.15",
                  "isAvailable": true
                },
                {
                  "id": "5756627283",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.14,
                  "oddsText": "1.14",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Game Decided in Extra Time",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Game Decided in Extra Time",
              "betViewKey": "1385559087",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82799,
          "groupByModifiersGroupId": "82799-1",
          "type": "Single",
          "sysname": "MAIN|10",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385559086,
              "marketInstanceId": 1385559086,
              "marketEntityId": 9998,
              "marketSysname": "SOCCER_GAME_DECIDED_AFTER_PENALTIES",
              "betItems": [
                {
                  "id": "5756627280",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.2,
                  "oddsText": "4.20",
                  "isAvailable": true
                },
                {
                  "id": "5756627281",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.2,
                  "oddsText": "1.20",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Game Decided after Penalties",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Game Decided after Penalties",
              "betViewKey": "1385559086",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21865,
          "groupByModifiersGroupId": "21865-1",
          "type": "Single",
          "sysname": "MAIN|11",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557909,
              "marketInstanceId": 1385557909,
              "marketEntityId": 7080,
              "marketSysname": "SOCCER_FIRST_HALF_RESULT",
              "betItems": [
                {
                  "id": "5756620929",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620930",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.43,
                  "oddsText": "1.43",
                  "isAvailable": true
                },
                {
                  "id": "5756620931",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Half Time Result рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Half Time Result рџљЂ",
              "betViewKey": "1385557909",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21866,
          "groupByModifiersGroupId": "21866-1",
          "type": "Group",
          "sysname": "MAIN|12",
          "caption": "1st Half - Goals Over/Under рџљЂ",
          "betViews": [
            {
              "marketId": 1385557948,
              "marketInstanceId": 1385557948,
              "marketEntityId": 7114,
              "marketSysname": "SOCCER_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621071",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621072",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Goals Over/Under рџљЂ",
              "betViewKey": "1385557948",
              "modelType": "List"
            },
            {
              "marketId": 1385557949,
              "marketInstanceId": 1385557949,
              "marketEntityId": 7114,
              "marketSysname": "SOCCER_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621073",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621074",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.06,
                  "oddsText": "1.06",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Goals Over/Under рџљЂ",
              "betViewKey": "1385557949",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 44387,
          "groupByModifiersGroupId": "44387-1",
          "type": "Group",
          "sysname": "MAIN|13",
          "caption": "Match Handicap рџљЂ",
          "betViews": [
            {
              "marketId": 1385557976,
              "marketInstanceId": 1385557976,
              "marketEntityId": 7127,
              "marketSysname": "SOCCER_MATCH_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621131",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP +1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.17,
                  "oddsText": "1.17",
                  "isAvailable": true
                },
                {
                  "id": "5756621132",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ -1)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.1,
                  "oddsText": "5.10",
                  "isAvailable": true
                },
                {
                  "id": "5756621133",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ -1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Match Handicap (3-Way) рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Match Handicap (3-Way) рџљЂ",
              "betViewKey": "1385557976",
              "modelType": "List"
            },
            {
              "marketId": 1385557974,
              "marketInstanceId": 1385557974,
              "marketEntityId": 7127,
              "marketSysname": "SOCCER_MATCH_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621125",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.6,
                  "oddsText": "4.60",
                  "isAvailable": true
                },
                {
                  "id": "5756621126",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ +1)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.3,
                  "oddsText": "3.30",
                  "isAvailable": true
                },
                {
                  "id": "5756621127",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.69,
                  "oddsText": "1.69",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Match Handicap (3-Way) рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Match Handicap (3-Way) рџљЂ",
              "betViewKey": "1385557974",
              "modelType": "List"
            },
            {
              "marketId": 1385557973,
              "marketInstanceId": 1385557973,
              "marketEntityId": 7127,
              "marketSysname": "SOCCER_MATCH_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621122",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621123",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ +2)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.9,
                  "oddsText": "5.90",
                  "isAvailable": true
                },
                {
                  "id": "5756621124",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.16,
                  "oddsText": "1.16",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Match Handicap (3-Way) рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Match Handicap (3-Way) рџљЂ",
              "betViewKey": "1385557973",
              "modelType": "List"
            },
            {
              "marketId": 1385557972,
              "marketInstanceId": 1385557972,
              "marketEntityId": 7127,
              "marketSysname": "SOCCER_MATCH_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621119",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621120",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ +3)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.25,
                  "oddsText": "10.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621121",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.02,
                  "oddsText": "1.02",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Match Handicap (3-Way) рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Match Handicap (3-Way) рџљЂ",
              "betViewKey": "1385557972",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21467,
          "groupByModifiersGroupId": "21467-1",
          "type": "Single",
          "sysname": "MAIN|14",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557861,
              "marketInstanceId": 1385557861,
              "marketEntityId": 3,
              "marketSysname": "SOCCER_HALFTIME_FULLTIME",
              "betItems": [
                {
                  "id": "5756620795",
                  "code": "1/1",
                  "codeCaption": null,
                  "caption": "1/1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620796",
                  "code": "1/X",
                  "codeCaption": null,
                  "caption": "1/X",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620797",
                  "code": "1/2",
                  "codeCaption": null,
                  "caption": "1/2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620798",
                  "code": "X/1",
                  "codeCaption": null,
                  "caption": "X/1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756620799",
                  "code": "X/X",
                  "codeCaption": null,
                  "caption": "X/X",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756620800",
                  "code": "X/2",
                  "codeCaption": null,
                  "caption": "X/2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620801",
                  "code": "2/1",
                  "codeCaption": null,
                  "caption": "2/1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620802",
                  "code": "2/X",
                  "codeCaption": null,
                  "caption": "2/X",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620803",
                  "code": "2/2",
                  "codeCaption": null,
                  "caption": "2/2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Halftime/Fulltime",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Halftime/Fulltime",
              "betViewKey": "1385557861",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82798,
          "groupByModifiersGroupId": "82798-1",
          "type": "Single",
          "sysname": "MAIN|15",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558147,
              "marketInstanceId": 1385558147,
              "marketEntityId": 9996,
              "marketSysname": "SOCCER_HALFTIME_FULLTIME_DOUBLE_CHANCE",
              "betItems": [
                {
                  "id": "5756621840",
                  "code": "1X/1X",
                  "codeCaption": null,
                  "caption": "1X/1X",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.29,
                  "oddsText": "1.29",
                  "isAvailable": true
                },
                {
                  "id": "5756621841",
                  "code": "12/1X",
                  "codeCaption": null,
                  "caption": "12/1X ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621842",
                  "code": "X2/1X",
                  "codeCaption": null,
                  "caption": "X2/1X",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.62,
                  "oddsText": "1.62",
                  "isAvailable": true
                },
                {
                  "id": "5756621843",
                  "code": "1X/12",
                  "codeCaption": null,
                  "caption": "1X/12",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.62,
                  "oddsText": "1.62",
                  "isAvailable": true
                },
                {
                  "id": "5756621844",
                  "code": "12/12",
                  "codeCaption": null,
                  "caption": "12/12",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621845",
                  "code": "X2/12",
                  "codeCaption": null,
                  "caption": "X2/12",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5756621846",
                  "code": "1X/X2",
                  "codeCaption": null,
                  "caption": "1X/X2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5756621847",
                  "code": "12/X2",
                  "codeCaption": null,
                  "caption": "12/X2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621848",
                  "code": "X2/X2",
                  "codeCaption": null,
                  "caption": "X2/X2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Half-Time/Full-Time - Double Chance",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Half-Time/Full-Time - Double Chance",
              "betViewKey": "1385558147",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 220488,
          "groupByModifiersGroupId": "220488-1",
          "type": "BetSourceGroup",
          "sysname": "MAIN|16",
          "caption": "Players",
          "betViews": [
            {
              "marketId": 1385831285,
              "marketInstanceId": 1385831285,
              "marketEntityId": 33,
              "marketSysname": "SOCCER_GOAL_SCORER",
              "betItems": [
                {
                  "id": "5757721942",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5757721922",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721961",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721933",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721920",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721977",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721939",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721950",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721926",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721931",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721940",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721948",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721925",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721978",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721924",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721951",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721956",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721959",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721949",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721962",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Goalscorer рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Goal рџљЂ",
              "betViewKey": "1385831285",
              "modelType": "List"
            },
            {
              "marketId": 1385831290,
              "marketInstanceId": 1385831290,
              "marketEntityId": 7347,
              "marketSysname": "SOCCER_PLAYER_ANYTIME_YELLOW_CARD",
              "betItems": [
                {
                  "id": "5757722262",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5757722240",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5757722226",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5757722224",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722249",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722248",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722250",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722259",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722278",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5757722242",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5757722233",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.6,
                  "oddsText": "3.60",
                  "isAvailable": true
                },
                {
                  "id": "5757722231",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722256",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722261",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722277",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722220",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722222",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722225",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722239",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722247",
                  "code": "98982",
                  "codeCaption": null,
                  "caption": "Pereira  Weverton (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Yellow Card",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Card",
              "betViewKey": "1385831290",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": 0,
          "groupDisplayFormat": 1
        },
        {
          "id": 73293,
          "groupByModifiersGroupId": "73293-1",
          "type": "Single",
          "sysname": "MAIN|17",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1385558146,
              "marketInstanceId": 1385558146,
              "marketEntityId": 9747,
              "marketSysname": "SOCCER_CORRECT_SCORE_EXTENDED",
              "betItems": [
                {
                  "id": "5756621798",
                  "code": "0100",
                  "codeCaption": null,
                  "caption": "1 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.35,
                  "oddsText": "4.35",
                  "isAvailable": true
                },
                {
                  "id": "5756621793",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "0 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621819",
                  "code": "0001",
                  "codeCaption": null,
                  "caption": "0 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.6,
                  "oddsText": "7.60",
                  "isAvailable": true
                },
                {
                  "id": "5756621799",
                  "code": "0200",
                  "codeCaption": null,
                  "caption": "2 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.9,
                  "oddsText": "7.90",
                  "isAvailable": true
                },
                {
                  "id": "5756621794",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.2,
                  "oddsText": "6.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621820",
                  "code": "0002",
                  "codeCaption": null,
                  "caption": "0 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 25.0,
                  "oddsText": "25.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621800",
                  "code": "0201",
                  "codeCaption": null,
                  "caption": "2 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.5,
                  "oddsText": "11.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621795",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 33.0,
                  "oddsText": "33.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621821",
                  "code": "0102",
                  "codeCaption": null,
                  "caption": "1 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621801",
                  "code": "0300",
                  "codeCaption": null,
                  "caption": "3 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621796",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 401.0,
                  "oddsText": "401.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621822",
                  "code": "0003",
                  "codeCaption": null,
                  "caption": "0 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621802",
                  "code": "0301",
                  "codeCaption": null,
                  "caption": "3 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 32.0,
                  "oddsText": "32.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621823",
                  "code": "0103",
                  "codeCaption": null,
                  "caption": "1 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621803",
                  "code": "0302",
                  "codeCaption": null,
                  "caption": "3 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621824",
                  "code": "0203",
                  "codeCaption": null,
                  "caption": "2 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621804",
                  "code": "0400",
                  "codeCaption": null,
                  "caption": "4 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621825",
                  "code": "0004",
                  "codeCaption": null,
                  "caption": "0 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 501.0,
                  "oddsText": "501.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621805",
                  "code": "0401",
                  "codeCaption": null,
                  "caption": "4 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621826",
                  "code": "0104",
                  "codeCaption": null,
                  "caption": "1 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 501.0,
                  "oddsText": "501.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621806",
                  "code": "0402",
                  "codeCaption": null,
                  "caption": "4 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 351.0,
                  "oddsText": "351.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5756621808",
                  "code": "0500",
                  "codeCaption": null,
                  "caption": "5 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 301.0,
                  "oddsText": "301.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5756621809",
                  "code": "0501",
                  "codeCaption": null,
                  "caption": "5 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 451.0,
                  "oddsText": "451.00",
                  "isAvailable": true
                },
                null,
                null
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table",
              "caption": "Correct Score",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Correct Score",
              "betViewKey": "1385558146",
              "modelType": "Table"
            }
          ],
          "showMore": 18,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 70492,
          "groupByModifiersGroupId": "70492-1",
          "type": "Single",
          "sysname": "MAIN|18",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557900,
              "marketInstanceId": 1385557900,
              "marketEntityId": 246,
              "marketSysname": "SOCCER_MULTIPLE_CORRECT_SCORE",
              "betItems": [
                {
                  "id": "5756620885",
                  "code": "S1",
                  "codeCaption": null,
                  "caption": "1 - 0, 2 - 0, 3 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620886",
                  "code": "S2",
                  "codeCaption": null,
                  "caption": "0 - 1, 0 - 2, 0 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.3,
                  "oddsText": "6.30",
                  "isAvailable": true
                },
                {
                  "id": "5756620887",
                  "code": "S3",
                  "codeCaption": null,
                  "caption": "4 - 0, 5 - 0, 6 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620888",
                  "code": "S4",
                  "codeCaption": null,
                  "caption": "0 - 4, 0 - 5, 0 - 6",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 501.0,
                  "oddsText": "501.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620889",
                  "code": "S5",
                  "codeCaption": null,
                  "caption": "2 - 1, 3 - 1, 4 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.9,
                  "oddsText": "8.90",
                  "isAvailable": true
                },
                {
                  "id": "5756620890",
                  "code": "S6",
                  "codeCaption": null,
                  "caption": "1 - 2, 1 - 3, 1 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 18.75,
                  "oddsText": "18.75",
                  "isAvailable": true
                },
                {
                  "id": "5756620891",
                  "code": "S7",
                  "codeCaption": null,
                  "caption": "3 - 2, 4 - 2, 4 - 3, 5 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620892",
                  "code": "S8",
                  "codeCaption": null,
                  "caption": "2 - 3, 2 - 4, 3 - 4, 1 - 5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620893",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "0 - 0, 1 - 1, 2 - 2, 3 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.6,
                  "oddsText": "2.60",
                  "isAvailable": true
                },
                {
                  "id": "5756620894",
                  "code": "ANY",
                  "codeCaption": null,
                  "caption": "Any Other Score",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 501.0,
                  "oddsText": "501.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Multiple Correct Score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Multiple Correct Score",
              "betViewKey": "1385557900",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 103261,
          "groupByModifiersGroupId": "103261-1",
          "type": "Single",
          "sysname": "MAIN|19",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1385558144,
              "marketInstanceId": 1385558144,
              "marketEntityId": 9240,
              "marketSysname": "SOCCER_ANYTIME_CORRECT_SCORE",
              "betItems": [
                {
                  "id": "5756621755",
                  "code": "0100",
                  "codeCaption": null,
                  "caption": "1 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.8,
                  "oddsText": "1.80",
                  "isAvailable": true
                },
                {
                  "id": "5756621751",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.45,
                  "oddsText": "3.45",
                  "isAvailable": true
                },
                {
                  "id": "5756621773",
                  "code": "0001",
                  "codeCaption": null,
                  "caption": "0 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                },
                {
                  "id": "5756621756",
                  "code": "0200",
                  "codeCaption": null,
                  "caption": "2 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.8,
                  "oddsText": "3.80",
                  "isAvailable": true
                },
                {
                  "id": "5756621752",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 27.0,
                  "oddsText": "27.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621774",
                  "code": "0002",
                  "codeCaption": null,
                  "caption": "0 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.5,
                  "oddsText": "11.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621757",
                  "code": "0300",
                  "codeCaption": null,
                  "caption": "3 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621753",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 401.0,
                  "oddsText": "401.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621775",
                  "code": "0003",
                  "codeCaption": null,
                  "caption": "0 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621758",
                  "code": "0400",
                  "codeCaption": null,
                  "caption": "4 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 50.0,
                  "oddsText": "50.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621776",
                  "code": "0004",
                  "codeCaption": null,
                  "caption": "0 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 501.0,
                  "oddsText": "501.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621759",
                  "code": "0500",
                  "codeCaption": null,
                  "caption": "5 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621780",
                  "code": "0102",
                  "codeCaption": null,
                  "caption": "1 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621762",
                  "code": "0201",
                  "codeCaption": null,
                  "caption": "2 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.3,
                  "oddsText": "7.30",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621781",
                  "code": "0103",
                  "codeCaption": null,
                  "caption": "1 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621763",
                  "code": "0301",
                  "codeCaption": null,
                  "caption": "3 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 22.0,
                  "oddsText": "22.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621782",
                  "code": "0104",
                  "codeCaption": null,
                  "caption": "1 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 501.0,
                  "oddsText": "501.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621764",
                  "code": "0401",
                  "codeCaption": null,
                  "caption": "4 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756621786",
                  "code": "0203",
                  "codeCaption": null,
                  "caption": "2 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621765",
                  "code": "0501",
                  "codeCaption": null,
                  "caption": "5 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 401.0,
                  "oddsText": "401.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5756621768",
                  "code": "0302",
                  "codeCaption": null,
                  "caption": "3 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5756621769",
                  "code": "0402",
                  "codeCaption": null,
                  "caption": "4 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 301.0,
                  "oddsText": "301.00",
                  "isAvailable": true
                },
                null,
                null
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table",
              "caption": "Anytime Correct Score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Anytime Correct Score",
              "betViewKey": "1385558144",
              "modelType": "Table"
            }
          ],
          "showMore": 18,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21863,
          "groupByModifiersGroupId": "21863-1",
          "type": "Single",
          "sysname": "MAIN|20",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446330,
              "marketInstanceId": 1386446330,
              "marketEntityId": 7166,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130932",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 10.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5760130933",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 10.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.8,
                  "oddsText": "1.80",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under рџљЂ",
              "betViewKey": "1386446330",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21864,
          "groupByModifiersGroupId": "21864-1",
          "type": "Single",
          "sysname": "MAIN|21",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446292,
              "marketInstanceId": 1386446292,
              "marketEntityId": 7134,
              "marketSysname": "SOCCER_YELLOW_CARDS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130845",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.76,
                  "oddsText": "1.76",
                  "isAvailable": true
                },
                {
                  "id": "5760130846",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.98,
                  "oddsText": "1.98",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Yellow Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Over/Under",
              "betViewKey": "1386446292",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 45339,
          "groupByModifiersGroupId": "45339-1",
          "type": "Single",
          "sysname": "MAIN|22",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446447,
              "marketInstanceId": 1386446447,
              "marketEntityId": 7204,
              "marketSysname": "SOCCER_RED_CARDS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131193",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.15,
                  "oddsText": "3.15",
                  "isAvailable": true
                },
                {
                  "id": "5760131194",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.33,
                  "oddsText": "1.33",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Red Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Red Cards Over/Under",
              "betViewKey": "1386446447",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 51841,
          "groupByModifiersGroupId": "51841-1",
          "type": "Single",
          "sysname": "MAIN|23",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446477,
              "marketInstanceId": 1386446477,
              "marketEntityId": 8344,
              "marketSysname": "SOCCER_PENALTY_TAKEN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131274",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.05,
                  "oddsText": "4.05",
                  "isAvailable": true
                },
                {
                  "id": "5760131275",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.27,
                  "oddsText": "1.27",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Penalty Awarded",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Penalty Awarded",
              "betViewKey": "1386446477",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21464,
          "groupByModifiersGroupId": "21464-1",
          "type": "Single",
          "sysname": "MAIN|24",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557895,
              "marketInstanceId": 1385557895,
              "marketEntityId": 153,
              "marketSysname": "SOCCER_MATCH_RESULT_NOHOME",
              "betItems": [
                {
                  "id": "5756620873",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5756620874",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.6,
                  "oddsText": "2.60",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Home Оќo О’et",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Home Оќo О’et",
              "betViewKey": "1385557895",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21465,
          "groupByModifiersGroupId": "21465-1",
          "type": "Single",
          "sysname": "MAIN|25",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557896,
              "marketInstanceId": 1385557896,
              "marketEntityId": 154,
              "marketSysname": "SOCCER_MATCH_RESULT_NOAWAY",
              "betItems": [
                {
                  "id": "5756620875",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.67,
                  "oddsText": "1.67",
                  "isAvailable": true
                },
                {
                  "id": "5756620876",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Away No Bet",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Away No Bet",
              "betViewKey": "1385557896",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 87305,
          "groupByModifiersGroupId": "87305-1",
          "type": "Single",
          "sysname": "MAIN|26",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557924,
              "marketInstanceId": 1385557924,
              "marketEntityId": 7109,
              "marketSysname": "SOCCER_MATCH_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621003",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "1 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621004",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "1 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621005",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "2 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621006",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "2 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621007",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "О§ & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621008",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "О§ & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Full Time Result & Goals Over/Under (1.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Goals Over/Under (1.5)",
              "betViewKey": "1385557924",
              "modelType": "List"
            },
            {
              "marketId": 1385557925,
              "marketInstanceId": 1385557925,
              "marketEntityId": 7109,
              "marketSysname": "SOCCER_MATCH_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621009",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "1 & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621010",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "1 & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621011",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "2 & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621012",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "2 & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621013",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "О§ & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621014",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "О§ & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Full Time Result & Goals Over/Under (2.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Goals Over/Under (2.5)",
              "betViewKey": "1385557925",
              "modelType": "List"
            },
            {
              "marketId": 1385557926,
              "marketInstanceId": 1385557926,
              "marketEntityId": 7109,
              "marketSysname": "SOCCER_MATCH_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621015",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "1 & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621016",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "1 & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621017",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "2 & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621018",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "2 & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621019",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "О§ & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621020",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "О§ & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Full Time Result & Goals Over/Under (3.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Goals Over/Under (3.5)",
              "betViewKey": "1385557926",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21471,
          "groupByModifiersGroupId": "21471-1",
          "type": "Single",
          "sysname": "MAIN|27",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1385557908,
              "marketInstanceId": 1385557908,
              "marketEntityId": 1232,
              "marketSysname": "SOCCER_MATCH_RESULT_BOTH_TO_SCORE",
              "betItems": [
                {
                  "id": "5756620923",
                  "code": "1Y",
                  "codeCaption": null,
                  "caption": "Palmeiras SP & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620925",
                  "code": "XY",
                  "codeCaption": null,
                  "caption": "Draw & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620927",
                  "code": "2Y",
                  "codeCaption": null,
                  "caption": "Botafogo RJ & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620924",
                  "code": "1N",
                  "codeCaption": null,
                  "caption": "Palmeiras SP & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.65,
                  "oddsText": "2.65",
                  "isAvailable": true
                },
                {
                  "id": "5756620926",
                  "code": "XN",
                  "codeCaption": null,
                  "caption": "Draw & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620928",
                  "code": "2N",
                  "codeCaption": null,
                  "caption": "Botafogo RJ & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table",
              "caption": "Full Time Result & Both teams to score",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Both teams to score",
              "betViewKey": "1385557908",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21475,
          "groupByModifiersGroupId": "21475-1",
          "type": "Group",
          "sysname": "MAIN|28",
          "caption": "Both Teams to Score and Over/Under",
          "betViews": [
            {
              "marketId": 1385558030,
              "marketInstanceId": 1385558030,
              "marketEntityId": 7340,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621481",
                  "code": "Y/O",
                  "codeCaption": null,
                  "caption": "Yes & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.25,
                  "oddsText": "4.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621482",
                  "code": "Y/U",
                  "codeCaption": null,
                  "caption": "Yes & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.2,
                  "oddsText": "6.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621483",
                  "code": "N/O",
                  "codeCaption": null,
                  "caption": "No & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.25,
                  "oddsText": "13.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621484",
                  "code": "N/U",
                  "codeCaption": null,
                  "caption": "No & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.47,
                  "oddsText": "1.47",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score & Goals Over/Under (2.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score & Goals Over/Under (2.5)",
              "betViewKey": "1385558030",
              "modelType": "List"
            },
            {
              "marketId": 1385558031,
              "marketInstanceId": 1385558031,
              "marketEntityId": 7340,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621485",
                  "code": "Y/O",
                  "codeCaption": null,
                  "caption": "Yes & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621486",
                  "code": "Y/U",
                  "codeCaption": null,
                  "caption": "Yes & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621487",
                  "code": "N/O",
                  "codeCaption": null,
                  "caption": "No & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621488",
                  "code": "N/U",
                  "codeCaption": null,
                  "caption": "No & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.37,
                  "oddsText": "1.37",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score & Goals Over/Under (3.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score & Goals Over/Under (3.5)",
              "betViewKey": "1385558031",
              "modelType": "List"
            },
            {
              "marketId": 1385558032,
              "marketInstanceId": 1385558032,
              "marketEntityId": 7340,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621489",
                  "code": "Y/O",
                  "codeCaption": null,
                  "caption": "Yes & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 25.0,
                  "oddsText": "25.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621490",
                  "code": "Y/U",
                  "codeCaption": null,
                  "caption": "Yes & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621491",
                  "code": "N/O",
                  "codeCaption": null,
                  "caption": "No & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621492",
                  "code": "N/U",
                  "codeCaption": null,
                  "caption": "No & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.34,
                  "oddsText": "1.34",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score & Goals Over/Under (4.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score & Goals Over/Under (4.5)",
              "betViewKey": "1385558032",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "GOALS",
      "caption": "Goals",
      "items": [
        {
          "id": 21497,
          "groupByModifiersGroupId": "21497-1",
          "type": "Group",
          "sysname": "GOALS|0",
          "caption": "1st Half - Goals Over/Under рџљЂ",
          "betViews": [
            {
              "marketId": 1385557948,
              "marketInstanceId": 1385557948,
              "marketEntityId": 7114,
              "marketSysname": "SOCCER_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621071",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621072",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Goals Over/Under рџљЂ",
              "betViewKey": "1385557948",
              "modelType": "List"
            },
            {
              "marketId": 1385557949,
              "marketInstanceId": 1385557949,
              "marketEntityId": 7114,
              "marketSysname": "SOCCER_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621073",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621074",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.06,
                  "oddsText": "1.06",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Goals Over/Under рџљЂ",
              "betViewKey": "1385557949",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21498,
          "groupByModifiersGroupId": "21498-1",
          "type": "Single",
          "sysname": "GOALS|1",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557911,
              "marketInstanceId": 1385557911,
              "marketEntityId": 7082,
              "marketSysname": "SOCCER_FIRST_HALF_BOTH_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756620935",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.5,
                  "oddsText": "11.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620936",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.01,
                  "oddsText": "1.01",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Both teams to score",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Both teams to score",
              "betViewKey": "1385557911",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21489,
          "groupByModifiersGroupId": "21489-1",
          "type": "Group",
          "sysname": "GOALS|2",
          "caption": "Home Goals Over/Under",
          "betViews": [
            {
              "marketId": 1385557932,
              "marketInstanceId": 1385557932,
              "marketEntityId": 7112,
              "marketSysname": "SOCCER_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621039",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.44,
                  "oddsText": "1.44",
                  "isAvailable": true
                },
                {
                  "id": "5756621040",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Goals Over/Under ",
              "betViewKey": "1385557932",
              "modelType": "List"
            },
            {
              "marketId": 1385557933,
              "marketInstanceId": 1385557933,
              "marketEntityId": 7112,
              "marketSysname": "SOCCER_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621041",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621042",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.36,
                  "oddsText": "1.36",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Goals Over/Under ",
              "betViewKey": "1385557933",
              "modelType": "List"
            },
            {
              "marketId": 1385557934,
              "marketInstanceId": 1385557934,
              "marketEntityId": 7112,
              "marketSysname": "SOCCER_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621043",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621044",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.07,
                  "oddsText": "1.07",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Goals Over/Under ",
              "betViewKey": "1385557934",
              "modelType": "List"
            },
            {
              "marketId": 1385557935,
              "marketInstanceId": 1385557935,
              "marketEntityId": 7112,
              "marketSysname": "SOCCER_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621045",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621046",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.02,
                  "oddsText": "1.02",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Goals Over/Under ",
              "betViewKey": "1385557935",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21490,
          "groupByModifiersGroupId": "21490-1",
          "type": "Group",
          "sysname": "GOALS|3",
          "caption": "Away Goals Over/Under",
          "betViews": [
            {
              "marketId": 1385557940,
              "marketInstanceId": 1385557940,
              "marketEntityId": 7113,
              "marketSysname": "SOCCER_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621055",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621056",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Goals Over/Under ",
              "betViewKey": "1385557940",
              "modelType": "List"
            },
            {
              "marketId": 1385557941,
              "marketInstanceId": 1385557941,
              "marketEntityId": 7113,
              "marketSysname": "SOCCER_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621057",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621058",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.12,
                  "oddsText": "1.12",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Goals Over/Under ",
              "betViewKey": "1385557941",
              "modelType": "List"
            },
            {
              "marketId": 1385557942,
              "marketInstanceId": 1385557942,
              "marketEntityId": 7113,
              "marketSysname": "SOCCER_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621059",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621060",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.01,
                  "oddsText": "1.01",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Goals Over/Under ",
              "betViewKey": "1385557942",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 54757,
          "groupByModifiersGroupId": "54757-1",
          "type": "Single",
          "sysname": "GOALS|4",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557907,
              "marketInstanceId": 1385557907,
              "marketEntityId": 1156,
              "marketSysname": "SOCCER_TOTAL_GOALS",
              "betItems": [
                {
                  "id": "5756620919",
                  "code": "0001",
                  "codeCaption": null,
                  "caption": "0 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5756620920",
                  "code": "0203",
                  "codeCaption": null,
                  "caption": "2 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.2,
                  "oddsText": "2.20",
                  "isAvailable": true
                },
                {
                  "id": "5756620921",
                  "code": "0406",
                  "codeCaption": null,
                  "caption": "4 - 6",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620922",
                  "code": "07+",
                  "codeCaption": null,
                  "caption": "7 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Match Total Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Match Total Goals",
              "betViewKey": "1385557907",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 45341,
          "groupByModifiersGroupId": "45341-1",
          "type": "Single",
          "sysname": "GOALS|5",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557886,
              "marketInstanceId": 1385557886,
              "marketEntityId": 106,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756620854",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620855",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.42,
                  "oddsText": "1.42",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score рџљЂ",
              "betViewKey": "1385557886",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21481,
          "groupByModifiersGroupId": "21481-1",
          "type": "Single",
          "sysname": "GOALS|6",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557864,
              "marketInstanceId": 1385557864,
              "marketEntityId": 34,
              "marketSysname": "SOCCER_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756620809",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "No Team",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620810",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "One Team",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.9,
                  "oddsText": "1.90",
                  "isAvailable": true
                },
                {
                  "id": "5756620811",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Both Teams",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Teams To Score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Teams To Score",
              "betViewKey": "1385557864",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 67799,
          "groupByModifiersGroupId": "67799-1",
          "type": "Single",
          "sysname": "GOALS|7",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558066,
              "marketInstanceId": 1385558066,
              "marketEntityId": 7352,
              "marketSysname": "SOCCER_GOAL_N_BEFORE_AFTER_MINUTE",
              "betItems": [
                {
                  "id": "5756621572",
                  "code": "Until",
                  "codeCaption": null,
                  "caption": "Goal Until 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.58,
                  "oddsText": "1.58",
                  "isAvailable": true
                },
                {
                  "id": "5756621573",
                  "code": "After",
                  "codeCaption": null,
                  "caption": "Goal After 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.45,
                  "oddsText": "3.45",
                  "isAvailable": true
                },
                {
                  "id": "5756621574",
                  "code": "NG",
                  "codeCaption": null,
                  "caption": "No Goal",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Goal (1) before/after 60:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) before/after 60:00",
              "betViewKey": "1385558066",
              "modelType": "List"
            },
            {
              "marketId": 1385558067,
              "marketInstanceId": 1385558067,
              "marketEntityId": 7352,
              "marketSysname": "SOCCER_GOAL_N_BEFORE_AFTER_MINUTE",
              "betItems": [
                {
                  "id": "5756621575",
                  "code": "Until",
                  "codeCaption": null,
                  "caption": "Goal Until 75:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                },
                {
                  "id": "5756621576",
                  "code": "After",
                  "codeCaption": null,
                  "caption": "Goal After 75:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.8,
                  "oddsText": "6.80",
                  "isAvailable": true
                },
                {
                  "id": "5756621577",
                  "code": "NG",
                  "codeCaption": null,
                  "caption": "No Goal",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Goal (1) before/after 75:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) before/after 75:00",
              "betViewKey": "1385558067",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21483,
          "groupByModifiersGroupId": "21483-1",
          "type": "Single",
          "sysname": "GOALS|8",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557887,
              "marketInstanceId": 1385557887,
              "marketEntityId": 107,
              "marketSysname": "SOCCER_HOME_CLEAN_SHEET",
              "betItems": [
                {
                  "id": "5756620856",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.75,
                  "oddsText": "1.75",
                  "isAvailable": true
                },
                {
                  "id": "5756620857",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Clean Sheet",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Clean Sheet",
              "betViewKey": "1385557887",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21484,
          "groupByModifiersGroupId": "21484-1",
          "type": "Single",
          "sysname": "GOALS|9",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557888,
              "marketInstanceId": 1385557888,
              "marketEntityId": 108,
              "marketSysname": "SOCCER_AWAY_CLEAN_SHEET",
              "betItems": [
                {
                  "id": "5756620858",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.65,
                  "oddsText": "2.65",
                  "isAvailable": true
                },
                {
                  "id": "5756620859",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.44,
                  "oddsText": "1.44",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Clean Sheet",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Clean Sheet",
              "betViewKey": "1385557888",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21485,
          "groupByModifiersGroupId": "21485-1",
          "type": "Single",
          "sysname": "GOALS|10",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558006,
              "marketInstanceId": 1385558006,
              "marketEntityId": 7225,
              "marketSysname": "SOCCER_GOAL_N_TYPE",
              "betItems": [
                {
                  "id": "5756621293",
                  "code": "Sh",
                  "codeCaption": null,
                  "caption": "Shot",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.64,
                  "oddsText": "1.64",
                  "isAvailable": true
                },
                {
                  "id": "5756621294",
                  "code": "He",
                  "codeCaption": null,
                  "caption": "Header",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.2,
                  "oddsText": "6.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621295",
                  "code": "Pe",
                  "codeCaption": null,
                  "caption": "Penalty",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.6,
                  "oddsText": "7.60",
                  "isAvailable": true
                },
                {
                  "id": "5756621296",
                  "code": "FK",
                  "codeCaption": null,
                  "caption": "Free Kick",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 18.0,
                  "oddsText": "18.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621297",
                  "code": "OG",
                  "codeCaption": null,
                  "caption": "Own Goal",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 30.0,
                  "oddsText": "30.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621298",
                  "code": "NG",
                  "codeCaption": null,
                  "caption": "No Goal",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "How will Goal (1) be scored",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "How will Goal (1) be scored",
              "betViewKey": "1385558006",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21487,
          "groupByModifiersGroupId": "21487-1",
          "type": "Single",
          "sysname": "GOALS|11",
          "caption": null,
          "betViews": [
            {
              "numColumns": 2,
              "marketId": 1385557903,
              "marketInstanceId": 1385557903,
              "marketEntityId": 887,
              "marketSysname": "SOCCER_WINNER_BY_GOAL_MARGIN",
              "betItems": [
                {
                  "id": "5756620904",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP by 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756620908",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "Botafogo RJ by 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620905",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Palmeiras SP by 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620909",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "Botafogo RJ by 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620906",
                  "code": "3",
                  "codeCaption": null,
                  "caption": "Palmeiras SP by 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620910",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "Botafogo RJ by 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620907",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "Palmeiras SP by 4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620911",
                  "code": "8",
                  "codeCaption": null,
                  "caption": "Botafogo RJ by 4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620912",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.7,
                  "oddsText": "2.70",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table-Footer",
              "caption": "Winning Margin",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Winning Margin",
              "betViewKey": "1385557903",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21492,
          "groupByModifiersGroupId": "21492-1",
          "type": "Single",
          "sysname": "GOALS|12",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557901,
              "marketInstanceId": 1385557901,
              "marketEntityId": 247,
              "marketSysname": "SOCCER_NUMBER_OF_GOALS",
              "betItems": [
                {
                  "id": "5756620895",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620896",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.05,
                  "oddsText": "3.05",
                  "isAvailable": true
                },
                {
                  "id": "5756620897",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756620898",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.45,
                  "oddsText": "5.45",
                  "isAvailable": true
                },
                {
                  "id": "5756620899",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620900",
                  "code": "05+",
                  "codeCaption": null,
                  "caption": "5 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Exact Number Of Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Exact Number Of Goals",
              "betViewKey": "1385557901",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21493,
          "groupByModifiersGroupId": "21493-1",
          "type": "Single",
          "sysname": "GOALS|13",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557918,
              "marketInstanceId": 1385557918,
              "marketEntityId": 7095,
              "marketSysname": "SOCCER_NUMBER_OF_GOALS_HOME",
              "betItems": [
                {
                  "id": "5756620979",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5756620980",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5756620981",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.3,
                  "oddsText": "4.30",
                  "isAvailable": true
                },
                {
                  "id": "5756620982",
                  "code": "03+",
                  "codeCaption": null,
                  "caption": "3 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Exact Number of Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Exact Number of Goals",
              "betViewKey": "1385557918",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21494,
          "groupByModifiersGroupId": "21494-1",
          "type": "Single",
          "sysname": "GOALS|14",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557919,
              "marketInstanceId": 1385557919,
              "marketEntityId": 7096,
              "marketSysname": "SOCCER_NUMBER_OF_GOALS_AWAY",
              "betItems": [
                {
                  "id": "5756620983",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                },
                {
                  "id": "5756620984",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.55,
                  "oddsText": "2.55",
                  "isAvailable": true
                },
                {
                  "id": "5756620985",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.7,
                  "oddsText": "7.70",
                  "isAvailable": true
                },
                {
                  "id": "5756620986",
                  "code": "03+",
                  "codeCaption": null,
                  "caption": "3 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Exact Number Of Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Exact Number Of Goals",
              "betViewKey": "1385557919",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21486,
          "groupByModifiersGroupId": "21486-1",
          "type": "Single",
          "sysname": "GOALS|15",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557865,
              "marketInstanceId": 1385557865,
              "marketEntityId": 35,
              "marketSysname": "SOCCER_GOALS_ODD_EVEN",
              "betItems": [
                {
                  "id": "5756620812",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Odd",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.98,
                  "oddsText": "1.98",
                  "isAvailable": true
                },
                {
                  "id": "5756620813",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "Even",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.76,
                  "oddsText": "1.76",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goals Odd/Even",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Goals Odd/Even",
              "betViewKey": "1385557865",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 100012,
          "groupByModifiersGroupId": "100012-1",
          "type": "Single",
          "sysname": "GOALS|16",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558034,
              "marketInstanceId": 1385558034,
              "marketEntityId": 7341,
              "marketSysname": "SOCCER_NUMBER_OF_GOALS_EXTENDED_RANGE",
              "betItems": [
                {
                  "id": "5756621497",
                  "code": "0002",
                  "codeCaption": null,
                  "caption": "0-2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                },
                {
                  "id": "5756621498",
                  "code": "0003",
                  "codeCaption": null,
                  "caption": "0-3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.08,
                  "oddsText": "1.08",
                  "isAvailable": true
                },
                {
                  "id": "5756621499",
                  "code": "0004",
                  "codeCaption": null,
                  "caption": "0-4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.02,
                  "oddsText": "1.02",
                  "isAvailable": true
                },
                {
                  "id": "5756621500",
                  "code": "0102",
                  "codeCaption": null,
                  "caption": "1-2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.7,
                  "oddsText": "1.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621501",
                  "code": "0103",
                  "codeCaption": null,
                  "caption": "1-3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.37,
                  "oddsText": "1.37",
                  "isAvailable": true
                },
                {
                  "id": "5756621502",
                  "code": "0104",
                  "codeCaption": null,
                  "caption": "1-4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.26,
                  "oddsText": "1.26",
                  "isAvailable": true
                },
                {
                  "id": "5756621503",
                  "code": "0105",
                  "codeCaption": null,
                  "caption": "1-5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.23,
                  "oddsText": "1.23",
                  "isAvailable": true
                },
                {
                  "id": "5756621504",
                  "code": "0204",
                  "codeCaption": null,
                  "caption": "2-4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.95,
                  "oddsText": "1.95",
                  "isAvailable": true
                },
                {
                  "id": "5756621505",
                  "code": "0205",
                  "codeCaption": null,
                  "caption": "2-5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.86,
                  "oddsText": "1.86",
                  "isAvailable": true
                },
                {
                  "id": "5756621506",
                  "code": "0304",
                  "codeCaption": null,
                  "caption": "3-4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.1,
                  "oddsText": "4.10",
                  "isAvailable": true
                },
                {
                  "id": "5756621507",
                  "code": "0305",
                  "codeCaption": null,
                  "caption": "3-5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Number Of Goals",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Number Of Goals",
              "betViewKey": "1385558034",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "HALVES",
      "caption": "Half Markets",
      "items": [
        {
          "id": 21500,
          "groupByModifiersGroupId": "21500-1",
          "type": "Single",
          "sysname": "HALVES|0",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557909,
              "marketInstanceId": 1385557909,
              "marketEntityId": 7080,
              "marketSysname": "SOCCER_FIRST_HALF_RESULT",
              "betItems": [
                {
                  "id": "5756620929",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620930",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.43,
                  "oddsText": "1.43",
                  "isAvailable": true
                },
                {
                  "id": "5756620931",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Half Time Result рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Half Time Result рџљЂ",
              "betViewKey": "1385557909",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21501,
          "groupByModifiersGroupId": "21501-1",
          "type": "Group",
          "sysname": "HALVES|1",
          "caption": "1st Half - Goals Over/Under рџљЂ",
          "betViews": [
            {
              "marketId": 1385557948,
              "marketInstanceId": 1385557948,
              "marketEntityId": 7114,
              "marketSysname": "SOCCER_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621071",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621072",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Goals Over/Under рџљЂ",
              "betViewKey": "1385557948",
              "modelType": "List"
            },
            {
              "marketId": 1385557949,
              "marketInstanceId": 1385557949,
              "marketEntityId": 7114,
              "marketSysname": "SOCCER_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621073",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621074",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.06,
                  "oddsText": "1.06",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Goals Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Goals Over/Under рџљЂ",
              "betViewKey": "1385557949",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21513,
          "groupByModifiersGroupId": "21513-1",
          "type": "Single",
          "sysname": "HALVES|2",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557916,
              "marketInstanceId": 1385557916,
              "marketEntityId": 7089,
              "marketSysname": "SOCCER_FIRST_HALF_TEAM_TO_SCORE_GOAL_N",
              "betItems": [
                {
                  "id": "5756620950",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.65,
                  "oddsText": "3.65",
                  "isAvailable": true
                },
                {
                  "id": "5756620951",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620952",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.4,
                  "oddsText": "6.40",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "1st Half - Team to Score Goal (1)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Team to Score Goal (1)",
              "betViewKey": "1385557916",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21504,
          "groupByModifiersGroupId": "21504-1",
          "type": "Single",
          "sysname": "HALVES|3",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557911,
              "marketInstanceId": 1385557911,
              "marketEntityId": 7082,
              "marketSysname": "SOCCER_FIRST_HALF_BOTH_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756620935",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.5,
                  "oddsText": "11.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620936",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.01,
                  "oddsText": "1.01",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Both teams to score",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Both teams to score",
              "betViewKey": "1385557911",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21517,
          "groupByModifiersGroupId": "21517-1",
          "type": "Single",
          "sysname": "HALVES|4",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557910,
              "marketInstanceId": 1385557910,
              "marketEntityId": 7081,
              "marketSysname": "SOCCER_FIRST_HALF_DOUBLE_CHANCE",
              "betItems": [
                {
                  "id": "5756620932",
                  "code": "1X",
                  "codeCaption": null,
                  "caption": "Palmeiras SP / Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.1,
                  "oddsText": "1.10",
                  "isAvailable": true
                },
                {
                  "id": "5756620933",
                  "code": "X2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ / Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.25,
                  "oddsText": "1.25",
                  "isAvailable": true
                },
                {
                  "id": "5756620934",
                  "code": "12",
                  "codeCaption": null,
                  "caption": "Palmeiras SP / Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "1st Half - Double Chance",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Double Chance",
              "betViewKey": "1385557910",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82835,
          "groupByModifiersGroupId": "82835-1",
          "type": "Single",
          "sysname": "HALVES|5",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558145,
              "marketInstanceId": 1385558145,
              "marketEntityId": 9516,
              "marketSysname": "SOCCER_TO_WIN_EITHER_HALF",
              "betItems": [
                {
                  "id": "5756621791",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.75,
                  "oddsText": "1.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621792",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.15,
                  "oddsText": "3.15",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "To Win Either Half",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "To Win Either Half",
              "betViewKey": "1385558145",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82831,
          "groupByModifiersGroupId": "82831-1",
          "type": "Single",
          "sysname": "HALVES|6",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557899,
              "marketInstanceId": 1385557899,
              "marketEntityId": 245,
              "marketSysname": "SOCCER_TEAM_TO_WIN_BOTH_HALVES",
              "betItems": [
                {
                  "id": "5756620882",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.8,
                  "oddsText": "7.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620883",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "Neither",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.08,
                  "oddsText": "1.08",
                  "isAvailable": true
                },
                {
                  "id": "5756620884",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 31.0,
                  "oddsText": "31.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Team to Win Both Halves",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Team to Win Both Halves",
              "betViewKey": "1385557899",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 55006,
          "groupByModifiersGroupId": "55006-1",
          "type": "Group",
          "sysname": "HALVES|7",
          "caption": "1st Half Asian Goals Over/Under",
          "betViews": [
            {
              "marketId": 1385558132,
              "marketInstanceId": 1385558132,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621719",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621720",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.51,
                  "oddsText": "1.51",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558132",
              "modelType": "List"
            },
            {
              "marketId": 1385558133,
              "marketInstanceId": 1385558133,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621721",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621722",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558133",
              "modelType": "List"
            },
            {
              "marketId": 1385558134,
              "marketInstanceId": 1385558134,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621723",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.7,
                  "oddsText": "6.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621724",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.09,
                  "oddsText": "1.09",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558134",
              "modelType": "List"
            },
            {
              "marketId": 1385558135,
              "marketInstanceId": 1385558135,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621725",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.7,
                  "oddsText": "7.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621726",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.07,
                  "oddsText": "1.07",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558135",
              "modelType": "List"
            },
            {
              "marketId": 1385558136,
              "marketInstanceId": 1385558136,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621727",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621728",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.06,
                  "oddsText": "1.06",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558136",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21515,
          "groupByModifiersGroupId": "21515-1",
          "type": "Single",
          "sysname": "HALVES|8",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1385557917,
              "marketInstanceId": 1385557917,
              "marketEntityId": 7094,
              "marketSysname": "SOCCER_FIRST_HALF_CORRECT_SCORE",
              "betItems": [
                {
                  "id": "5756620953",
                  "code": "0100",
                  "codeCaption": null,
                  "caption": "1 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620963",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "0 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620968",
                  "code": "0001",
                  "codeCaption": null,
                  "caption": "0 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620954",
                  "code": "0200",
                  "codeCaption": null,
                  "caption": "2 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620964",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620969",
                  "code": "0002",
                  "codeCaption": null,
                  "caption": "0 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620955",
                  "code": "0201",
                  "codeCaption": null,
                  "caption": "2 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620965",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620970",
                  "code": "0102",
                  "codeCaption": null,
                  "caption": "1 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620956",
                  "code": "0300",
                  "codeCaption": null,
                  "caption": "3 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620966",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620971",
                  "code": "0003",
                  "codeCaption": null,
                  "caption": "0 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620957",
                  "code": "0301",
                  "codeCaption": null,
                  "caption": "3 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620967",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620972",
                  "code": "0103",
                  "codeCaption": null,
                  "caption": "1 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620958",
                  "code": "0302",
                  "codeCaption": null,
                  "caption": "3 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756620973",
                  "code": "0203",
                  "codeCaption": null,
                  "caption": "2 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620959",
                  "code": "0400",
                  "codeCaption": null,
                  "caption": "4 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756620974",
                  "code": "0004",
                  "codeCaption": null,
                  "caption": "0 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620960",
                  "code": "0401",
                  "codeCaption": null,
                  "caption": "4 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756620975",
                  "code": "0104",
                  "codeCaption": null,
                  "caption": "1 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620961",
                  "code": "0402",
                  "codeCaption": null,
                  "caption": "4 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756620976",
                  "code": "0204",
                  "codeCaption": null,
                  "caption": "2 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620962",
                  "code": "0403",
                  "codeCaption": null,
                  "caption": "4 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5756620977",
                  "code": "0304",
                  "codeCaption": null,
                  "caption": "3 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620978",
                  "code": "ANY",
                  "codeCaption": null,
                  "caption": "Any Other Score",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table-Footer",
              "caption": "1st Half - Correct Score",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Correct Score",
              "betViewKey": "1385557917",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21516,
          "groupByModifiersGroupId": "21516-1",
          "type": "Single",
          "sysname": "HALVES|9",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558088,
              "marketInstanceId": 1385558088,
              "marketEntityId": 7497,
              "marketSysname": "SOCCER_FIRST_HALF_RESULT_NODRAW",
              "betItems": [
                {
                  "id": "5756621626",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5756621627",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.65,
                  "oddsText": "2.65",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Draw Оќo О’et",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Draw Оќo О’et",
              "betViewKey": "1385558088",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21502,
          "groupByModifiersGroupId": "21502-1",
          "type": "Group",
          "sysname": "HALVES|10",
          "caption": "1st Half - Home Goals Over/Under ",
          "betViews": [
            {
              "marketId": 1385558076,
              "marketInstanceId": 1385558076,
              "marketEntityId": 7495,
              "marketSysname": "SOCCER_FIRST_HALF_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621602",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.5,
                  "oddsText": "3.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621603",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Palmeiras SP Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Palmeiras SP Goals Over/Under ",
              "betViewKey": "1385558076",
              "modelType": "List"
            },
            {
              "marketId": 1385558077,
              "marketInstanceId": 1385558077,
              "marketEntityId": 7495,
              "marketSysname": "SOCCER_FIRST_HALF_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621604",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621605",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.02,
                  "oddsText": "1.02",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Palmeiras SP Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Palmeiras SP Goals Over/Under ",
              "betViewKey": "1385558077",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21503,
          "groupByModifiersGroupId": "21503-1",
          "type": "Group",
          "sysname": "HALVES|11",
          "caption": "1st Half - Away Goals Over/Under",
          "betViews": [
            {
              "marketId": 1385558082,
              "marketInstanceId": 1385558082,
              "marketEntityId": 7496,
              "marketSysname": "SOCCER_FIRST_HALF_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621614",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621615",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.15,
                  "oddsText": "1.15",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Botafogo RJ Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Botafogo RJ Goals Over/Under ",
              "betViewKey": "1385558082",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21514,
          "groupByModifiersGroupId": "21514-1",
          "type": "Single",
          "sysname": "HALVES|12",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558026,
              "marketInstanceId": 1385558026,
              "marketEntityId": 7324,
              "marketSysname": "SOCCER_FIRST_HALF_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756621463",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "No Team",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621464",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "One Team",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.55,
                  "oddsText": "2.55",
                  "isAvailable": true
                },
                {
                  "id": "5756621465",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Both Teams",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 18.75,
                  "oddsText": "18.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "1st Half - Teams To Score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Teams To Score",
              "betViewKey": "1385558026",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21547,
          "groupByModifiersGroupId": "21547-1",
          "type": "Single",
          "sysname": "HALVES|13",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557891,
              "marketInstanceId": 1385557891,
              "marketEntityId": 115,
              "marketSysname": "SOCCER_HOME_SCORE_IN_BOTH_HALVES",
              "betItems": [
                {
                  "id": "5756620864",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.45,
                  "oddsText": "5.45",
                  "isAvailable": true
                },
                {
                  "id": "5756620865",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.12,
                  "oddsText": "1.12",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP to score in both halves",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP to score in both halves",
              "betViewKey": "1385557891",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21548,
          "groupByModifiersGroupId": "21548-1",
          "type": "Single",
          "sysname": "HALVES|14",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557892,
              "marketInstanceId": 1385557892,
              "marketEntityId": 116,
              "marketSysname": "SOCCER_AWAY_SCORE_IN_BOTH_HALVES",
              "betItems": [
                {
                  "id": "5756620866",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.8,
                  "oddsText": "9.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620867",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.03,
                  "oddsText": "1.03",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ to score in both halves",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ to score in both halves",
              "betViewKey": "1385557892",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21506,
          "groupByModifiersGroupId": "21506-1",
          "type": "Group",
          "sysname": "HALVES|15",
          "caption": "1st Half - Corners Over/Under рџљЂ",
          "betViews": [
            {
              "marketId": 1386446374,
              "marketInstanceId": 1386446374,
              "marketEntityId": 7169,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131020",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.17,
                  "oddsText": "1.17",
                  "isAvailable": true
                },
                {
                  "id": "5760131021",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Over/Under рџљЂ",
              "betViewKey": "1386446374",
              "modelType": "List"
            },
            {
              "marketId": 1386446375,
              "marketInstanceId": 1386446375,
              "marketEntityId": 7169,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131022",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                },
                {
                  "id": "5760131023",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Over/Under рџљЂ",
              "betViewKey": "1386446375",
              "modelType": "List"
            },
            {
              "marketId": 1386446376,
              "marketInstanceId": 1386446376,
              "marketEntityId": 7169,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131024",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5760131025",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Over/Under рџљЂ",
              "betViewKey": "1386446376",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21518,
          "groupByModifiersGroupId": "21518-1",
          "type": "Single",
          "sysname": "HALVES|16",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1385558028,
              "marketInstanceId": 1385558028,
              "marketEntityId": 7338,
              "marketSysname": "SOCCER_FIRST_HALF_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621469",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "1 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621473",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "X & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621471",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "2 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621470",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "1 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621474",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "X & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621472",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "2 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table",
              "caption": "1st Half - Result & Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Result & Goals Over/Under ",
              "betViewKey": "1385558028",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21520,
          "groupByModifiersGroupId": "21520-1",
          "type": "Group",
          "sysname": "HALVES|17",
          "caption": "1st Half - Handicap ",
          "betViews": [
            {
              "marketId": 1385557981,
              "marketInstanceId": 1385557981,
              "marketEntityId": 7128,
              "marketSysname": "SOCCER_FIRST_HALF_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621146",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP +1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.07,
                  "oddsText": "1.07",
                  "isAvailable": true
                },
                {
                  "id": "5756621147",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ -1)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621148",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ -1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "1st Half - Handicap (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Handicap (3-Way)",
              "betViewKey": "1385557981",
              "modelType": "List"
            },
            {
              "marketId": 1385557979,
              "marketInstanceId": 1385557979,
              "marketEntityId": 7128,
              "marketSysname": "SOCCER_FIRST_HALF_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621140",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 24.0,
                  "oddsText": "24.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621141",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ +1)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.1,
                  "oddsText": "4.10",
                  "isAvailable": true
                },
                {
                  "id": "5756621142",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.21,
                  "oddsText": "1.21",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "1st Half - Handicap (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Handicap (3-Way)",
              "betViewKey": "1385557979",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21521,
          "groupByModifiersGroupId": "21521-1",
          "type": "Single",
          "sysname": "HALVES|18",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557913,
              "marketInstanceId": 1385557913,
              "marketEntityId": 7086,
              "marketSysname": "SOCCER_NUMBER_OF_GOALS_FIRST_HALF",
              "betItems": [
                {
                  "id": "5756620939",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620940",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.88,
                  "oddsText": "2.88",
                  "isAvailable": true
                },
                {
                  "id": "5756620941",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.25,
                  "oddsText": "11.25",
                  "isAvailable": true
                },
                {
                  "id": "5756620942",
                  "code": "03+",
                  "codeCaption": null,
                  "caption": "3 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Number of Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Number of Goals",
              "betViewKey": "1385557913",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21522,
          "groupByModifiersGroupId": "21522-1",
          "type": "Single",
          "sysname": "HALVES|19",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557920,
              "marketInstanceId": 1385557920,
              "marketEntityId": 7097,
              "marketSysname": "SOCCER_NUMBER_OF_GOALS_FIRST_HALF_HOME",
              "betItems": [
                {
                  "id": "5756620987",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                },
                {
                  "id": "5756620988",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5756620989",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620990",
                  "code": "03+",
                  "codeCaption": null,
                  "caption": "3 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Palmeiras SP Number of Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Palmeiras SP Number of Goals",
              "betViewKey": "1385557920",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21523,
          "groupByModifiersGroupId": "21523-1",
          "type": "Single",
          "sysname": "HALVES|20",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557921,
              "marketInstanceId": 1385557921,
              "marketEntityId": 7098,
              "marketSysname": "SOCCER_NUMBER_OF_GOALS_FIRST_HALF_AWAY",
              "betItems": [
                {
                  "id": "5756620991",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.15,
                  "oddsText": "1.15",
                  "isAvailable": true
                },
                {
                  "id": "5756620992",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620993",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620994",
                  "code": "03+",
                  "codeCaption": null,
                  "caption": "3 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Botafogo RJ Number of Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Botafogo RJ Number of Goals",
              "betViewKey": "1385557921",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21524,
          "groupByModifiersGroupId": "21524-1",
          "type": "Single",
          "sysname": "HALVES|21",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557912,
              "marketInstanceId": 1385557912,
              "marketEntityId": 7084,
              "marketSysname": "SOCCER_FIRST_HALF_GOALS_ODD_EVEN",
              "betItems": [
                {
                  "id": "5756620937",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Odd",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.95,
                  "oddsText": "2.95",
                  "isAvailable": true
                },
                {
                  "id": "5756620938",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "Even",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.36,
                  "oddsText": "1.36",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Goals Odd/Even",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Goals Odd/Even",
              "betViewKey": "1385557912",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21531,
          "groupByModifiersGroupId": "21531-1",
          "type": "Single",
          "sysname": "HALVES|22",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385559085,
              "marketInstanceId": 1385559085,
              "marketEntityId": 7090,
              "marketSysname": "SOCCER_SECOND_HALF_TEAM_TO_SCORE_GOAL_N",
              "betItems": [
                {
                  "id": "5756627277",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.99,
                  "oddsText": "1.99",
                  "isAvailable": true
                },
                {
                  "id": "5756627278",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                },
                {
                  "id": "5756627279",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.45,
                  "oddsText": "3.45",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "2nd Half - Team to Score Goal (1)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Team to Score Goal (1)",
              "betViewKey": "1385559085",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21529,
          "groupByModifiersGroupId": "21529-1",
          "type": "Group",
          "sysname": "HALVES|23",
          "caption": "2nd Half - Goals Over/Under",
          "betViews": [
            {
              "marketId": 1385557954,
              "marketInstanceId": 1385557954,
              "marketEntityId": 7115,
              "marketSysname": "SOCCER_SECOND_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621083",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.33,
                  "oddsText": "1.33",
                  "isAvailable": true
                },
                {
                  "id": "5756621084",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "2nd Half - Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Goals Over/Under",
              "betViewKey": "1385557954",
              "modelType": "List"
            },
            {
              "marketId": 1385557955,
              "marketInstanceId": 1385557955,
              "marketEntityId": 7115,
              "marketSysname": "SOCCER_SECOND_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621085",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621086",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "2nd Half - Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Goals Over/Under",
              "betViewKey": "1385557955",
              "modelType": "List"
            },
            {
              "marketId": 1385557956,
              "marketInstanceId": 1385557956,
              "marketEntityId": 7115,
              "marketSysname": "SOCCER_SECOND_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621087",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621088",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.12,
                  "oddsText": "1.12",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "2nd Half - Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Goals Over/Under",
              "betViewKey": "1385557956",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21539,
          "groupByModifiersGroupId": "21539-1",
          "type": "Group",
          "sysname": "HALVES|24",
          "caption": "2nd Half - Home Goals Over/Under",
          "betViews": [
            {
              "marketId": 1385557960,
              "marketInstanceId": 1385557960,
              "marketEntityId": 7116,
              "marketSysname": "SOCCER_SECOND_HALF_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621095",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.69,
                  "oddsText": "1.69",
                  "isAvailable": true
                },
                {
                  "id": "5756621096",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.07,
                  "oddsText": "2.07",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "2nd Half - Palmeiras SP Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Palmeiras SP Goals Over/Under",
              "betViewKey": "1385557960",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21540,
          "groupByModifiersGroupId": "21540-1",
          "type": "Group",
          "sysname": "HALVES|25",
          "caption": "2nd Half - Away Goals Over/Under",
          "betViews": [
            {
              "marketId": 1385557966,
              "marketInstanceId": 1385557966,
              "marketEntityId": 7117,
              "marketSysname": "SOCCER_SECOND_HALF_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621107",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.45,
                  "oddsText": "2.45",
                  "isAvailable": true
                },
                {
                  "id": "5756621108",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.51,
                  "oddsText": "1.51",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": " 2nd Half - Botafogo RJ Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": " 2nd Half - Botafogo RJ Goals Over/Under",
              "betViewKey": "1385557966",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 163609,
          "groupByModifiersGroupId": "163609-1",
          "type": "Single",
          "sysname": "HALVES|26",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557906,
              "marketInstanceId": 1385557906,
              "marketEntityId": 1153,
              "marketSysname": "SOCCER_SECOND_HALF_BOTH_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756620917",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.95,
                  "oddsText": "3.95",
                  "isAvailable": true
                },
                {
                  "id": "5756620918",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.22,
                  "oddsText": "1.22",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "2nd Half - Both teams to score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Both teams to score",
              "betViewKey": "1385557906",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21532,
          "groupByModifiersGroupId": "21532-1",
          "type": "Single",
          "sysname": "HALVES|27",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558027,
              "marketInstanceId": 1385558027,
              "marketEntityId": 7325,
              "marketSysname": "SOCCER_SECOND_HALF_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756621466",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "No Team",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                },
                {
                  "id": "5756621467",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "One Team",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.84,
                  "oddsText": "1.84",
                  "isAvailable": true
                },
                {
                  "id": "5756621468",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Both Teams",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.05,
                  "oddsText": "4.05",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "2nd Half - Teams To Score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Teams To Score",
              "betViewKey": "1385558027",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21528,
          "groupByModifiersGroupId": "21528-1",
          "type": "Single",
          "sysname": "HALVES|28",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557894,
              "marketInstanceId": 1385557894,
              "marketEntityId": 152,
              "marketSysname": "SOCCER_SECOND_HALF_RESULT",
              "betItems": [
                {
                  "id": "5756620870",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5756620871",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5756620872",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.55,
                  "oddsText": "4.55",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "2nd Half - Result",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Result",
              "betViewKey": "1385557894",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21538,
          "groupByModifiersGroupId": "21538-1",
          "type": "Group",
          "sysname": "HALVES|29",
          "caption": "2nd Half - Handicap",
          "betViews": [
            {
              "marketId": 1385557986,
              "marketInstanceId": 1385557986,
              "marketEntityId": 7129,
              "marketSysname": "SOCCER_SECOND_HALF_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621161",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP +1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.17,
                  "oddsText": "1.17",
                  "isAvailable": true
                },
                {
                  "id": "5756621162",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ -1)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.9,
                  "oddsText": "4.90",
                  "isAvailable": true
                },
                {
                  "id": "5756621163",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ -1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "2nd Half - Handicap (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Handicap (3-Way)",
              "betViewKey": "1385557986",
              "modelType": "List"
            },
            {
              "marketId": 1385557984,
              "marketInstanceId": 1385557984,
              "marketEntityId": 7129,
              "marketSysname": "SOCCER_SECOND_HALF_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621155",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.3,
                  "oddsText": "6.30",
                  "isAvailable": true
                },
                {
                  "id": "5756621156",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ +1)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621157",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.55,
                  "oddsText": "1.55",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "2nd Half - Handicap (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Handicap (3-Way)",
              "betViewKey": "1385557984",
              "modelType": "List"
            },
            {
              "marketId": 1385557983,
              "marketInstanceId": 1385557983,
              "marketEntityId": 7129,
              "marketSysname": "SOCCER_SECOND_HALF_RESULT_HANDICAP",
              "betItems": [
                {
                  "id": "5756621152",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.5,
                  "oddsText": "19.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621153",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ +2)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.7,
                  "oddsText": "6.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621154",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.09,
                  "oddsText": "1.09",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "2nd Half - Handicap (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Handicap (3-Way)",
              "betViewKey": "1385557983",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21535,
          "groupByModifiersGroupId": "21535-1",
          "type": "Single",
          "sysname": "HALVES|30",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558089,
              "marketInstanceId": 1385558089,
              "marketEntityId": 7498,
              "marketSysname": "SOCCER_SECOND_HALF_RESULT_NODRAW",
              "betItems": [
                {
                  "id": "5756621628",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.41,
                  "oddsText": "1.41",
                  "isAvailable": true
                },
                {
                  "id": "5756621629",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "2nd Half - Draw Оќo О’et",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Draw Оќo О’et",
              "betViewKey": "1385558089",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21536,
          "groupByModifiersGroupId": "21536-1",
          "type": "Single",
          "sysname": "HALVES|31",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557898,
              "marketInstanceId": 1385557898,
              "marketEntityId": 170,
              "marketSysname": "SOCCER_SECOND_HALF_DOUBLE_CHANCE",
              "betItems": [
                {
                  "id": "5756620879",
                  "code": "1X",
                  "codeCaption": null,
                  "caption": "Palmeiras SP / Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.2,
                  "oddsText": "1.20",
                  "isAvailable": true
                },
                {
                  "id": "5756620880",
                  "code": "X2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ / Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.57,
                  "oddsText": "1.57",
                  "isAvailable": true
                },
                {
                  "id": "5756620881",
                  "code": "12",
                  "codeCaption": null,
                  "caption": "Palmeiras SP / Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.57,
                  "oddsText": "1.57",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "2nd Half - Double Chance",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Double Chance",
              "betViewKey": "1385557898",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21533,
          "groupByModifiersGroupId": "21533-1",
          "type": "Single",
          "sysname": "HALVES|32",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1389020739,
              "marketInstanceId": 1389020739,
              "marketEntityId": 1152,
              "marketSysname": "SOCCER_SECOND_HALF_CORRECT_SCORE",
              "betItems": [
                {
                  "id": "5770102399",
                  "code": "0100",
                  "codeCaption": null,
                  "caption": "1 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5770102409",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "0 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                },
                {
                  "id": "5770102414",
                  "code": "0001",
                  "codeCaption": null,
                  "caption": "0 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102400",
                  "code": "0200",
                  "codeCaption": null,
                  "caption": "2 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102410",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102415",
                  "code": "0002",
                  "codeCaption": null,
                  "caption": "0 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102401",
                  "code": "0201",
                  "codeCaption": null,
                  "caption": "2 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102411",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102416",
                  "code": "0102",
                  "codeCaption": null,
                  "caption": "1 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102402",
                  "code": "0300",
                  "codeCaption": null,
                  "caption": "3 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102412",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102417",
                  "code": "0003",
                  "codeCaption": null,
                  "caption": "0 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102403",
                  "code": "0301",
                  "codeCaption": null,
                  "caption": "3 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102413",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102418",
                  "code": "0103",
                  "codeCaption": null,
                  "caption": "1 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102404",
                  "code": "0302",
                  "codeCaption": null,
                  "caption": "3 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5770102419",
                  "code": "0203",
                  "codeCaption": null,
                  "caption": "2 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102405",
                  "code": "0400",
                  "codeCaption": null,
                  "caption": "4 - 0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5770102420",
                  "code": "0004",
                  "codeCaption": null,
                  "caption": "0 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102406",
                  "code": "0401",
                  "codeCaption": null,
                  "caption": "4 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5770102421",
                  "code": "0104",
                  "codeCaption": null,
                  "caption": "1 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102407",
                  "code": "0402",
                  "codeCaption": null,
                  "caption": "4 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5770102422",
                  "code": "0204",
                  "codeCaption": null,
                  "caption": "2 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102408",
                  "code": "0403",
                  "codeCaption": null,
                  "caption": "4 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                null,
                {
                  "id": "5770102423",
                  "code": "0304",
                  "codeCaption": null,
                  "caption": "3 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102424",
                  "code": "ANY",
                  "codeCaption": null,
                  "caption": "Any Other Score",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table-Footer",
              "caption": "2nd Half - Correct Score",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Correct Score",
              "betViewKey": "1389020739",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21541,
          "groupByModifiersGroupId": "21541-1",
          "type": "Single",
          "sysname": "HALVES|33",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557914,
              "marketInstanceId": 1385557914,
              "marketEntityId": 7087,
              "marketSysname": "SOCCER_NUMBER_OF_GOALS_SECOND_HALF",
              "betItems": [
                {
                  "id": "5756620943",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                },
                {
                  "id": "5756620944",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.55,
                  "oddsText": "2.55",
                  "isAvailable": true
                },
                {
                  "id": "5756620945",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.8,
                  "oddsText": "3.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620946",
                  "code": "03+",
                  "codeCaption": null,
                  "caption": "3 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "2nd Half - Number of Goals",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Number of Goals",
              "betViewKey": "1385557914",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "CORNERS",
      "caption": "Corners",
      "items": [
        {
          "id": 21569,
          "groupByModifiersGroupId": "21569-1",
          "type": "Group",
          "sysname": "CORNERS|0",
          "caption": "Corners Over/Under рџљЂ",
          "betViews": [
            {
              "marketId": 1386446328,
              "marketInstanceId": 1386446328,
              "marketEntityId": 7166,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130928",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 8.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.22,
                  "oddsText": "1.22",
                  "isAvailable": true
                },
                {
                  "id": "5760130929",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 8.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under рџљЂ",
              "betViewKey": "1386446328",
              "modelType": "List"
            },
            {
              "marketId": 1386446329,
              "marketInstanceId": 1386446329,
              "marketEntityId": 7166,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130930",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 9.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5760130931",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 9.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under рџљЂ",
              "betViewKey": "1386446329",
              "modelType": "List"
            },
            {
              "marketId": 1386446330,
              "marketInstanceId": 1386446330,
              "marketEntityId": 7166,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130932",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 10.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5760130933",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 10.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.8,
                  "oddsText": "1.80",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under рџљЂ",
              "betViewKey": "1386446330",
              "modelType": "List"
            },
            {
              "marketId": 1386446331,
              "marketInstanceId": 1386446331,
              "marketEntityId": 7166,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130934",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 11.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5760130935",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 11.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.42,
                  "oddsText": "1.42",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under рџљЂ",
              "betViewKey": "1386446331",
              "modelType": "List"
            },
            {
              "marketId": 1386446332,
              "marketInstanceId": 1386446332,
              "marketEntityId": 7166,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130936",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 12.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5760130937",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 12.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.22,
                  "oddsText": "1.22",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under рџљЂ",
              "betViewKey": "1386446332",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21595,
          "groupByModifiersGroupId": "21595-1",
          "type": "Group",
          "sysname": "CORNERS|1",
          "caption": "1st Half - Corners Over/Under рџљЂ",
          "betViews": [
            {
              "marketId": 1386446374,
              "marketInstanceId": 1386446374,
              "marketEntityId": 7169,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131020",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.17,
                  "oddsText": "1.17",
                  "isAvailable": true
                },
                {
                  "id": "5760131021",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Over/Under рџљЂ",
              "betViewKey": "1386446374",
              "modelType": "List"
            },
            {
              "marketId": 1386446375,
              "marketInstanceId": 1386446375,
              "marketEntityId": 7169,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131022",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                },
                {
                  "id": "5760131023",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Over/Under рџљЂ",
              "betViewKey": "1386446375",
              "modelType": "List"
            },
            {
              "marketId": 1386446376,
              "marketInstanceId": 1386446376,
              "marketEntityId": 7169,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131024",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5760131025",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Corners Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Over/Under рџљЂ",
              "betViewKey": "1386446376",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 45592,
          "groupByModifiersGroupId": "45592-1",
          "type": "Single",
          "sysname": "CORNERS|2",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389033104,
              "marketInstanceId": 1389033104,
              "marketEntityId": 7194,
              "marketSysname": "SOCCER_TEAM_TO_WIN_CORNER_N",
              "betItems": [
                {
                  "id": "5770154735",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5770154736",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "No Corners",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5770154738",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Team to Win Corner (5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Team to Win Corner (5)",
              "betViewKey": "1389033104",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 64544,
          "groupByModifiersGroupId": "64544-1",
          "type": "Single",
          "sysname": "CORNERS|3",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389033108,
              "marketInstanceId": 1389033108,
              "marketEntityId": 9357,
              "marketSysname": "SOCCER_TIME_OF_CORNER_N_15_MIN",
              "betItems": [
                {
                  "id": "5770154750",
                  "code": "3",
                  "codeCaption": null,
                  "caption": "31 - 45+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.12,
                  "oddsText": "1.12",
                  "isAvailable": true
                },
                {
                  "id": "5770154752",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "46- 60",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5770154754",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "61 - 75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5770154756",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "76 - 90+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5770154758",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "No Corner",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Time of Corner (5)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Time of Corner (5)",
              "betViewKey": "1389033108",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21574,
          "groupByModifiersGroupId": "21574-1",
          "type": "Group",
          "sysname": "CORNERS|4",
          "caption": "Asian Handicap Corners",
          "betViews": [
            {
              "marketId": 1389020853,
              "marketInstanceId": 1389020853,
              "marketEntityId": 7181,
              "marketSysname": "SOCCER_CORNERS_ASIAN_HANDICAP",
              "betItems": [
                {
                  "id": "5770102724",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -4.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5770102725",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +4.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.8,
                  "oddsText": "1.80",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap Corners",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap Corners",
              "betViewKey": "1389020853",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21575,
          "groupByModifiersGroupId": "21575-1",
          "type": "Group",
          "sysname": "CORNERS|5",
          "caption": "Corners Over/Under 3way",
          "betViews": [
            {
              "marketId": 1386446459,
              "marketInstanceId": 1386446459,
              "marketEntityId": 7246,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER_3_WAY",
              "betItems": [
                {
                  "id": "5760131224",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 8",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.22,
                  "oddsText": "1.22",
                  "isAvailable": true
                },
                {
                  "id": "5760131225",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Exact 8",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.2,
                  "oddsText": "7.20",
                  "isAvailable": true
                },
                {
                  "id": "5760131226",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 8",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Corners Over/Under (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under (3-Way)",
              "betViewKey": "1386446459",
              "modelType": "List"
            },
            {
              "marketId": 1386446460,
              "marketInstanceId": 1386446460,
              "marketEntityId": 7246,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER_3_WAY",
              "betItems": [
                {
                  "id": "5760131227",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 9",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5760131228",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Exact 9",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.9,
                  "oddsText": "5.90",
                  "isAvailable": true
                },
                {
                  "id": "5760131229",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 9",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Corners Over/Under (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under (3-Way)",
              "betViewKey": "1386446460",
              "modelType": "List"
            },
            {
              "marketId": 1386446461,
              "marketInstanceId": 1386446461,
              "marketEntityId": 7246,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER_3_WAY",
              "betItems": [
                {
                  "id": "5760131230",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 10",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5760131231",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Exact 10",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.6,
                  "oddsText": "5.60",
                  "isAvailable": true
                },
                {
                  "id": "5760131232",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 10",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Corners Over/Under (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under (3-Way)",
              "betViewKey": "1386446461",
              "modelType": "List"
            },
            {
              "marketId": 1386446462,
              "marketInstanceId": 1386446462,
              "marketEntityId": 7246,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER_3_WAY",
              "betItems": [
                {
                  "id": "5760131233",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 11",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5760131234",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Exact 11",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.9,
                  "oddsText": "5.90",
                  "isAvailable": true
                },
                {
                  "id": "5760131235",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 11",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.8,
                  "oddsText": "1.80",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Corners Over/Under (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under (3-Way)",
              "betViewKey": "1386446462",
              "modelType": "List"
            },
            {
              "marketId": 1386446463,
              "marketInstanceId": 1386446463,
              "marketEntityId": 7246,
              "marketSysname": "SOCCER_CORNERS_UNDER_OVER_3_WAY",
              "betItems": [
                {
                  "id": "5760131236",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 12",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131237",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Exact 12",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131238",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 12",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.42,
                  "oddsText": "1.42",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Corners Over/Under (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Over/Under (3-Way)",
              "betViewKey": "1386446463",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 99349,
          "groupByModifiersGroupId": "99349-1",
          "type": "Group",
          "sysname": "CORNERS|6",
          "caption": "Home Corners Over/Under",
          "betViews": [
            {
              "marketId": 1386446346,
              "marketInstanceId": 1386446346,
              "marketEntityId": 7167,
              "marketSysname": "SOCCER_CORNERS_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130964",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.55,
                  "oddsText": "1.55",
                  "isAvailable": true
                },
                {
                  "id": "5760130965",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.35,
                  "oddsText": "2.35",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Corners Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Corners Over/Under ",
              "betViewKey": "1386446346",
              "modelType": "List"
            },
            {
              "marketId": 1386446347,
              "marketInstanceId": 1386446347,
              "marketEntityId": 7167,
              "marketSysname": "SOCCER_CORNERS_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130966",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 7.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.2,
                  "oddsText": "2.20",
                  "isAvailable": true
                },
                {
                  "id": "5760130967",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 7.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.61,
                  "oddsText": "1.61",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Corners Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Corners Over/Under ",
              "betViewKey": "1386446347",
              "modelType": "List"
            },
            {
              "marketId": 1386446348,
              "marketInstanceId": 1386446348,
              "marketEntityId": 7167,
              "marketSysname": "SOCCER_CORNERS_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130968",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 8.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.45,
                  "oddsText": "3.45",
                  "isAvailable": true
                },
                {
                  "id": "5760130969",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 8.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.28,
                  "oddsText": "1.28",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Corners Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Corners Over/Under ",
              "betViewKey": "1386446348",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 99348,
          "groupByModifiersGroupId": "99348-1",
          "type": "Group",
          "sysname": "CORNERS|7",
          "caption": "Away Corners Over/Under",
          "betViews": [
            {
              "marketId": 1386446357,
              "marketInstanceId": 1386446357,
              "marketEntityId": 7168,
              "marketSysname": "SOCCER_CORNERS_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130986",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.41,
                  "oddsText": "1.41",
                  "isAvailable": true
                },
                {
                  "id": "5760130987",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Corners Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Corners Over/Under ",
              "betViewKey": "1386446357",
              "modelType": "List"
            },
            {
              "marketId": 1386446358,
              "marketInstanceId": 1386446358,
              "marketEntityId": 7168,
              "marketSysname": "SOCCER_CORNERS_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130988",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5760130989",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.58,
                  "oddsText": "1.58",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Corners Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Corners Over/Under ",
              "betViewKey": "1386446358",
              "modelType": "List"
            },
            {
              "marketId": 1386446359,
              "marketInstanceId": 1386446359,
              "marketEntityId": 7168,
              "marketSysname": "SOCCER_CORNERS_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130990",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.1,
                  "oddsText": "4.10",
                  "isAvailable": true
                },
                {
                  "id": "5760130991",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.2,
                  "oddsText": "1.20",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Corners Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Corners Over/Under ",
              "betViewKey": "1386446359",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21576,
          "groupByModifiersGroupId": "21576-1",
          "type": "Single",
          "sysname": "CORNERS|8",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1386446443,
              "marketInstanceId": 1386446443,
              "marketEntityId": 7190,
              "marketSysname": "SOCCER_CORNERS_HALFTIME_FULLTIME",
              "betItems": [
                {
                  "id": "5760131175",
                  "code": "1/1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP / Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.11,
                  "oddsText": "1.11",
                  "isAvailable": true
                },
                {
                  "id": "5760131176",
                  "code": "1/X",
                  "codeCaption": null,
                  "caption": "Palmeiras SP / Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131177",
                  "code": "1/2",
                  "codeCaption": null,
                  "caption": "Palmeiras SP / Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131178",
                  "code": "X/1",
                  "codeCaption": null,
                  "caption": "Draw / Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131179",
                  "code": "X/X",
                  "codeCaption": null,
                  "caption": "Draw / Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131180",
                  "code": "X/2",
                  "codeCaption": null,
                  "caption": "Draw / Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131181",
                  "code": "2/1",
                  "codeCaption": null,
                  "caption": "Botafogo RJ / Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131182",
                  "code": "2/X",
                  "codeCaption": null,
                  "caption": "Botafogo RJ / Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131183",
                  "code": "2/2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ / Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table",
              "caption": "Corners Half-Time/Full-Time",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Corners Half-Time/Full-Time",
              "betViewKey": "1386446443",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21587,
          "groupByModifiersGroupId": "21587-1",
          "type": "Single",
          "sysname": "CORNERS|9",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020951,
              "marketInstanceId": 1389020951,
              "marketEntityId": 7257,
              "marketSysname": "SOCCER_NUMBER_OF_CORNERS_RANGE",
              "betItems": [
                {
                  "id": "5770104579",
                  "code": "0005",
                  "codeCaption": null,
                  "caption": "0 - 5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104580",
                  "code": "0608",
                  "codeCaption": null,
                  "caption": "6 - 8",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104581",
                  "code": "0910",
                  "codeCaption": null,
                  "caption": "9 - 10",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                },
                {
                  "id": "5770104582",
                  "code": "1113",
                  "codeCaption": null,
                  "caption": "11 - 13",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5770104583",
                  "code": "1415",
                  "codeCaption": null,
                  "caption": "14 - 15",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104584",
                  "code": "16+",
                  "codeCaption": null,
                  "caption": "16 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Number Of Corners",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Number Of Corners",
              "betViewKey": "1389020951",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21589,
          "groupByModifiersGroupId": "21589-1",
          "type": "Single",
          "sysname": "CORNERS|10",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020730,
              "marketInstanceId": 1389020730,
              "marketEntityId": 1011,
              "marketSysname": "SOCCER_TEAM_TO_WIN_CORNERS_BOTH_HALVES",
              "betItems": [
                {
                  "id": "5770102363",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.52,
                  "oddsText": "1.52",
                  "isAvailable": true
                },
                {
                  "id": "5770102364",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "Neither",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5770102365",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 401.0,
                  "oddsText": "401.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Team to win more corners in both halves",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Team to win more corners in both halves",
              "betViewKey": "1389020730",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21596,
          "groupByModifiersGroupId": "21596-1",
          "type": "Single",
          "sysname": "CORNERS|11",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389033106,
              "marketInstanceId": 1389033106,
              "marketEntityId": 7195,
              "marketSysname": "SOCCER_FIRST_HALF_TEAM_TO_WIN_CORNER_N",
              "betItems": [
                {
                  "id": "5770154740",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.75,
                  "oddsText": "1.75",
                  "isAvailable": true
                },
                {
                  "id": "5770154742",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "No Corners",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5770154744",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "1st Half - Team to Win Corner (5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Team to Win Corner (5)",
              "betViewKey": "1389033106",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21594,
          "groupByModifiersGroupId": "21594-1",
          "type": "Single",
          "sysname": "CORNERS|12",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446318,
              "marketInstanceId": 1386446318,
              "marketEntityId": 7161,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_RESULT",
              "betItems": [
                {
                  "id": "5760130897",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.001,
                  "oddsText": "1.001",
                  "isAvailable": true
                },
                {
                  "id": "5760130898",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.3,
                  "oddsText": "8.30",
                  "isAvailable": true
                },
                {
                  "id": "5760130899",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 35.0,
                  "oddsText": "35.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "1st Half - Corners Result",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Result",
              "betViewKey": "1386446318",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21598,
          "groupByModifiersGroupId": "21598-1",
          "type": "Single",
          "sysname": "CORNERS|13",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1389020723,
              "marketInstanceId": 1389020723,
              "marketEntityId": 788,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_CORRECT_SCORE",
              "betItems": [
                {
                  "id": "5770102309",
                  "code": "0301",
                  "codeCaption": null,
                  "caption": "3 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102323",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102335",
                  "code": "0304",
                  "codeCaption": null,
                  "caption": "3 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102310",
                  "code": "0302",
                  "codeCaption": null,
                  "caption": "3 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102324",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102339",
                  "code": "0305",
                  "codeCaption": null,
                  "caption": "3 - 5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102312",
                  "code": "0401",
                  "codeCaption": null,
                  "caption": "4 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.33,
                  "oddsText": "4.33",
                  "isAvailable": true
                },
                {
                  "id": "5770102325",
                  "code": "0505",
                  "codeCaption": null,
                  "caption": "5 - 5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102340",
                  "code": "0405",
                  "codeCaption": null,
                  "caption": "4 - 5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102313",
                  "code": "0402",
                  "codeCaption": null,
                  "caption": "4 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770102314",
                  "code": "0403",
                  "codeCaption": null,
                  "caption": "4 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770102316",
                  "code": "0501",
                  "codeCaption": null,
                  "caption": "5 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770102317",
                  "code": "0502",
                  "codeCaption": null,
                  "caption": "5 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770102318",
                  "code": "0503",
                  "codeCaption": null,
                  "caption": "5 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770102319",
                  "code": "0504",
                  "codeCaption": null,
                  "caption": "5 - 4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770102341",
                  "code": "ALT",
                  "codeCaption": null,
                  "caption": "Any Other Score",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table-Footer",
              "caption": "1st Half - Corners Correct Score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Correct Score",
              "betViewKey": "1389020723",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 131412,
          "groupByModifiersGroupId": "131412-1",
          "type": "Group",
          "sysname": "CORNERS|14",
          "caption": "1st Half - Home Corners Over/Under",
          "betViews": [
            {
              "marketId": 1386446386,
              "marketInstanceId": 1386446386,
              "marketEntityId": 7170,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131044",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.4,
                  "oddsText": "1.40",
                  "isAvailable": true
                },
                {
                  "id": "5760131045",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Palmeiras SP Corners Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Palmeiras SP Corners Over/Under ",
              "betViewKey": "1386446386",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 131413,
          "groupByModifiersGroupId": "131413-1",
          "type": "Group",
          "sysname": "CORNERS|15",
          "caption": "1st Half - Away Corners Over/Under",
          "betViews": [
            {
              "marketId": 1386446394,
              "marketInstanceId": 1386446394,
              "marketEntityId": 7171,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131060",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.98,
                  "oddsText": "1.98",
                  "isAvailable": true
                },
                {
                  "id": "5760131061",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.76,
                  "oddsText": "1.76",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Botafogo RJ Corners Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Botafogo RJ Corners Over/Under ",
              "betViewKey": "1386446394",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21605,
          "groupByModifiersGroupId": "21605-1",
          "type": "Single",
          "sysname": "CORNERS|16",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020981,
              "marketInstanceId": 1389020981,
              "marketEntityId": 7336,
              "marketSysname": "SOCCER_FIRST_HALF_NUMBER_OF_CORNERS_HOME_SHORT",
              "betItems": [
                {
                  "id": "5770104715",
                  "code": "3",
                  "codeCaption": null,
                  "caption": "3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                },
                {
                  "id": "5770104716",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.4,
                  "oddsText": "1.40",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Palmeiras SP Number of Corners",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Palmeiras SP Number of Corners",
              "betViewKey": "1389020981",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21607,
          "groupByModifiersGroupId": "21607-1",
          "type": "Single",
          "sysname": "CORNERS|17",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020982,
              "marketInstanceId": 1389020982,
              "marketEntityId": 7337,
              "marketSysname": "SOCCER_FIRST_HALF_NUMBER_OF_CORNERS_AWAY_SHORT",
              "betItems": [
                {
                  "id": "5770104717",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "0 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.76,
                  "oddsText": "1.76",
                  "isAvailable": true
                },
                {
                  "id": "5770104718",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5770104719",
                  "code": "3",
                  "codeCaption": null,
                  "caption": "3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104720",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.75,
                  "oddsText": "13.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Botafogo RJ Number of Corners",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Botafogo RJ Number of Corners",
              "betViewKey": "1389020982",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 103303,
          "groupByModifiersGroupId": "103303-1",
          "type": "Single",
          "sysname": "CORNERS|18",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020804,
              "marketInstanceId": 1389020804,
              "marketEntityId": 7163,
              "marketSysname": "SOCCER_NUMBER_OF_CORNERS_FIRST_HALF_HOME",
              "betItems": [
                {
                  "id": "5770102619",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                },
                {
                  "id": "5770102620",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5770102621",
                  "code": "0505",
                  "codeCaption": null,
                  "caption": "5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102622",
                  "code": "06+",
                  "codeCaption": null,
                  "caption": "6 or More",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.6,
                  "oddsText": "6.60",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Palmeiras SP Number of Corners",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Palmeiras SP Number of Corners",
              "betViewKey": "1389020804",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 103300,
          "groupByModifiersGroupId": "103300-1",
          "type": "Single",
          "sysname": "CORNERS|19",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020805,
              "marketInstanceId": 1389020805,
              "marketEntityId": 7164,
              "marketSysname": "SOCCER_NUMBER_OF_CORNERS_FIRST_HALF_AWAY",
              "betItems": [
                {
                  "id": "5770102624",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.76,
                  "oddsText": "1.76",
                  "isAvailable": true
                },
                {
                  "id": "5770102625",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102626",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102627",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102628",
                  "code": "0505",
                  "codeCaption": null,
                  "caption": "5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102629",
                  "code": "06+",
                  "codeCaption": null,
                  "caption": "6+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 501.0,
                  "oddsText": "501.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Botafogo RJ Number of Corners",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Botafogo RJ Number of Corners",
              "betViewKey": "1389020805",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 131411,
          "groupByModifiersGroupId": "131411-1",
          "type": "Single",
          "sysname": "CORNERS|20",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020732,
              "marketInstanceId": 1389020732,
              "marketEntityId": 1028,
              "marketSysname": "SOCCER_CORNERS_FIRST_HALF_ODD_EVEN",
              "betItems": [
                {
                  "id": "5770102368",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Odd",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5770102369",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "Even",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.82,
                  "oddsText": "1.82",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Corners Odd/Even",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Corners Odd/Even",
              "betViewKey": "1389020732",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21588,
          "groupByModifiersGroupId": "21588-1",
          "type": "Single",
          "sysname": "CORNERS|21",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020731,
              "marketInstanceId": 1389020731,
              "marketEntityId": 1027,
              "marketSysname": "SOCCER_CORNERS_ODD_EVEN",
              "betItems": [
                {
                  "id": "5770102366",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Odd",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.86,
                  "oddsText": "1.86",
                  "isAvailable": true
                },
                {
                  "id": "5770102367",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "Even",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.87,
                  "oddsText": "1.87",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Match Corners Odd/Even",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Match Corners Odd/Even",
              "betViewKey": "1389020731",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "CARDS",
      "caption": "Cards",
      "items": [
        {
          "id": 21620,
          "groupByModifiersGroupId": "21620-1",
          "type": "Group",
          "sysname": "CARDS|0",
          "caption": "Yellow Cards Over/Under",
          "betViews": [
            {
              "marketId": 1386446291,
              "marketInstanceId": 1386446291,
              "marketEntityId": 7134,
              "marketSysname": "SOCCER_YELLOW_CARDS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130843",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.34,
                  "oddsText": "1.34",
                  "isAvailable": true
                },
                {
                  "id": "5760130844",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Yellow Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Over/Under",
              "betViewKey": "1386446291",
              "modelType": "List"
            },
            {
              "marketId": 1386446292,
              "marketInstanceId": 1386446292,
              "marketEntityId": 7134,
              "marketSysname": "SOCCER_YELLOW_CARDS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130845",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.76,
                  "oddsText": "1.76",
                  "isAvailable": true
                },
                {
                  "id": "5760130846",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.98,
                  "oddsText": "1.98",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Yellow Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Over/Under",
              "betViewKey": "1386446292",
              "modelType": "List"
            },
            {
              "marketId": 1386446293,
              "marketInstanceId": 1386446293,
              "marketEntityId": 7134,
              "marketSysname": "SOCCER_YELLOW_CARDS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130847",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.55,
                  "oddsText": "2.55",
                  "isAvailable": true
                },
                {
                  "id": "5760130848",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.48,
                  "oddsText": "1.48",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Yellow Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Over/Under",
              "betViewKey": "1386446293",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21641,
          "groupByModifiersGroupId": "21641-1",
          "type": "Single",
          "sysname": "CARDS|1",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446447,
              "marketInstanceId": 1386446447,
              "marketEntityId": 7204,
              "marketSysname": "SOCCER_RED_CARDS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131193",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.15,
                  "oddsText": "3.15",
                  "isAvailable": true
                },
                {
                  "id": "5760131194",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.33,
                  "oddsText": "1.33",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Red Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Red Cards Over/Under",
              "betViewKey": "1386446447",
              "modelType": "List"
            },
            {
              "marketId": 1386446448,
              "marketInstanceId": 1386446448,
              "marketEntityId": 7204,
              "marketSysname": "SOCCER_RED_CARDS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131195",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 16.75,
                  "oddsText": "16.75",
                  "isAvailable": true
                },
                {
                  "id": "5760131196",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.01,
                  "oddsText": "1.01",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Red Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Red Cards Over/Under",
              "betViewKey": "1386446448",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21658,
          "groupByModifiersGroupId": "21658-1",
          "type": "Single",
          "sysname": "CARDS|2",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446449,
              "marketInstanceId": 1386446449,
              "marketEntityId": 7205,
              "marketSysname": "SOCCER_RED_CARDS_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131197",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5760131198",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.03,
                  "oddsText": "1.03",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Red Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Red Cards Over/Under",
              "betViewKey": "1386446449",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21632,
          "groupByModifiersGroupId": "21632-1",
          "type": "Group",
          "sysname": "CARDS|3",
          "caption": "Home Yellow Cards Over/Under",
          "betViews": [
            {
              "marketId": 1386446299,
              "marketInstanceId": 1386446299,
              "marketEntityId": 7135,
              "marketSysname": "SOCCER_YELLOW_CARDS_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130859",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.3,
                  "oddsText": "2.30",
                  "isAvailable": true
                },
                {
                  "id": "5760130860",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.58,
                  "oddsText": "1.58",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP  Yellow Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP  Yellow Cards Over/Under",
              "betViewKey": "1386446299",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21633,
          "groupByModifiersGroupId": "21633-1",
          "type": "Group",
          "sysname": "CARDS|4",
          "caption": "Away Yellow Cards Over/Under",
          "betViews": [
            {
              "marketId": 1386446305,
              "marketInstanceId": 1386446305,
              "marketEntityId": 7136,
              "marketSysname": "SOCCER_YELLOW_CARDS_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760130871",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.97,
                  "oddsText": "1.97",
                  "isAvailable": true
                },
                {
                  "id": "5760130872",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.77,
                  "oddsText": "1.77",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ  Yellow Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ  Yellow Cards Over/Under",
              "betViewKey": "1386446305",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82804,
          "groupByModifiersGroupId": "82804-1",
          "type": "Single",
          "sysname": "CARDS|5",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446486,
              "marketInstanceId": 1386446486,
              "marketEntityId": 9993,
              "marketSysname": "SOCCER_BOTH_TEAMS_CARDS",
              "betItems": [
                {
                  "id": "5760131301",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.06,
                  "oddsText": "1.06",
                  "isAvailable": true
                },
                {
                  "id": "5760131302",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.7,
                  "oddsText": "7.70",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to receive a Card ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to receive a Card ",
              "betViewKey": "1386446486",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82806,
          "groupByModifiersGroupId": "82806-1",
          "type": "Single",
          "sysname": "CARDS|6",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446488,
              "marketInstanceId": 1386446488,
              "marketEntityId": 9997,
              "marketSysname": "SOCCER_BOTH_TEAMS_AT_LEAST_2_CARDS",
              "betItems": [
                {
                  "id": "5760131305",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5760131306",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.9,
                  "oddsText": "2.90",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to receive 2+ Cards",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to receive 2+ Cards",
              "betViewKey": "1386446488",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21643,
          "groupByModifiersGroupId": "21643-1",
          "type": "Single",
          "sysname": "CARDS|7",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446451,
              "marketInstanceId": 1386446451,
              "marketEntityId": 7207,
              "marketSysname": "SOCCER_RED_CARDS_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131201",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.45,
                  "oddsText": "5.45",
                  "isAvailable": true
                },
                {
                  "id": "5760131202",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.12,
                  "oddsText": "1.12",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Red Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Red Cards Over/Under",
              "betViewKey": "1386446451",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21644,
          "groupByModifiersGroupId": "21644-1",
          "type": "Single",
          "sysname": "CARDS|8",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446450,
              "marketInstanceId": 1386446450,
              "marketEntityId": 7206,
              "marketSysname": "SOCCER_RED_CARDS_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131199",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.95,
                  "oddsText": "4.95",
                  "isAvailable": true
                },
                {
                  "id": "5760131200",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.15,
                  "oddsText": "1.15",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Red Cards Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Red Cards Over/Under",
              "betViewKey": "1386446450",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82805,
          "groupByModifiersGroupId": "82805-1",
          "type": "Single",
          "sysname": "CARDS|9",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446487,
              "marketInstanceId": 1386446487,
              "marketEntityId": 9994,
              "marketSysname": "SOCCER_BOTH_TEAMS_RED_CARDS",
              "betItems": [
                {
                  "id": "5760131303",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both Teams to get a Red Card",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Both Teams to get a Red Card",
              "betViewKey": "1386446487",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 46085,
          "groupByModifiersGroupId": "46085-1",
          "type": "Single",
          "sysname": "CARDS|10",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389023781,
              "marketInstanceId": 1389023781,
              "marketEntityId": 7318,
              "marketSysname": "SOCCER_TEAM_YELLOW_CARD_N",
              "betItems": [
                {
                  "id": "5770116802",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                },
                {
                  "id": "5770116803",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "No Yellow Card",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5770116804",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Team to Receive Yellow Card (2)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Team to Receive Yellow Card (2)",
              "betViewKey": "1389023781",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 103318,
          "groupByModifiersGroupId": "103318-1",
          "type": "Single",
          "sysname": "CARDS|11",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446274,
              "marketInstanceId": 1386446274,
              "marketEntityId": 1030,
              "marketSysname": "SOCCER_YELLOW_CARDS_RESULT",
              "betItems": [
                {
                  "id": "5760130800",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.25,
                  "oddsText": "4.25",
                  "isAvailable": true
                },
                {
                  "id": "5760130801",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.45,
                  "oddsText": "5.45",
                  "isAvailable": true
                },
                {
                  "id": "5760130802",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.46,
                  "oddsText": "1.46",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Yellow Cards Result",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Result",
              "betViewKey": "1386446274",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21626,
          "groupByModifiersGroupId": "21626-1",
          "type": "Single",
          "sysname": "CARDS|12",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020734,
              "marketInstanceId": 1389020734,
              "marketEntityId": 1032,
              "marketSysname": "SOCCER_YELLOW_CARDS_RESULT_NO_DRAW",
              "betItems": [
                {
                  "id": "5770102372",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.5,
                  "oddsText": "3.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102373",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.25,
                  "oddsText": "1.25",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Yellow Cards Draw No О’et",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Draw No О’et",
              "betViewKey": "1389020734",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21627,
          "groupByModifiersGroupId": "21627-1",
          "type": "Group",
          "sysname": "CARDS|13",
          "caption": "Yellow Cards О—andicap ",
          "betViews": [
            {
              "marketId": 1386446284,
              "marketInstanceId": 1386446284,
              "marketEntityId": 7132,
              "marketSysname": "SOCCER_YELLOW_CARDS_HANDICAP",
              "betItems": [
                {
                  "id": "5760130826",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP +1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5760130827",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw (Botafogo RJ -1)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.6,
                  "oddsText": "4.60",
                  "isAvailable": true
                },
                {
                  "id": "5760130828",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ -1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.02,
                  "oddsText": "2.02",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Yellow Cards Handicap (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Handicap (3-Way)",
              "betViewKey": "1386446284",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 103297,
          "groupByModifiersGroupId": "103297-1",
          "type": "Single",
          "sysname": "CARDS|14",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1389020955,
              "marketInstanceId": 1389020955,
              "marketEntityId": 7263,
              "marketSysname": "SOCCER_YELLOW_CARDS_CORRECT_SCORE",
              "betItems": [
                {
                  "id": "5770104595",
                  "code": "0201",
                  "codeCaption": null,
                  "caption": "2 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104600",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104603",
                  "code": "0001",
                  "codeCaption": null,
                  "caption": "0 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104597",
                  "code": "0301",
                  "codeCaption": null,
                  "caption": "3 - 1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104601",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104604",
                  "code": "0002",
                  "codeCaption": null,
                  "caption": "0 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104598",
                  "code": "0302",
                  "codeCaption": null,
                  "caption": "3 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104602",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104605",
                  "code": "0102",
                  "codeCaption": null,
                  "caption": "1 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770104606",
                  "code": "0003",
                  "codeCaption": null,
                  "caption": "0 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770104607",
                  "code": "0103",
                  "codeCaption": null,
                  "caption": "1 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                null,
                null,
                {
                  "id": "5770104608",
                  "code": "0203",
                  "codeCaption": null,
                  "caption": "2 - 3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104609",
                  "code": "AnyOther",
                  "codeCaption": null,
                  "caption": "Any Other Score",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.62,
                  "oddsText": "1.62",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table-Footer",
              "caption": "Yellow Cards Correct Score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Correct Score",
              "betViewKey": "1389020955",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 209814,
          "groupByModifiersGroupId": "209814-1",
          "type": "BetSourceGroup",
          "sysname": "CARDS|15",
          "caption": "Player Cards",
          "betViews": [
            {
              "marketId": 1385831290,
              "marketInstanceId": 1385831290,
              "marketEntityId": 7347,
              "marketSysname": "SOCCER_PLAYER_ANYTIME_YELLOW_CARD",
              "betItems": [
                {
                  "id": "5757722262",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5757722240",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5757722226",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5757722224",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722249",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722248",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722250",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722259",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722278",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5757722242",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5757722233",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.6,
                  "oddsText": "3.60",
                  "isAvailable": true
                },
                {
                  "id": "5757722231",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722256",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722261",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722277",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722220",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722222",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722225",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722239",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722247",
                  "code": "98982",
                  "codeCaption": null,
                  "caption": "Pereira  Weverton (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Yellow Card",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Card",
              "betViewKey": "1385831290",
              "modelType": "List"
            },
            {
              "marketId": 1385831289,
              "marketInstanceId": 1385831289,
              "marketEntityId": 7346,
              "marketSysname": "SOCCER_PLAYER_ANYTIME_RED_CARD",
              "betItems": [
                {
                  "id": "5757722191",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722180",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722202",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722166",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722164",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722190",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722199",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722182",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722218",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722173",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722188",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722189",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722196",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722217",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722162",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722165",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722179",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722160",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722171",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722201",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722187",
                  "code": "98982",
                  "codeCaption": null,
                  "caption": "Pereira  Weverton (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Red Card",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Red Card",
              "betViewKey": "1385831289",
              "modelType": "List"
            }
          ],
          "showMore": 5,
          "grouping": 0,
          "groupDisplayFormat": 0
        },
        {
          "id": 21631,
          "groupByModifiersGroupId": "21631-1",
          "type": "Group",
          "sysname": "CARDS|16",
          "caption": "Yellow Cards Over/Under 3way",
          "betViews": [
            {
              "marketId": 1389020957,
              "marketInstanceId": 1389020957,
              "marketEntityId": 7265,
              "marketSysname": "SOCCER_YELLOW_CARDS_UNDER_OVER_3_WAY",
              "betItems": [
                {
                  "id": "5770104616",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.76,
                  "oddsText": "1.76",
                  "isAvailable": true
                },
                {
                  "id": "5770104617",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Exact 5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.95,
                  "oddsText": "4.95",
                  "isAvailable": true
                },
                {
                  "id": "5770104618",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.1,
                  "oddsText": "3.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Yellow Cards Over/Under (3-Way)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Over/Under (3-Way)",
              "betViewKey": "1389020957",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21637,
          "groupByModifiersGroupId": "21637-1",
          "type": "Single",
          "sysname": "CARDS|17",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020735,
              "marketInstanceId": 1389020735,
              "marketEntityId": 1050,
              "marketSysname": "SOCCER_NUMBER_OF_YELLOW_CARDS",
              "betItems": [
                {
                  "id": "5770102374",
                  "code": "0002",
                  "codeCaption": null,
                  "caption": "0 - 2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102375",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102376",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102377",
                  "code": "0505",
                  "codeCaption": null,
                  "caption": "5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.95,
                  "oddsText": "4.95",
                  "isAvailable": true
                },
                {
                  "id": "5770102378",
                  "code": "0606",
                  "codeCaption": null,
                  "caption": "6",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.15,
                  "oddsText": "5.15",
                  "isAvailable": true
                },
                {
                  "id": "5770102379",
                  "code": "0707",
                  "codeCaption": null,
                  "caption": "7",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102380",
                  "code": "0808",
                  "codeCaption": null,
                  "caption": "8",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102381",
                  "code": "09+",
                  "codeCaption": null,
                  "caption": "9+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.2,
                  "oddsText": "6.20",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Number of Yellow Cards",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Number of Yellow Cards",
              "betViewKey": "1389020735",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21638,
          "groupByModifiersGroupId": "21638-1",
          "type": "Single",
          "sysname": "CARDS|18",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020736,
              "marketInstanceId": 1389020736,
              "marketEntityId": 1051,
              "marketSysname": "SOCCER_NUMBER_OF_YELLOW_CARDS_HOME",
              "betItems": [
                {
                  "id": "5770102382",
                  "code": "0000",
                  "codeCaption": null,
                  "caption": "No Yellow Cards",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102383",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.6,
                  "oddsText": "3.60",
                  "isAvailable": true
                },
                {
                  "id": "5770102384",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.2,
                  "oddsText": "3.20",
                  "isAvailable": true
                },
                {
                  "id": "5770102385",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102386",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102387",
                  "code": "0505",
                  "codeCaption": null,
                  "caption": "5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102388",
                  "code": "06+",
                  "codeCaption": null,
                  "caption": "6 or more",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Number of Yellow Cards",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Number of Yellow Cards",
              "betViewKey": "1389020736",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21639,
          "groupByModifiersGroupId": "21639-1",
          "type": "Single",
          "sysname": "CARDS|19",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389020737,
              "marketInstanceId": 1389020737,
              "marketEntityId": 1052,
              "marketSysname": "SOCCER_NUMBER_OF_YELLOW_CARDS_AWAY",
              "betItems": [
                {
                  "id": "5770102390",
                  "code": "0101",
                  "codeCaption": null,
                  "caption": "1",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.3,
                  "oddsText": "8.30",
                  "isAvailable": true
                },
                {
                  "id": "5770102391",
                  "code": "0202",
                  "codeCaption": null,
                  "caption": "2",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5770102392",
                  "code": "0303",
                  "codeCaption": null,
                  "caption": "3",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5770102393",
                  "code": "0404",
                  "codeCaption": null,
                  "caption": "4",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5770102394",
                  "code": "0505",
                  "codeCaption": null,
                  "caption": "5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102395",
                  "code": "06+",
                  "codeCaption": null,
                  "caption": "6 or more",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Number of Yellow Cards",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Number of Yellow Cards",
              "betViewKey": "1389020737",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21628,
          "groupByModifiersGroupId": "21628-1",
          "type": "Single",
          "sysname": "CARDS|20",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1389020801,
              "marketInstanceId": 1389020801,
              "marketEntityId": 7148,
              "marketSysname": "SOCCER_YELLOW_CARDS_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770102600",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "Palmeiras SP & Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102604",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "Draw & Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102602",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "Botafogo RJ & Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5770102601",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "Palmeiras SP & Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102605",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "Draw & Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5770102603",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "Botafogo RJ & Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table",
              "caption": "Yellow Cards Result & Yellows Cards Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Cards Result & Yellows Cards Over/Under ",
              "betViewKey": "1389020801",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "10_MINUTES_MARKETS",
      "caption": "Minutes",
      "items": [
        {
          "id": 64608,
          "groupByModifiersGroupId": "64608-1",
          "type": "Group",
          "sysname": "10_MINUTES_MARKETS|0",
          "caption": "Goal (1) until Minute ",
          "betViews": [
            {
              "marketId": 1385558038,
              "marketInstanceId": 1385558038,
              "marketEntityId": 7348,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE",
              "betItems": [
                {
                  "id": "5756621514",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 40:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.95,
                  "oddsText": "3.95",
                  "isAvailable": true
                },
                {
                  "id": "5756621515",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 40:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.2,
                  "oddsText": "1.20",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goal (1) until 40:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) until 40:00",
              "betViewKey": "1385558038",
              "modelType": "List"
            },
            {
              "marketId": 1385558039,
              "marketInstanceId": 1385558039,
              "marketEntityId": 7348,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE",
              "betItems": [
                {
                  "id": "5756621516",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 50:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.95,
                  "oddsText": "1.95",
                  "isAvailable": true
                },
                {
                  "id": "5756621517",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 50:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.76,
                  "oddsText": "1.76",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goal (1) until 50:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) until 50:00",
              "betViewKey": "1385558039",
              "modelType": "List"
            },
            {
              "marketId": 1385558040,
              "marketInstanceId": 1385558040,
              "marketEntityId": 7348,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE",
              "betItems": [
                {
                  "id": "5756621518",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.59,
                  "oddsText": "1.59",
                  "isAvailable": true
                },
                {
                  "id": "5756621519",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.2,
                  "oddsText": "2.20",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goal (1) until 60:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) until 60:00",
              "betViewKey": "1385558040",
              "modelType": "List"
            },
            {
              "marketId": 1385558041,
              "marketInstanceId": 1385558041,
              "marketEntityId": 7348,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE",
              "betItems": [
                {
                  "id": "5756621520",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 70:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.39,
                  "oddsText": "1.39",
                  "isAvailable": true
                },
                {
                  "id": "5756621521",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 70:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goal (1) until 70:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) until 70:00",
              "betViewKey": "1385558041",
              "modelType": "List"
            },
            {
              "marketId": 1385558042,
              "marketInstanceId": 1385558042,
              "marketEntityId": 7348,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE",
              "betItems": [
                {
                  "id": "5756621522",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 80:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.26,
                  "oddsText": "1.26",
                  "isAvailable": true
                },
                {
                  "id": "5756621523",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 80:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.45,
                  "oddsText": "3.45",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Goal (1) until 80:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) until 80:00",
              "betViewKey": "1385558042",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 64616,
          "groupByModifiersGroupId": "64616-1",
          "type": "Group",
          "sysname": "10_MINUTES_MARKETS|1",
          "caption": "Home Team Goal (1) until Minute ",
          "betViews": [
            {
              "marketId": 1385558046,
              "marketInstanceId": 1385558046,
              "marketEntityId": 7349,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_HOME",
              "betItems": [
                {
                  "id": "5756621530",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 40:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.4,
                  "oddsText": "5.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621531",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 40:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.11,
                  "oddsText": "1.11",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goal (1) until 40:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Palmeiras SP Goal (1) until 40:00",
              "betViewKey": "1385558046",
              "modelType": "List"
            },
            {
              "marketId": 1385558047,
              "marketInstanceId": 1385558047,
              "marketEntityId": 7349,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_HOME",
              "betItems": [
                {
                  "id": "5756621532",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 50:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.65,
                  "oddsText": "2.65",
                  "isAvailable": true
                },
                {
                  "id": "5756621533",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 50:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.42,
                  "oddsText": "1.42",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goal (1) until 50:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Palmeiras SP Goal (1) until 50:00",
              "betViewKey": "1385558047",
              "modelType": "List"
            },
            {
              "marketId": 1385558048,
              "marketInstanceId": 1385558048,
              "marketEntityId": 7349,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_HOME",
              "betItems": [
                {
                  "id": "5756621534",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5756621535",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.64,
                  "oddsText": "1.64",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goal (1) until 60:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Palmeiras SP Goal (1) until 60:00",
              "betViewKey": "1385558048",
              "modelType": "List"
            },
            {
              "marketId": 1385558049,
              "marketInstanceId": 1385558049,
              "marketEntityId": 7349,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_HOME",
              "betItems": [
                {
                  "id": "5756621536",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 70:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.8,
                  "oddsText": "1.80",
                  "isAvailable": true
                },
                {
                  "id": "5756621537",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 70:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.9,
                  "oddsText": "1.90",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goal (1) until 70:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Palmeiras SP Goal (1) until 70:00",
              "betViewKey": "1385558049",
              "modelType": "List"
            },
            {
              "marketId": 1385558050,
              "marketInstanceId": 1385558050,
              "marketEntityId": 7349,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_HOME",
              "betItems": [
                {
                  "id": "5756621538",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 80:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.58,
                  "oddsText": "1.58",
                  "isAvailable": true
                },
                {
                  "id": "5756621539",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 80:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goal (1) until 80:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Palmeiras SP Goal (1) until 80:00",
              "betViewKey": "1385558050",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 64620,
          "groupByModifiersGroupId": "64620-1",
          "type": "Group",
          "sysname": "10_MINUTES_MARKETS|2",
          "caption": "Away Team Goal (1) until Minute",
          "betViews": [
            {
              "marketId": 1385558054,
              "marketInstanceId": 1385558054,
              "marketEntityId": 7350,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_AWAY",
              "betItems": [
                {
                  "id": "5756621546",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 40:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.7,
                  "oddsText": "7.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621547",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 40:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.05,
                  "oddsText": "1.05",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goal (1) until 40:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Botafogo RJ Goal (1) until 40:00",
              "betViewKey": "1385558054",
              "modelType": "List"
            },
            {
              "marketId": 1385558055,
              "marketInstanceId": 1385558055,
              "marketEntityId": 7350,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_AWAY",
              "betItems": [
                {
                  "id": "5756621548",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 50:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.05,
                  "oddsText": "4.05",
                  "isAvailable": true
                },
                {
                  "id": "5756621549",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 50:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.2,
                  "oddsText": "1.20",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goal (1) until 50:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Botafogo RJ Goal (1) until 50:00",
              "betViewKey": "1385558055",
              "modelType": "List"
            },
            {
              "marketId": 1385558056,
              "marketInstanceId": 1385558056,
              "marketEntityId": 7350,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_AWAY",
              "betItems": [
                {
                  "id": "5756621550",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.2,
                  "oddsText": "3.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621551",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goal (1) until 60:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Botafogo RJ Goal (1) until 60:00",
              "betViewKey": "1385558056",
              "modelType": "List"
            },
            {
              "marketId": 1385558057,
              "marketInstanceId": 1385558057,
              "marketEntityId": 7350,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_AWAY",
              "betItems": [
                {
                  "id": "5756621552",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 70:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.7,
                  "oddsText": "2.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621553",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 70:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.41,
                  "oddsText": "1.41",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goal (1) until 70:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Botafogo RJ Goal (1) until 70:00",
              "betViewKey": "1385558057",
              "modelType": "List"
            },
            {
              "marketId": 1385558058,
              "marketInstanceId": 1385558058,
              "marketEntityId": 7350,
              "marketSysname": "SOCCER_GOAL_N_UNTIL_MINUTE_AWAY",
              "betItems": [
                {
                  "id": "5756621554",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes until 80:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.3,
                  "oddsText": "2.30",
                  "isAvailable": true
                },
                {
                  "id": "5756621555",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No until 80:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.54,
                  "oddsText": "1.54",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goal (1) until 80:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Botafogo RJ Goal (1) until 80:00",
              "betViewKey": "1385558058",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21674,
          "groupByModifiersGroupId": "21674-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|3",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557994,
              "marketInstanceId": 1385557994,
              "marketEntityId": 7215,
              "marketSysname": "SOCCER_TIME_OF_GOAL_N_15_MIN",
              "betItems": [
                {
                  "id": "5756621256",
                  "code": "3",
                  "codeCaption": null,
                  "caption": "30:00 - 45:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.38,
                  "oddsText": "2.38",
                  "isAvailable": true
                },
                {
                  "id": "5756621257",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "45:00 - 59:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621258",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "60:00 - 74:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621259",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "75:00 - 90:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621260",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Time of Goal 1 (15')",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Time of Goal 1 (15')",
              "betViewKey": "1385557994",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21682,
          "groupByModifiersGroupId": "21682-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|4",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558019,
              "marketInstanceId": 1385558019,
              "marketEntityId": 7306,
              "marketSysname": "SOCCER_TIME_OF_ANY_GOAL_15_MIN",
              "betItems": [
                {
                  "id": "5756621424",
                  "code": "3",
                  "codeCaption": null,
                  "caption": "30:00 - 45:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.38,
                  "oddsText": "2.38",
                  "isAvailable": true
                },
                {
                  "id": "5756621425",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "45:00 - 59:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5756621426",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "60:00 - 74:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621427",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "75:00 - 90:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.2,
                  "oddsText": "2.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621428",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Time of Any Goal (15')",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Time of Any Goal (15')",
              "betViewKey": "1385558019",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21679,
          "groupByModifiersGroupId": "21679-1",
          "type": "Group",
          "sysname": "10_MINUTES_MARKETS|5",
          "caption": "Match Time Result until Minute",
          "betViews": [
            {
              "marketId": 1385558022,
              "marketInstanceId": 1385558022,
              "marketEntityId": 7307,
              "marketSysname": "SOCCER_RESULT_IN_MINUTE_N",
              "betItems": [
                {
                  "id": "5756621435",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP until 60'",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.7,
                  "oddsText": "2.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621436",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw until 60'",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.89,
                  "oddsText": "1.89",
                  "isAvailable": true
                },
                {
                  "id": "5756621437",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ until 60'",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.4,
                  "oddsText": "5.40",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Match Time Result О§ minutes",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Match Time Result О§ minutes",
              "betViewKey": "1385558022",
              "modelType": "List"
            },
            {
              "marketId": 1385558023,
              "marketInstanceId": 1385558023,
              "marketEntityId": 7307,
              "marketSysname": "SOCCER_RESULT_IN_MINUTE_N",
              "betItems": [
                {
                  "id": "5756621438",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP until 75'",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621439",
                  "code": "X",
                  "codeCaption": null,
                  "caption": "Draw until 75'",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.35,
                  "oddsText": "2.35",
                  "isAvailable": true
                },
                {
                  "id": "5756621440",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ until 75'",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.75,
                  "oddsText": "4.75",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Match Time Result О§ minutes",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Match Time Result О§ minutes",
              "betViewKey": "1385558023",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21669,
          "groupByModifiersGroupId": "21669-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|6",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558066,
              "marketInstanceId": 1385558066,
              "marketEntityId": 7352,
              "marketSysname": "SOCCER_GOAL_N_BEFORE_AFTER_MINUTE",
              "betItems": [
                {
                  "id": "5756621572",
                  "code": "Until",
                  "codeCaption": null,
                  "caption": "Goal Until 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.58,
                  "oddsText": "1.58",
                  "isAvailable": true
                },
                {
                  "id": "5756621573",
                  "code": "After",
                  "codeCaption": null,
                  "caption": "Goal After 60:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.45,
                  "oddsText": "3.45",
                  "isAvailable": true
                },
                {
                  "id": "5756621574",
                  "code": "NG",
                  "codeCaption": null,
                  "caption": "No Goal",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Goal (1) before/after 60:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) before/after 60:00",
              "betViewKey": "1385558066",
              "modelType": "List"
            },
            {
              "marketId": 1385558067,
              "marketInstanceId": 1385558067,
              "marketEntityId": 7352,
              "marketSysname": "SOCCER_GOAL_N_BEFORE_AFTER_MINUTE",
              "betItems": [
                {
                  "id": "5756621575",
                  "code": "Until",
                  "codeCaption": null,
                  "caption": "Goal Until 75:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                },
                {
                  "id": "5756621576",
                  "code": "After",
                  "codeCaption": null,
                  "caption": "Goal After 75:00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.8,
                  "oddsText": "6.80",
                  "isAvailable": true
                },
                {
                  "id": "5756621577",
                  "code": "NG",
                  "codeCaption": null,
                  "caption": "No Goal",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Goal (1) before/after 75:00",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": true,
              "displayCaption": "Goal (1) before/after 75:00",
              "betViewKey": "1385558067",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21672,
          "groupByModifiersGroupId": "21672-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|7",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557988,
              "marketInstanceId": 1385557988,
              "marketEntityId": 7209,
              "marketSysname": "SOCCER_TIME_OF_GOAL_N_5_MIN",
              "betItems": [
                {
                  "id": "5756621173",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "30:00 - 34:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621174",
                  "code": "8",
                  "codeCaption": null,
                  "caption": "35:00 - 39:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621175",
                  "code": "9",
                  "codeCaption": null,
                  "caption": "40:00 - 45:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621176",
                  "code": "10",
                  "codeCaption": null,
                  "caption": "45:00 - 49:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621177",
                  "code": "11",
                  "codeCaption": null,
                  "caption": "50:00 - 54:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621178",
                  "code": "12",
                  "codeCaption": null,
                  "caption": "55:00 - 59:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621179",
                  "code": "13",
                  "codeCaption": null,
                  "caption": "60:00 - 64:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621180",
                  "code": "14",
                  "codeCaption": null,
                  "caption": "65:00 - 69:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621181",
                  "code": "15",
                  "codeCaption": null,
                  "caption": "70:00 - 74:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621182",
                  "code": "16",
                  "codeCaption": null,
                  "caption": "75:00 - 79:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621183",
                  "code": "17",
                  "codeCaption": null,
                  "caption": "80:00 - 84:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621184",
                  "code": "18",
                  "codeCaption": null,
                  "caption": "85:00 - 90:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621185",
                  "code": "19",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Time of Goal 1 (5')",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Time of Goal 1 (5')",
              "betViewKey": "1385557988",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21673,
          "groupByModifiersGroupId": "21673-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|8",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557991,
              "marketInstanceId": 1385557991,
              "marketEntityId": 7212,
              "marketSysname": "SOCCER_TIME_OF_GOAL_N_10_MIN",
              "betItems": [
                {
                  "id": "5756621227",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "30:00 - 39:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621228",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "40:00 - 49:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621229",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "50:00 - 59:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621230",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "60:00 - 69:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621231",
                  "code": "8",
                  "codeCaption": null,
                  "caption": "70:00 - 79:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621232",
                  "code": "9",
                  "codeCaption": null,
                  "caption": "80:00 - 90:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621233",
                  "code": "10",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Time of Goal 1 (10')",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Time of Goal 1 (10')",
              "betViewKey": "1385557991",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21676,
          "groupByModifiersGroupId": "21676-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|9",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557992,
              "marketInstanceId": 1385557992,
              "marketEntityId": 7213,
              "marketSysname": "SOCCER_TIME_OF_GOAL_N_HOME_10_MIN",
              "betItems": [
                {
                  "id": "5756621237",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "30:00 - 39:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621238",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "40:00 - 49:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.33,
                  "oddsText": "4.33",
                  "isAvailable": true
                },
                {
                  "id": "5756621239",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "50:00 - 59:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621240",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "60:00 - 69:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621241",
                  "code": "8",
                  "codeCaption": null,
                  "caption": "70:00 - 79:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621242",
                  "code": "9",
                  "codeCaption": null,
                  "caption": "80:00 - 90:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621243",
                  "code": "10",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Palmeiras SP Time of Goal 1 (10')",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Time of Goal 1 (10')",
              "betViewKey": "1385557992",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21678,
          "groupByModifiersGroupId": "21678-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|10",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557993,
              "marketInstanceId": 1385557993,
              "marketEntityId": 7214,
              "marketSysname": "SOCCER_TIME_OF_GOAL_N_AWAY_10_MIN",
              "betItems": [
                {
                  "id": "5756621247",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "30:00 - 39:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621248",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "40:00 - 49:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621249",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "50:00 - 59:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621250",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "60:00 - 69:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621251",
                  "code": "8",
                  "codeCaption": null,
                  "caption": "70:00 - 79:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621252",
                  "code": "9",
                  "codeCaption": null,
                  "caption": "80:00 - 90:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621253",
                  "code": "10",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Botafogo RJ Time of Goal 1 (10')",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Time of Goal 1 (10')",
              "betViewKey": "1385557993",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21680,
          "groupByModifiersGroupId": "21680-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|11",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558013,
              "marketInstanceId": 1385558013,
              "marketEntityId": 7299,
              "marketSysname": "SOCCER_TIME_OF_ANY_GOAL_5_MIN",
              "betItems": [
                {
                  "id": "5756621341",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "30:00 - 34:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621342",
                  "code": "8",
                  "codeCaption": null,
                  "caption": "35:00 - 39:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621343",
                  "code": "9",
                  "codeCaption": null,
                  "caption": "40:00 - 45:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621344",
                  "code": "10",
                  "codeCaption": null,
                  "caption": "45:00 - 49:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621345",
                  "code": "11",
                  "codeCaption": null,
                  "caption": "50:00 - 54:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621346",
                  "code": "12",
                  "codeCaption": null,
                  "caption": "55:00 - 59:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621347",
                  "code": "13",
                  "codeCaption": null,
                  "caption": "60:00 - 64:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621348",
                  "code": "14",
                  "codeCaption": null,
                  "caption": "65:00 - 69:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621349",
                  "code": "15",
                  "codeCaption": null,
                  "caption": "70:00 - 74:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621350",
                  "code": "16",
                  "codeCaption": null,
                  "caption": "75:00 - 79:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621351",
                  "code": "17",
                  "codeCaption": null,
                  "caption": "80:00 - 84:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621352",
                  "code": "18",
                  "codeCaption": null,
                  "caption": "85:00 - 90:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621353",
                  "code": "19",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Time of Any Goal (5')",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Time of Any Goal (5')",
              "betViewKey": "1385558013",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21681,
          "groupByModifiersGroupId": "21681-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|12",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558016,
              "marketInstanceId": 1385558016,
              "marketEntityId": 7303,
              "marketSysname": "SOCCER_TIME_OF_ANY_GOAL_10_MIN",
              "betItems": [
                {
                  "id": "5756621395",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "30:00 - 39:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621396",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "40:00 - 49:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5756621397",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "50:00 - 59:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621398",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "60:00 - 69:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621399",
                  "code": "8",
                  "codeCaption": null,
                  "caption": "70:00 - 79:59",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.6,
                  "oddsText": "3.60",
                  "isAvailable": true
                },
                {
                  "id": "5756621400",
                  "code": "9",
                  "codeCaption": null,
                  "caption": "80:00 - 90:00+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5756621401",
                  "code": "10",
                  "codeCaption": null,
                  "caption": "No Goals",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Time of Any Goal (10')",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Time of Any Goal (10')",
              "betViewKey": "1385558016",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 64165,
          "groupByModifiersGroupId": "64165-1",
          "type": "Single",
          "sysname": "10_MINUTES_MARKETS|13",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389033108,
              "marketInstanceId": 1389033108,
              "marketEntityId": 9357,
              "marketSysname": "SOCCER_TIME_OF_CORNER_N_15_MIN",
              "betItems": [
                {
                  "id": "5770154750",
                  "code": "3",
                  "codeCaption": null,
                  "caption": "31 - 45+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.12,
                  "oddsText": "1.12",
                  "isAvailable": true
                },
                {
                  "id": "5770154752",
                  "code": "4",
                  "codeCaption": null,
                  "caption": "46- 60",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5770154754",
                  "code": "5",
                  "codeCaption": null,
                  "caption": "61 - 75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5770154756",
                  "code": "6",
                  "codeCaption": null,
                  "caption": "76 - 90+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5770154758",
                  "code": "7",
                  "codeCaption": null,
                  "caption": "No Corner",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Time of Corner (5)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Time of Corner (5)",
              "betViewKey": "1389033108",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "PLAYERS",
      "caption": "Players",
      "items": [
        {
          "id": 208759,
          "groupByModifiersGroupId": "208759-1",
          "type": "BetSourceGroup",
          "sysname": "PLAYERS|0",
          "caption": "Goalscorers",
          "betViews": [
            {
              "marketId": 1385831285,
              "marketInstanceId": 1385831285,
              "marketEntityId": 33,
              "marketSysname": "SOCCER_GOAL_SCORER",
              "betItems": [
                {
                  "id": "5757721942",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5757721922",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721961",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721933",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721920",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721977",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721939",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721950",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721926",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721931",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721940",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721948",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721925",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721978",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721924",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721951",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721956",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721959",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721949",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721962",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Goalscorer рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Anytime",
              "betViewKey": "1385831285",
              "modelType": "List"
            },
            {
              "marketId": 1385831291,
              "marketInstanceId": 1385831291,
              "marketEntityId": 9616,
              "marketSysname": "SOCCER_FIRST_HALF_GOAL_SCORER",
              "betItems": [
                {
                  "id": "5757722302",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722282",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722293",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722321",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722280",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722337",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722299",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722310",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722286",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722291",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722300",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722285",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722308",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722338",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722284",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722311",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722316",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722319",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722309",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722322",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Goalscorer - 1st Half",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half",
              "betViewKey": "1385831291",
              "modelType": "List"
            },
            {
              "marketId": 1385831303,
              "marketInstanceId": 1385831303,
              "marketEntityId": 9995,
              "marketSysname": "SOCCER_GOAL_SCORER_IN_BOTH_HALVES",
              "betItems": [
                {
                  "id": "5757723022",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723002",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723041",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723013",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723000",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723057",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723019",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723030",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723006",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723011",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723020",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723005",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723028",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723058",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723004",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723029",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723031",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723036",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723039",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723042",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "To Score in both halves",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Both halves",
              "betViewKey": "1385831303",
              "modelType": "List"
            },
            {
              "marketId": 1385831299,
              "marketInstanceId": 1385831299,
              "marketEntityId": 9627,
              "marketSysname": "SOCCER_PLAYER_TO_SCORE_AT_LEAST_2_GOALS",
              "betItems": [
                {
                  "id": "5757722782",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722762",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722801",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722773",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722760",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722817",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722779",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722790",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722766",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722771",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722780",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722765",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722788",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722764",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722818",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722791",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722796",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722799",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722789",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722802",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Player to Score 2+ Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "2 or more",
              "betViewKey": "1385831299",
              "modelType": "List"
            },
            {
              "marketId": 1385831300,
              "marketInstanceId": 1385831300,
              "marketEntityId": 9628,
              "marketSysname": "SOCCER_PLAYER_TO_SCORE_AT_LEAST_3_GOALS",
              "betItems": [
                {
                  "id": "5757722842",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722822",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722861",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722833",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722820",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722824",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722825",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722826",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722831",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722839",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722840",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722848",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722849",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722850",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722851",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722856",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722859",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722862",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722877",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722878",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Player to Score 3+ Goals",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "3 or more",
              "betViewKey": "1385831300",
              "modelType": "List"
            },
            {
              "marketId": 1385831302,
              "marketInstanceId": 1385831302,
              "marketEntityId": 9631,
              "marketSysname": "SOCCER_PLAYER_TO_SCORE_WITH_A_HEADER",
              "betItems": [
                {
                  "id": "5757722962",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722942",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722981",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722953",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722940",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722959",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722970",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722997",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722946",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722951",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722960",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722968",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722945",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722998",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722944",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722971",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722976",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722979",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722969",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722982",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "To Score with a Header",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Header",
              "betViewKey": "1385831302",
              "modelType": "List"
            },
            {
              "marketId": 1385831301,
              "marketInstanceId": 1385831301,
              "marketEntityId": 9630,
              "marketSysname": "SOCCER_PLAYER_TO_SCORE_OUTSIDE_THE_BOX",
              "betItems": [
                {
                  "id": "5757722902",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722882",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722893",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722921",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722880",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722910",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722937",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722899",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722885",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722886",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722891",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722900",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722908",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722938",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722884",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722909",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722911",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722916",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722919",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722922",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "To Score from outside the box",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Outside the box",
              "betViewKey": "1385831301",
              "modelType": "List"
            },
            {
              "marketId": 1385831286,
              "marketInstanceId": 1385831286,
              "marketEntityId": 7226,
              "marketSysname": "SOCCER_NEXT_GOAL_SCORER",
              "betItems": [
                {
                  "id": "5757722002",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5757721982",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721993",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722021",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721980",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721999",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722010",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722037",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721986",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721991",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722000",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722008",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721985",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722038",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757721984",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722011",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722016",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722019",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722009",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722022",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Goalscorer Of Goal (1)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Next",
              "betViewKey": "1385831286",
              "modelType": "List"
            }
          ],
          "showMore": 10,
          "grouping": 0,
          "groupDisplayFormat": 0
        },
        {
          "id": 209803,
          "groupByModifiersGroupId": "209803-1",
          "type": "BetSourceGroup",
          "sysname": "PLAYERS|1",
          "caption": "Goalscorer & Full Time Result",
          "betViews": [
            {
              "marketId": 1385831292,
              "marketInstanceId": 1385831292,
              "marketEntityId": 9618,
              "marketSysname": "SOCCER_PLAYER_ANYTIME_GOALSCORER_AND_FULL_TIME_RESULT_1",
              "betItems": [
                {
                  "id": "5757722362",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722342",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722353",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722340",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722359",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722346",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722351",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722360",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722345",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722344",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722381",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722370",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722397",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722368",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722398",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722371",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722376",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722379",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722369",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722382",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Goalscorer & Full Time Result: Palmeiras SP",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1",
              "betViewKey": "1385831292",
              "modelType": "List"
            },
            {
              "marketId": 1385831294,
              "marketInstanceId": 1385831294,
              "marketEntityId": 9620,
              "marketSysname": "SOCCER_PLAYER_ANYTIME_GOALSCORER_AND_FULL_TIME_RESULT_X",
              "betItems": [
                {
                  "id": "5757722482",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722501",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722462",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722517",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722490",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722473",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722460",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722479",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722488",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722518",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722465",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722466",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722471",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722480",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722491",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722496",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722499",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722464",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722489",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722502",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Goalscorer & Full Time Result: Draw",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Draw",
              "betViewKey": "1385831294",
              "modelType": "List"
            },
            {
              "marketId": 1385831293,
              "marketInstanceId": 1385831293,
              "marketEntityId": 9619,
              "marketSysname": "SOCCER_PLAYER_ANYTIME_GOALSCORER_AND_FULL_TIME_RESULT_2",
              "betItems": [
                {
                  "id": "5757722441",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722457",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722430",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722428",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722458",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722431",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722436",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722439",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722422",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722429",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722442",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722402",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722413",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722400",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722419",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722405",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722406",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722411",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722420",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722404",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Goalscorer & Full Time Result: Botafogo RJ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "2",
              "betViewKey": "1385831293",
              "modelType": "List"
            },
            {
              "marketId": 1385831295,
              "marketInstanceId": 1385831295,
              "marketEntityId": 9622,
              "marketSysname": "SOCCER_PLAYER_FIRST_GOALSCORER_AND_FULL_TIME_RESULT_1",
              "betItems": [
                {
                  "id": "5757722542",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722522",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722533",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722520",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722539",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722526",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722531",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722540",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722525",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722524",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722561",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722550",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722577",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722548",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722578",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722551",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722556",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722559",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722549",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722562",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Goalscorer Of Goal (1) & Full Time Result: Palmeiras SP",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "First & 1",
              "betViewKey": "1385831295",
              "modelType": "List"
            },
            {
              "marketId": 1385831297,
              "marketInstanceId": 1385831297,
              "marketEntityId": 9624,
              "marketSysname": "SOCCER_PLAYER_FIRST_GOALSCORER_AND_FULL_TIME_RESULT_X",
              "betItems": [
                {
                  "id": "5757722662",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722681",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722642",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722697",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722670",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722653",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722640",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722668",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722659",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722698",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722645",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722646",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722651",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722660",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722644",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722669",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722671",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722676",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722679",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722682",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Goalscorer Of Goal (1) & Full Time Result: Draw",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "First & X",
              "betViewKey": "1385831297",
              "modelType": "List"
            },
            {
              "marketId": 1385831296,
              "marketInstanceId": 1385831296,
              "marketEntityId": 9623,
              "marketSysname": "SOCCER_PLAYER_FIRST_GOALSCORER_AND_FULL_TIME_RESULT_2",
              "betItems": [
                {
                  "id": "5757722621",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722637",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722610",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722608",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722638",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722611",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722616",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722619",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722609",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722622",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722582",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722602",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722593",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 67.0,
                  "oddsText": "67.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722580",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722599",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722585",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722586",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722591",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722600",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722584",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 151.0,
                  "oddsText": "151.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Goalscorer Of Goal (1) & Full Time Result: Botafogo RJ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "First & 2",
              "betViewKey": "1385831296",
              "modelType": "List"
            }
          ],
          "showMore": 10,
          "grouping": 0,
          "groupDisplayFormat": 0
        },
        {
          "id": 208761,
          "groupByModifiersGroupId": "208761-1",
          "type": "BetSourceGroup",
          "sysname": "PLAYERS|2",
          "caption": "Player Cards",
          "betViews": [
            {
              "marketId": 1385831290,
              "marketInstanceId": 1385831290,
              "marketEntityId": 7347,
              "marketSysname": "SOCCER_PLAYER_ANYTIME_YELLOW_CARD",
              "betItems": [
                {
                  "id": "5757722262",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5757722240",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5757722226",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5757722224",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722249",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722248",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722250",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722259",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722278",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5757722242",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5757722233",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.6,
                  "oddsText": "3.60",
                  "isAvailable": true
                },
                {
                  "id": "5757722231",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722256",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722261",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722277",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5757722220",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722222",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722225",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722239",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722247",
                  "code": "98982",
                  "codeCaption": null,
                  "caption": "Pereira  Weverton (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Yellow Card",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Yellow Card",
              "betViewKey": "1385831290",
              "modelType": "List"
            },
            {
              "marketId": 1385831289,
              "marketInstanceId": 1385831289,
              "marketEntityId": 7346,
              "marketSysname": "SOCCER_PLAYER_ANYTIME_RED_CARD",
              "betItems": [
                {
                  "id": "5757722191",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722180",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722202",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722166",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722164",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722190",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722199",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722182",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722218",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722173",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722188",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722189",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722196",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722217",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722162",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722165",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722179",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722160",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722171",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722201",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722187",
                  "code": "98982",
                  "codeCaption": null,
                  "caption": "Pereira  Weverton (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 41.0,
                  "oddsText": "41.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Anytime Red Card",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Red Card",
              "betViewKey": "1385831289",
              "modelType": "List"
            }
          ],
          "showMore": 10,
          "grouping": 0,
          "groupDisplayFormat": 0
        },
        {
          "id": 21695,
          "groupByModifiersGroupId": "21695-1",
          "type": "Single",
          "sysname": "PLAYERS|3",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385831287,
              "marketInstanceId": 1385831287,
              "marketEntityId": 7227,
              "marketSysname": "SOCCER_HOME_NEXT_GOAL_SCORER",
              "betItems": [
                {
                  "id": "5757722062",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722042",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722053",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722040",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722059",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722045",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722046",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722051",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722060",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722044",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Goalscorer Of Goal (1)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Goalscorer Of Goal (1)",
              "betViewKey": "1385831287",
              "modelType": "List"
            }
          ],
          "showMore": 10,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21696,
          "groupByModifiersGroupId": "21696-1",
          "type": "Single",
          "sysname": "PLAYERS|4",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385831288,
              "marketInstanceId": 1385831288,
              "marketEntityId": 7228,
              "marketSysname": "SOCCER_AWAY_NEXT_GOAL_SCORER",
              "betItems": [
                {
                  "id": "5757722141",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722157",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722130",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722128",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722158",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722131",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722136",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722139",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722129",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722142",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Goalscorer Of Goal (1)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Goalscorer Of Goal (1)",
              "betViewKey": "1385831288",
              "modelType": "List"
            }
          ],
          "showMore": 10,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "PLAYER_SPECIALS",
      "caption": "Player Specials",
      "items": [
        {
          "id": 219920,
          "groupByModifiersGroupId": "219920-1",
          "type": "ModifierGroup",
          "sysname": "PLAYER_SPECIALS|0",
          "caption": "Player Specials",
          "betViews": [
            {
              "marketId": 1388071070,
              "marketInstanceId": 1388071070,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408495",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Gustavo Portillo Gomez - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071070",
              "modelType": "List"
            },
            {
              "marketId": 1388071075,
              "marketInstanceId": 1388071075,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408545",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                },
                {
                  "id": "5766408546",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Magalhaes Prado Mauricio  - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071075",
              "modelType": "List"
            },
            {
              "marketId": 1388071077,
              "marketInstanceId": 1388071077,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408565",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5766408566",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Joaquin  Piquerez - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071077",
              "modelType": "List"
            },
            {
              "marketId": 1388071078,
              "marketInstanceId": 1388071078,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408575",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.62,
                  "oddsText": "1.62",
                  "isAvailable": true
                },
                {
                  "id": "5766408576",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5766408577",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "3+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Vitor  Roque - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071078",
              "modelType": "List"
            },
            {
              "marketId": 1388071083,
              "marketInstanceId": 1388071083,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408625",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "AgustГn  Giay - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071083",
              "modelType": "List"
            },
            {
              "marketId": 1388071085,
              "marketInstanceId": 1388071085,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408645",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Bruno Fuchs - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071085",
              "modelType": "List"
            },
            {
              "marketId": 1388071087,
              "marketInstanceId": 1388071087,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408665",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5766408666",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Richard Rios - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071087",
              "modelType": "List"
            },
            {
              "marketId": 1388071089,
              "marketInstanceId": 1388071089,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408685",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.83,
                  "oddsText": "1.83",
                  "isAvailable": true
                },
                {
                  "id": "5766408686",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5766408687",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "3+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Estevao - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071089",
              "modelType": "List"
            },
            {
              "marketId": 1388071091,
              "marketInstanceId": 1388071091,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408705",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5766408706",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Emiliano MartГnez Toranza - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071091",
              "modelType": "List"
            },
            {
              "marketId": 1388071092,
              "marketInstanceId": 1388071092,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408715",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Nicolao Alex Telles - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071092",
              "modelType": "List"
            },
            {
              "marketId": 1388071094,
              "marketInstanceId": 1388071094,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408735",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "da Silva Danilo Barbosa - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071094",
              "modelType": "List"
            },
            {
              "marketId": 1388071096,
              "marketInstanceId": 1388071096,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408761",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Victor Vitinho - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071096",
              "modelType": "List"
            },
            {
              "marketId": 1388071098,
              "marketInstanceId": 1388071098,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408781",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                },
                {
                  "id": "5766408782",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Jefferson Savarino - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071098",
              "modelType": "List"
            },
            {
              "marketId": 1388071100,
              "marketInstanceId": 1388071100,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408801",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Marlon Freitas - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071100",
              "modelType": "List"
            },
            {
              "marketId": 1388071103,
              "marketInstanceId": 1388071103,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408831",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Alexander  Barboza - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071103",
              "modelType": "List"
            },
            {
              "marketId": 1388071105,
              "marketInstanceId": 1388071105,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408851",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Paula Jair Cunha - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071105",
              "modelType": "List"
            },
            {
              "marketId": 1388071113,
              "marketInstanceId": 1388071113,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408931",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                },
                {
                  "id": "5766408932",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5766408933",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "3+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Maciel Igor Jesus - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071113",
              "modelType": "List"
            },
            {
              "marketId": 1388071101,
              "marketInstanceId": 1388071101,
              "marketEntityId": 10585,
              "marketSysname": "SOCCER_PLAYER_SHOTSONTARGET_OVERLINE",
              "betItems": [
                {
                  "id": "5766408811",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5766408812",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Victor  Artur - Total Shots On Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target рџљЂ",
              "betViewKey": "1388071101",
              "modelType": "List"
            },
            {
              "marketId": 1388092145,
              "marketInstanceId": 1388092145,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766486740",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5766486741",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Nicolao Alex Telles - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388092145",
              "modelType": "List"
            },
            {
              "marketId": 1388092148,
              "marketInstanceId": 1388092148,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766486749",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5766486750",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Marlon Freitas - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388092148",
              "modelType": "List"
            },
            {
              "marketId": 1388092150,
              "marketInstanceId": 1388092150,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766486755",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5766486756",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 101.0,
                  "oddsText": "101.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Alexander  Barboza - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388092150",
              "modelType": "List"
            },
            {
              "marketId": 1388092152,
              "marketInstanceId": 1388092152,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766486761",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5766486762",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Paula Jair Cunha - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388092152",
              "modelType": "List"
            },
            {
              "marketId": 1388092156,
              "marketInstanceId": 1388092156,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766486773",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5766486774",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Maciel Igor Jesus - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388092156",
              "modelType": "List"
            },
            {
              "marketId": 1388071122,
              "marketInstanceId": 1388071122,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766408979",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5766408980",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Magalhaes Prado Mauricio  - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388071122",
              "modelType": "List"
            },
            {
              "marketId": 1388071124,
              "marketInstanceId": 1388071124,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766408985",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5766408986",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Joaquin  Piquerez - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388071124",
              "modelType": "List"
            },
            {
              "marketId": 1388071125,
              "marketInstanceId": 1388071125,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766408988",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5766408989",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Vitor  Roque - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388071125",
              "modelType": "List"
            },
            {
              "marketId": 1388071130,
              "marketInstanceId": 1388071130,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766409003",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5766409004",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Estevao - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388071130",
              "modelType": "List"
            },
            {
              "marketId": 1388071132,
              "marketInstanceId": 1388071132,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766409009",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5766409010",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 26.0,
                  "oddsText": "26.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Jefferson Savarino - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388071132",
              "modelType": "List"
            },
            {
              "marketId": 1388092149,
              "marketInstanceId": 1388092149,
              "marketEntityId": 10752,
              "marketSysname": "SOCCER_PLAYER_ASSISTS_OVERLINE_EXTENDED",
              "betItems": [
                {
                  "id": "5766486752",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "1+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5766486753",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Victor  Artur - Total Assists",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Assists",
              "betViewKey": "1388092149",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": 1,
          "groupDisplayFormat": 0
        },
        {
          "id": 209815,
          "groupByModifiersGroupId": "209815-1",
          "type": "Single",
          "sysname": "PLAYER_SPECIALS|1",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385831298,
              "marketInstanceId": 1385831298,
              "marketEntityId": 9626,
              "marketSysname": "SOCCER_PLAYER_TO_HIT_THE_WOODWORK_INDIVIDUALS",
              "betItems": [
                {
                  "id": "5757722700",
                  "code": "226842",
                  "codeCaption": null,
                  "caption": "Andrade Allan Elias (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722702",
                  "code": "214829",
                  "codeCaption": null,
                  "caption": "Estevao (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.5,
                  "oddsText": "9.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722704",
                  "code": "174431",
                  "codeCaption": null,
                  "caption": "Bruno Fuchs (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722705",
                  "code": "174004",
                  "codeCaption": null,
                  "caption": "AgustГn  Giay (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722706",
                  "code": "35684",
                  "codeCaption": null,
                  "caption": "Gustavo Portillo Gomez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722711",
                  "code": "235402",
                  "codeCaption": null,
                  "caption": "Emiliano MartГnez Toranza (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722713",
                  "code": "91078",
                  "codeCaption": null,
                  "caption": "Magalhaes Prado Mauricio  (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722719",
                  "code": "109789",
                  "codeCaption": null,
                  "caption": "Joaquin  Piquerez (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722720",
                  "code": "176316",
                  "codeCaption": null,
                  "caption": "Richard Rios (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722722",
                  "code": "135857",
                  "codeCaption": null,
                  "caption": "Vitor  Roque (Palmeiras SP)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5757722728",
                  "code": "8390",
                  "codeCaption": null,
                  "caption": "Nicolao Alex Telles (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722729",
                  "code": "29628",
                  "codeCaption": null,
                  "caption": "Marques Loureiro Allan (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722730",
                  "code": "135897",
                  "codeCaption": null,
                  "caption": "Victor  Artur (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722731",
                  "code": "140660",
                  "codeCaption": null,
                  "caption": "Alexander  Barboza (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722736",
                  "code": "19203",
                  "codeCaption": null,
                  "caption": "da Silva Danilo Barbosa (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722739",
                  "code": "135683",
                  "codeCaption": null,
                  "caption": "Marlon Freitas (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722741",
                  "code": "243281",
                  "codeCaption": null,
                  "caption": "Maciel Igor Jesus (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722742",
                  "code": "148682",
                  "codeCaption": null,
                  "caption": "Paula Jair Cunha (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722757",
                  "code": "59361",
                  "codeCaption": null,
                  "caption": "Jefferson Savarino (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5757722758",
                  "code": "34824",
                  "codeCaption": null,
                  "caption": "Victor Vitinho (Botafogo RJ)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "To Hit the Woodwork",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "To Hit the Woodwork",
              "betViewKey": "1385831298",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "ASIAN_LINES",
      "caption": "Asian Lines",
      "items": [
        {
          "id": 193571,
          "groupByModifiersGroupId": "193571-1",
          "type": "Single",
          "sysname": "ASIAN_LINES|0",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557875,
              "marketInstanceId": 1385557875,
              "marketEntityId": 37,
              "marketSysname": "SOCCER_MATCH_RESULT_ASIAN",
              "betItems": [
                {
                  "id": "5756620832",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -0.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                },
                {
                  "id": "5756620833",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +0.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap",
              "betViewKey": "1385557875",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 193572,
          "groupByModifiersGroupId": "193572-1",
          "type": "Group",
          "sysname": "ASIAN_LINES|1",
          "caption": "Asian Handicap (Additional) ",
          "betViews": [
            {
              "marketId": 1385557877,
              "marketInstanceId": 1385557877,
              "marketEntityId": 37,
              "marketSysname": "SOCCER_MATCH_RESULT_ASIAN",
              "betItems": [
                {
                  "id": "5756620836",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP +0.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.29,
                  "oddsText": "1.29",
                  "isAvailable": true
                },
                {
                  "id": "5756620837",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ -0.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap",
              "betViewKey": "1385557877",
              "modelType": "List"
            },
            {
              "marketId": 1385557876,
              "marketInstanceId": 1385557876,
              "marketEntityId": 37,
              "marketSysname": "SOCCER_MATCH_RESULT_ASIAN",
              "betItems": [
                {
                  "id": "5756620834",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP 0.0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.4,
                  "oddsText": "1.40",
                  "isAvailable": true
                },
                {
                  "id": "5756620835",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ 0.0",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap",
              "betViewKey": "1385557876",
              "modelType": "List"
            },
            {
              "marketId": 1385557874,
              "marketInstanceId": 1385557874,
              "marketEntityId": 37,
              "marketSysname": "SOCCER_MATCH_RESULT_ASIAN",
              "betItems": [
                {
                  "id": "5756620830",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -0.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5756620831",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +0.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap",
              "betViewKey": "1385557874",
              "modelType": "List"
            },
            {
              "marketId": 1385557873,
              "marketInstanceId": 1385557873,
              "marketEntityId": 37,
              "marketSysname": "SOCCER_MATCH_RESULT_ASIAN",
              "betItems": [
                {
                  "id": "5756620828",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -0.75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.6,
                  "oddsText": "2.60",
                  "isAvailable": true
                },
                {
                  "id": "5756620829",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +0.75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.53,
                  "oddsText": "1.53",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap",
              "betViewKey": "1385557873",
              "modelType": "List"
            },
            {
              "marketId": 1385557872,
              "marketInstanceId": 1385557872,
              "marketEntityId": 37,
              "marketSysname": "SOCCER_MATCH_RESULT_ASIAN",
              "betItems": [
                {
                  "id": "5756620826",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -1.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.6,
                  "oddsText": "3.60",
                  "isAvailable": true
                },
                {
                  "id": "5756620827",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +1.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap",
              "betViewKey": "1385557872",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 193574,
          "groupByModifiersGroupId": "193574-1",
          "type": "Single",
          "sysname": "ASIAN_LINES|2",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558095,
              "marketInstanceId": 1385558095,
              "marketEntityId": 7506,
              "marketSysname": "SOCCER_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621640",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.86,
                  "oddsText": "1.86",
                  "isAvailable": true
                },
                {
                  "id": "5756621641",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.94,
                  "oddsText": "1.94",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Goals Over/Under",
              "betViewKey": "1385558095",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 193575,
          "groupByModifiersGroupId": "193575-1",
          "type": "Group",
          "sysname": "ASIAN_LINES|3",
          "caption": "Asian Goals Over/Under (Additional) ",
          "betViews": [
            {
              "marketId": 1385558093,
              "marketInstanceId": 1385558093,
              "marketEntityId": 7506,
              "marketSysname": "SOCCER_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621636",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.34,
                  "oddsText": "1.34",
                  "isAvailable": true
                },
                {
                  "id": "5756621637",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.3,
                  "oddsText": "3.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Goals Over/Under",
              "betViewKey": "1385558093",
              "modelType": "List"
            },
            {
              "marketId": 1385558094,
              "marketInstanceId": 1385558094,
              "marketEntityId": 7506,
              "marketSysname": "SOCCER_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621638",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.6,
                  "oddsText": "1.60",
                  "isAvailable": true
                },
                {
                  "id": "5756621639",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.35,
                  "oddsText": "2.35",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Goals Over/Under",
              "betViewKey": "1385558094",
              "modelType": "List"
            },
            {
              "marketId": 1385558096,
              "marketInstanceId": 1385558096,
              "marketEntityId": 7506,
              "marketSysname": "SOCCER_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621642",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.15,
                  "oddsText": "2.15",
                  "isAvailable": true
                },
                {
                  "id": "5756621643",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.7,
                  "oddsText": "1.70",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Goals Over/Under",
              "betViewKey": "1385558096",
              "modelType": "List"
            },
            {
              "marketId": 1385558097,
              "marketInstanceId": 1385558097,
              "marketEntityId": 7506,
              "marketSysname": "SOCCER_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621644",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621645",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.46,
                  "oddsText": "1.46",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Goals Over/Under",
              "betViewKey": "1385558097",
              "modelType": "List"
            },
            {
              "marketId": 1385558098,
              "marketInstanceId": 1385558098,
              "marketEntityId": 7506,
              "marketSysname": "SOCCER_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621646",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.15,
                  "oddsText": "3.15",
                  "isAvailable": true
                },
                {
                  "id": "5756621647",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.36,
                  "oddsText": "1.36",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Goals Over/Under",
              "betViewKey": "1385558098",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 193577,
          "groupByModifiersGroupId": "193577-1",
          "type": "Group",
          "sysname": "ASIAN_LINES|4",
          "caption": "1st Half - Asian Goals Over/Under",
          "betViews": [
            {
              "marketId": 1385558131,
              "marketInstanceId": 1385558131,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621717",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.75,
                  "oddsText": "1.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621718",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.03,
                  "oddsText": "2.03",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558131",
              "modelType": "List"
            },
            {
              "marketId": 1385558132,
              "marketInstanceId": 1385558132,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621719",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621720",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.51,
                  "oddsText": "1.51",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558132",
              "modelType": "List"
            },
            {
              "marketId": 1385558133,
              "marketInstanceId": 1385558133,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621721",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621722",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.75",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.3,
                  "oddsText": "1.30",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558133",
              "modelType": "List"
            },
            {
              "marketId": 1385558134,
              "marketInstanceId": 1385558134,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621723",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.7,
                  "oddsText": "6.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621724",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.09,
                  "oddsText": "1.09",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558134",
              "modelType": "List"
            },
            {
              "marketId": 1385558135,
              "marketInstanceId": 1385558135,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621725",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.7,
                  "oddsText": "7.70",
                  "isAvailable": true
                },
                {
                  "id": "5756621726",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.25",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.07,
                  "oddsText": "1.07",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558135",
              "modelType": "List"
            },
            {
              "marketId": 1385558136,
              "marketInstanceId": 1385558136,
              "marketEntityId": 8757,
              "marketSysname": "SOCCER_FIRST_HALF_ASIAN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621727",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 1.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621728",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 1.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.06,
                  "oddsText": "1.06",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Asian Goals Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Asian Goals Over/Under",
              "betViewKey": "1385558136",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 193579,
          "groupByModifiersGroupId": "193579-1",
          "type": "Group",
          "sysname": "ASIAN_LINES|5",
          "caption": "Asian Handicap Corners",
          "betViews": [
            {
              "marketId": 1389020852,
              "marketInstanceId": 1389020852,
              "marketEntityId": 7181,
              "marketSysname": "SOCCER_CORNERS_ASIAN_HANDICAP",
              "betItems": [
                {
                  "id": "5770102722",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -3.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.67,
                  "oddsText": "1.67",
                  "isAvailable": true
                },
                {
                  "id": "5770102723",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +3.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap Corners",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap Corners",
              "betViewKey": "1389020852",
              "modelType": "List"
            },
            {
              "marketId": 1389020853,
              "marketInstanceId": 1389020853,
              "marketEntityId": 7181,
              "marketSysname": "SOCCER_CORNERS_ASIAN_HANDICAP",
              "betItems": [
                {
                  "id": "5770102724",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -4.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5770102725",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +4.00",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.8,
                  "oddsText": "1.80",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap Corners",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap Corners",
              "betViewKey": "1389020853",
              "modelType": "List"
            },
            {
              "marketId": 1389020854,
              "marketInstanceId": 1389020854,
              "marketEntityId": 7181,
              "marketSysname": "SOCCER_CORNERS_ASIAN_HANDICAP",
              "betItems": [
                {
                  "id": "5770102726",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP -4.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5770102727",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ +4.50",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.57,
                  "oddsText": "1.57",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Asian Handicap Corners",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Asian Handicap Corners",
              "betViewKey": "1389020854",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "SPECIALS",
      "caption": "Specials",
      "items": [
        {
          "id": 50418,
          "groupByModifiersGroupId": "50418-1",
          "type": "Single",
          "sysname": "SPECIALS|0",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446477,
              "marketInstanceId": 1386446477,
              "marketEntityId": 8344,
              "marketSysname": "SOCCER_PENALTY_TAKEN_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131274",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.05,
                  "oddsText": "4.05",
                  "isAvailable": true
                },
                {
                  "id": "5760131275",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.27,
                  "oddsText": "1.27",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Penalty Awarded",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Penalty Awarded",
              "betViewKey": "1386446477",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 50318,
          "groupByModifiersGroupId": "50318-1",
          "type": "Single",
          "sysname": "SPECIALS|1",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446481,
              "marketInstanceId": 1386446481,
              "marketEntityId": 8349,
              "marketSysname": "SOCCER_PENALTY_SCORED_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131282",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.3,
                  "oddsText": "4.30",
                  "isAvailable": true
                },
                {
                  "id": "5760131283",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.19,
                  "oddsText": "1.19",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Penalty scored Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Penalty scored Over/Under",
              "betViewKey": "1386446481",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 43913,
          "groupByModifiersGroupId": "43913-1",
          "type": "Single",
          "sysname": "SPECIALS|2",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446474,
              "marketInstanceId": 1386446474,
              "marketEntityId": 8044,
              "marketSysname": "HOME_TEAM_SCORE_PENALTY",
              "betItems": [
                {
                  "id": "5760131268",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.9,
                  "oddsText": "5.90",
                  "isAvailable": true
                },
                {
                  "id": "5760131269",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.1,
                  "oddsText": "1.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP to Score a Penalty",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP to Score a Penalty",
              "betViewKey": "1386446474",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 43914,
          "groupByModifiersGroupId": "43914-1",
          "type": "Single",
          "sysname": "SPECIALS|3",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446475,
              "marketInstanceId": 1386446475,
              "marketEntityId": 8045,
              "marketSysname": "AWAY_TEAM_SCORE_PENALTY",
              "betItems": [
                {
                  "id": "5760131270",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.4,
                  "oddsText": "8.40",
                  "isAvailable": true
                },
                {
                  "id": "5760131271",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.05,
                  "oddsText": "1.05",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ to Score a Penalty",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ to Score a Penalty",
              "betViewKey": "1386446475",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21725,
          "groupByModifiersGroupId": "21725-1",
          "type": "Single",
          "sysname": "SPECIALS|4",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446473,
              "marketInstanceId": 1386446473,
              "marketEntityId": 7509,
              "marketSysname": "SOCCER_PENALTY_KICK_AND_RED_CARD",
              "betItems": [
                {
                  "id": "5760131266",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.2,
                  "oddsText": "9.20",
                  "isAvailable": true
                },
                {
                  "id": "5760131267",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.04,
                  "oddsText": "1.04",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Red Card and Penalty Awarded",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Red Card and Penalty Awarded",
              "betViewKey": "1386446473",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 50417,
          "groupByModifiersGroupId": "50417-1",
          "type": "Single",
          "sysname": "SPECIALS|5",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446479,
              "marketInstanceId": 1386446479,
              "marketEntityId": 8345,
              "marketSysname": "SOCCER_PENALTY_TAKEN_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131278",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131279",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.04,
                  "oddsText": "1.04",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Penalty Awarded",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Penalty Awarded",
              "betViewKey": "1386446479",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 63494,
          "groupByModifiersGroupId": "63494-1",
          "type": "Single",
          "sysname": "SPECIALS|6",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446483,
              "marketInstanceId": 1386446483,
              "marketEntityId": 9239,
              "marketSysname": "SOCCER_PENALTY_SCORED_FIRST_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131287",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.9,
                  "oddsText": "9.90",
                  "isAvailable": true
                },
                {
                  "id": "5760131288",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.03,
                  "oddsText": "1.03",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Penalty scored Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Penalty scored Over/Under",
              "betViewKey": "1386446483",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 50416,
          "groupByModifiersGroupId": "50416-1",
          "type": "Single",
          "sysname": "SPECIALS|7",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446480,
              "marketInstanceId": 1386446480,
              "marketEntityId": 8346,
              "marketSysname": "SOCCER_PENALTY_TAKEN_SECOND_HALF_UNDER_OVER",
              "betItems": [
                {
                  "id": "5760131280",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.6,
                  "oddsText": "4.60",
                  "isAvailable": true
                },
                {
                  "id": "5760131281",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.17,
                  "oddsText": "1.17",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "2nd Half - Penalty Awarded",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "2nd Half - Penalty Awarded",
              "betViewKey": "1386446480",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21727,
          "groupByModifiersGroupId": "21727-1",
          "type": "Single",
          "sysname": "SPECIALS|8",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557893,
              "marketInstanceId": 1385557893,
              "marketEntityId": 118,
              "marketSysname": "SOCCER_OWN_GOAL",
              "betItems": [
                {
                  "id": "5756620868",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.25,
                  "oddsText": "11.25",
                  "isAvailable": true
                },
                {
                  "id": "5756620869",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.04,
                  "oddsText": "1.04",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Own Goal",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Own Goal",
              "betViewKey": "1385557893",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21728,
          "groupByModifiersGroupId": "21728-1",
          "type": "Single",
          "sysname": "SPECIALS|9",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557904,
              "marketInstanceId": 1385557904,
              "marketEntityId": 1059,
              "marketSysname": "SOCCER_OWN_GOAL_HOME",
              "betItems": [
                {
                  "id": "5756620913",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 18.0,
                  "oddsText": "18.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620914",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.005,
                  "oddsText": "1.005",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP - Own Goal",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP - Own Goal",
              "betViewKey": "1385557904",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21729,
          "groupByModifiersGroupId": "21729-1",
          "type": "Single",
          "sysname": "SPECIALS|10",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557905,
              "marketInstanceId": 1385557905,
              "marketEntityId": 1060,
              "marketSysname": "SOCCER_OWN_GOAL_AWAY",
              "betItems": [
                {
                  "id": "5756620915",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 14.25,
                  "oddsText": "14.25",
                  "isAvailable": true
                },
                {
                  "id": "5756620916",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.02,
                  "oddsText": "1.02",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ - Own Goal",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ - Own Goal",
              "betViewKey": "1385557905",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21730,
          "groupByModifiersGroupId": "21730-1",
          "type": "Single",
          "sysname": "SPECIALS|11",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558005,
              "marketInstanceId": 1385558005,
              "marketEntityId": 7220,
              "marketSysname": "SOCCER_OWN_GOAL_FIRST_HALF",
              "betItems": [
                {
                  "id": "5756621291",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.75,
                  "oddsText": "19.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621292",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.001,
                  "oddsText": "1.001",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Own Goal",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Own Goal",
              "betViewKey": "1385558005",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 45351,
          "groupByModifiersGroupId": "45351-1",
          "type": "Single",
          "sysname": "SPECIALS|12",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557899,
              "marketInstanceId": 1385557899,
              "marketEntityId": 245,
              "marketSysname": "SOCCER_TEAM_TO_WIN_BOTH_HALVES",
              "betItems": [
                {
                  "id": "5756620882",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.8,
                  "oddsText": "7.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620883",
                  "code": "0",
                  "codeCaption": null,
                  "caption": "Neither",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.08,
                  "oddsText": "1.08",
                  "isAvailable": true
                },
                {
                  "id": "5756620884",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 31.0,
                  "oddsText": "31.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Team to Win Both Halves",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Team to Win Both Halves",
              "betViewKey": "1385557899",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 82811,
          "groupByModifiersGroupId": "82811-1",
          "type": "Single",
          "sysname": "SPECIALS|13",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558145,
              "marketInstanceId": 1385558145,
              "marketEntityId": 9516,
              "marketSysname": "SOCCER_TO_WIN_EITHER_HALF",
              "betItems": [
                {
                  "id": "5756621791",
                  "code": "1",
                  "codeCaption": null,
                  "caption": "Palmeiras SP",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.75,
                  "oddsText": "1.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621792",
                  "code": "2",
                  "codeCaption": null,
                  "caption": "Botafogo RJ",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.15,
                  "oddsText": "3.15",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "To Win Either Half",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "To Win Either Half",
              "betViewKey": "1385558145",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 55012,
          "groupByModifiersGroupId": "55012-1",
          "type": "Single",
          "sysname": "SPECIALS|14",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557891,
              "marketInstanceId": 1385557891,
              "marketEntityId": 115,
              "marketSysname": "SOCCER_HOME_SCORE_IN_BOTH_HALVES",
              "betItems": [
                {
                  "id": "5756620864",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.45,
                  "oddsText": "5.45",
                  "isAvailable": true
                },
                {
                  "id": "5756620865",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.12,
                  "oddsText": "1.12",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP to score in both halves",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP to score in both halves",
              "betViewKey": "1385557891",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 55013,
          "groupByModifiersGroupId": "55013-1",
          "type": "Single",
          "sysname": "SPECIALS|15",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557892,
              "marketInstanceId": 1385557892,
              "marketEntityId": 116,
              "marketSysname": "SOCCER_AWAY_SCORE_IN_BOTH_HALVES",
              "betItems": [
                {
                  "id": "5756620866",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.8,
                  "oddsText": "9.80",
                  "isAvailable": true
                },
                {
                  "id": "5756620867",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.03,
                  "oddsText": "1.03",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ to score in both halves",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ to score in both halves",
              "betViewKey": "1385557892",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21714,
          "groupByModifiersGroupId": "21714-1",
          "type": "Single",
          "sysname": "SPECIALS|16",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557889,
              "marketInstanceId": 1385557889,
              "marketEntityId": 109,
              "marketSysname": "SOCCER_HOME_WIN_TO_NIL",
              "betItems": [
                {
                  "id": "5756620860",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.65,
                  "oddsText": "2.65",
                  "isAvailable": true
                },
                {
                  "id": "5756620861",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.44,
                  "oddsText": "1.44",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP Win to Nil",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP Win to Nil",
              "betViewKey": "1385557889",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21715,
          "groupByModifiersGroupId": "21715-1",
          "type": "Single",
          "sysname": "SPECIALS|17",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557890,
              "marketInstanceId": 1385557890,
              "marketEntityId": 110,
              "marketSysname": "SOCCER_AWAY_WIN_TO_NIL",
              "betItems": [
                {
                  "id": "5756620862",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620863",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.12,
                  "oddsText": "1.12",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ Win to Nil",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ Win to Nil",
              "betViewKey": "1385557890",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "STATS",
      "caption": "Stats",
      "items": [
        {
          "id": 128258,
          "groupByModifiersGroupId": "128258-1",
          "type": "Group",
          "sysname": "STATS|0",
          "caption": "Woodwork Hit",
          "betViews": [
            {
              "marketId": 1385558151,
              "marketInstanceId": 1385558151,
              "marketEntityId": 10523,
              "marketSysname": "SOCCER_WOODWORKS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621908",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.6,
                  "oddsText": "2.60",
                  "isAvailable": true
                },
                {
                  "id": "5756621909",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.46,
                  "oddsText": "1.46",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Woodwork Hit",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Woodwork Hit",
              "betViewKey": "1385558151",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128256,
          "groupByModifiersGroupId": "128256-1",
          "type": "Single",
          "sysname": "STATS|1",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385831305,
              "marketInstanceId": 1385831305,
              "marketEntityId": 10524,
              "marketSysname": "SOCCER_WOODWORKS_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5757723119",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5757723120",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.23,
                  "oddsText": "1.23",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP - Woodwork Hit",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP - Woodwork Hit",
              "betViewKey": "1385831305",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128257,
          "groupByModifiersGroupId": "128257-1",
          "type": "Single",
          "sysname": "STATS|2",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385831306,
              "marketInstanceId": 1385831306,
              "marketEntityId": 10525,
              "marketSysname": "SOCCER_WOODWORKS_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5757723121",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5757723122",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 0.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.2,
                  "oddsText": "1.20",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ - Woodwork Hit",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ - Woodwork Hit",
              "betViewKey": "1385831306",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 85308,
          "groupByModifiersGroupId": "85308-1",
          "type": "Group",
          "sysname": "STATS|3",
          "caption": "Over/Under Shots on target рџљЂ",
          "betViews": [
            {
              "marketId": 1389033202,
              "marketInstanceId": 1389033202,
              "marketEntityId": 10537,
              "marketSysname": "SOCCER_SHOTSONTARGET_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770154965",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.86,
                  "oddsText": "1.86",
                  "isAvailable": true
                },
                {
                  "id": "5770154966",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.87,
                  "oddsText": "1.87",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Shots On Target Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots On Target Over/Under рџљЂ",
              "betViewKey": "1389033202",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128259,
          "groupByModifiersGroupId": "128259-1",
          "type": "Single",
          "sysname": "STATS|4",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446501,
              "marketInstanceId": 1386446501,
              "marketEntityId": 10743,
              "marketSysname": "SOCCER_SHOTSONTARGET_OVERLINES_EXTENDED",
              "betItems": [
                {
                  "id": "5760131461",
                  "code": "4+",
                  "codeCaption": null,
                  "caption": "4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.18,
                  "oddsText": "1.18",
                  "isAvailable": true
                },
                {
                  "id": "5760131462",
                  "code": "5+",
                  "codeCaption": null,
                  "caption": "5+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.42,
                  "oddsText": "1.42",
                  "isAvailable": true
                },
                {
                  "id": "5760131463",
                  "code": "6+",
                  "codeCaption": null,
                  "caption": "6+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.83,
                  "oddsText": "1.83",
                  "isAvailable": true
                },
                {
                  "id": "5760131464",
                  "code": "7+",
                  "codeCaption": null,
                  "caption": "7+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5760131465",
                  "code": "8+",
                  "codeCaption": null,
                  "caption": "8+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131466",
                  "code": "9+",
                  "codeCaption": null,
                  "caption": "9+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Total Shots on Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Total Shots on Target рџљЂ",
              "betViewKey": "1386446501",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 107487,
          "groupByModifiersGroupId": "107487-1",
          "type": "Single",
          "sysname": "STATS|5",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389027468,
              "marketInstanceId": 1389027468,
              "marketEntityId": 10538,
              "marketSysname": "SOCCER_SHOTSONTARGET_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770133209",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.04,
                  "oddsText": "2.04",
                  "isAvailable": true
                },
                {
                  "id": "5770133210",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.72,
                  "oddsText": "1.72",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP - Shots On Target Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP - Shots On Target Over/Under рџљЂ",
              "betViewKey": "1389027468",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 115001,
          "groupByModifiersGroupId": "115001-1",
          "type": "Single",
          "sysname": "STATS|6",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446502,
              "marketInstanceId": 1386446502,
              "marketEntityId": 10744,
              "marketSysname": "SOCCER_SHOTSONTARGET_HOME_OVERLINES_EXTENDED",
              "betItems": [
                {
                  "id": "5760131474",
                  "code": "3+",
                  "codeCaption": null,
                  "caption": "3+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.42,
                  "oddsText": "1.42",
                  "isAvailable": true
                },
                {
                  "id": "5760131475",
                  "code": "4+",
                  "codeCaption": null,
                  "caption": "4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131476",
                  "code": "5+",
                  "codeCaption": null,
                  "caption": "5+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5760131477",
                  "code": "6+",
                  "codeCaption": null,
                  "caption": "6+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP - Total Shots on Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP - Total Shots on Target рџљЂ",
              "betViewKey": "1386446502",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 107488,
          "groupByModifiersGroupId": "107488-1",
          "type": "Single",
          "sysname": "STATS|7",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389028479,
              "marketInstanceId": 1389028479,
              "marketEntityId": 10539,
              "marketSysname": "SOCCER_SHOTSONTARGET_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770136381",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5770136382",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.53,
                  "oddsText": "1.53",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ - Shots On Target Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ - Shots On Target Over/Under рџљЂ",
              "betViewKey": "1389028479",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 115000,
          "groupByModifiersGroupId": "115000-1",
          "type": "Single",
          "sysname": "STATS|8",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446503,
              "marketInstanceId": 1386446503,
              "marketEntityId": 10745,
              "marketSysname": "SOCCER_SHOTSONTARGET_AWAY_OVERLINES_EXTENDED",
              "betItems": [
                {
                  "id": "5760131483",
                  "code": "2+",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5760131484",
                  "code": "3+",
                  "codeCaption": null,
                  "caption": "3+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5760131485",
                  "code": "4+",
                  "codeCaption": null,
                  "caption": "4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ - Total Shots on Target рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ - Total Shots on Target рџљЂ",
              "betViewKey": "1386446503",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 85343,
          "groupByModifiersGroupId": "85343-1",
          "type": "Group",
          "sysname": "STATS|9",
          "caption": "Over/Under Shots рџљЂ",
          "betViews": [
            {
              "marketId": 1389029389,
              "marketInstanceId": 1389029389,
              "marketEntityId": 10530,
              "marketSysname": "SOCCER_SHOTS_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770139388",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 22.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.9,
                  "oddsText": "1.90",
                  "isAvailable": true
                },
                {
                  "id": "5770139389",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 22.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.83,
                  "oddsText": "1.83",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Shots Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Shots Over/Under рџљЂ",
              "betViewKey": "1389029389",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128260,
          "groupByModifiersGroupId": "128260-1",
          "type": "Single",
          "sysname": "STATS|10",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446499,
              "marketInstanceId": 1386446499,
              "marketEntityId": 10741,
              "marketSysname": "SOCCER_SHOTS_OVERLINES_EXTENDED",
              "betItems": [
                {
                  "id": "5760131423",
                  "code": "20+",
                  "codeCaption": null,
                  "caption": "20+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.25,
                  "oddsText": "1.25",
                  "isAvailable": true
                },
                {
                  "id": "5760131424",
                  "code": "22+",
                  "codeCaption": null,
                  "caption": "22+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.62,
                  "oddsText": "1.62",
                  "isAvailable": true
                },
                {
                  "id": "5760131425",
                  "code": "24+",
                  "codeCaption": null,
                  "caption": "24+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.38,
                  "oddsText": "2.38",
                  "isAvailable": true
                },
                {
                  "id": "5760131426",
                  "code": "26+",
                  "codeCaption": null,
                  "caption": "26+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.75,
                  "oddsText": "3.75",
                  "isAvailable": true
                },
                {
                  "id": "5760131427",
                  "code": "28+",
                  "codeCaption": null,
                  "caption": "28+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Total Shots рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Total Shots рџљЂ",
              "betViewKey": "1386446499",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128235,
          "groupByModifiersGroupId": "128235-1",
          "type": "Single",
          "sysname": "STATS|11",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389027470,
              "marketInstanceId": 1389027470,
              "marketEntityId": 10531,
              "marketSysname": "SOCCER_SHOTS_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770133213",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 15.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.74,
                  "oddsText": "1.74",
                  "isAvailable": true
                },
                {
                  "id": "5770133214",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 15.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP - Shots Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP - Shots Over/Under рџљЂ",
              "betViewKey": "1389027470",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128233,
          "groupByModifiersGroupId": "128233-1",
          "type": "Single",
          "sysname": "STATS|12",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446498,
              "marketInstanceId": 1386446498,
              "marketEntityId": 10740,
              "marketSysname": "SOCCER_SHOTS_HOME_OVERLINES_EXTENDED",
              "betItems": [
                {
                  "id": "5760131404",
                  "code": "14+",
                  "codeCaption": null,
                  "caption": "14+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.25,
                  "oddsText": "1.25",
                  "isAvailable": true
                },
                {
                  "id": "5760131405",
                  "code": "15+",
                  "codeCaption": null,
                  "caption": "15+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5760131406",
                  "code": "16+",
                  "codeCaption": null,
                  "caption": "16+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.73,
                  "oddsText": "1.73",
                  "isAvailable": true
                },
                {
                  "id": "5760131407",
                  "code": "17+",
                  "codeCaption": null,
                  "caption": "17+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5760131408",
                  "code": "18+",
                  "codeCaption": null,
                  "caption": "18+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.88,
                  "oddsText": "2.88",
                  "isAvailable": true
                },
                {
                  "id": "5760131409",
                  "code": "19+",
                  "codeCaption": null,
                  "caption": "19+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131410",
                  "code": "20+",
                  "codeCaption": null,
                  "caption": "20+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP - Total Shots рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP - Total Shots рџљЂ",
              "betViewKey": "1386446498",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128236,
          "groupByModifiersGroupId": "128236-1",
          "type": "Single",
          "sysname": "STATS|13",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389037325,
              "marketInstanceId": 1389037325,
              "marketEntityId": 10532,
              "marketSysname": "SOCCER_SHOTS_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770168267",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5770168268",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 6.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.82,
                  "oddsText": "1.82",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ - Shots Over/Under рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ - Shots Over/Under рџљЂ",
              "betViewKey": "1389037325",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128234,
          "groupByModifiersGroupId": "128234-1",
          "type": "Single",
          "sysname": "STATS|14",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446500,
              "marketInstanceId": 1386446500,
              "marketEntityId": 10742,
              "marketSysname": "SOCCER_SHOTS_AWAY_OVERLINES_EXTENDED",
              "betItems": [
                {
                  "id": "5760131435",
                  "code": "5+",
                  "codeCaption": null,
                  "caption": "5+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.22,
                  "oddsText": "1.22",
                  "isAvailable": true
                },
                {
                  "id": "5760131436",
                  "code": "6+",
                  "codeCaption": null,
                  "caption": "6+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.45,
                  "oddsText": "1.45",
                  "isAvailable": true
                },
                {
                  "id": "5760131437",
                  "code": "7+",
                  "codeCaption": null,
                  "caption": "7+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                },
                {
                  "id": "5760131438",
                  "code": "8+",
                  "codeCaption": null,
                  "caption": "8+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5760131439",
                  "code": "9+",
                  "codeCaption": null,
                  "caption": "9+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5760131440",
                  "code": "10+",
                  "codeCaption": null,
                  "caption": "10+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.5,
                  "oddsText": "6.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ - Total Shots рџљЂ",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ - Total Shots рџљЂ",
              "betViewKey": "1386446500",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 85311,
          "groupByModifiersGroupId": "85311-1",
          "type": "Group",
          "sysname": "STATS|15",
          "caption": "Over/Under Offsides",
          "betViews": [
            {
              "marketId": 1389030952,
              "marketInstanceId": 1389030952,
              "marketEntityId": 10558,
              "marketSysname": "SOCCER_OFFSIDES_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770147448",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.64,
                  "oddsText": "1.64",
                  "isAvailable": true
                },
                {
                  "id": "5770147449",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 5.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.15,
                  "oddsText": "2.15",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Offsides Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Offsides Over/Under",
              "betViewKey": "1389030952",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 103688,
          "groupByModifiersGroupId": "103688-1",
          "type": "Single",
          "sysname": "STATS|16",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446494,
              "marketInstanceId": 1386446494,
              "marketEntityId": 10561,
              "marketSysname": "SOCCER_OFFSIDES_OVERLINES",
              "betItems": [
                {
                  "id": "5760131357",
                  "code": "5+",
                  "codeCaption": null,
                  "caption": "5+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.22,
                  "oddsText": "1.22",
                  "isAvailable": true
                },
                {
                  "id": "5760131358",
                  "code": "6+",
                  "codeCaption": null,
                  "caption": "6+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.62,
                  "oddsText": "1.62",
                  "isAvailable": true
                },
                {
                  "id": "5760131359",
                  "code": "7+",
                  "codeCaption": null,
                  "caption": "7+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5760131360",
                  "code": "8+",
                  "codeCaption": null,
                  "caption": "8+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Total Offsides",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Total Offsides",
              "betViewKey": "1386446494",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128241,
          "groupByModifiersGroupId": "128241-1",
          "type": "Single",
          "sysname": "STATS|17",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389035737,
              "marketInstanceId": 1389035737,
              "marketEntityId": 10559,
              "marketSysname": "SOCCER_OFFSIDES_HOME_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770164032",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5770164033",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.68,
                  "oddsText": "1.68",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP - Offsides Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP - Offsides Over/Under",
              "betViewKey": "1389035737",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128242,
          "groupByModifiersGroupId": "128242-1",
          "type": "Single",
          "sysname": "STATS|18",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446506,
              "marketInstanceId": 1386446506,
              "marketEntityId": 10748,
              "marketSysname": "SOCCER_OFFSIDES_HOME_OVERLINES_EXTENDED",
              "betItems": [
                {
                  "id": "5760131515",
                  "code": "3+",
                  "codeCaption": null,
                  "caption": "3+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.25,
                  "oddsText": "1.25",
                  "isAvailable": true
                },
                {
                  "id": "5760131516",
                  "code": "4+",
                  "codeCaption": null,
                  "caption": "4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5760131517",
                  "code": "5+",
                  "codeCaption": null,
                  "caption": "5+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Palmeiras SP - Total Offsides",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Palmeiras SP - Total Offsides",
              "betViewKey": "1386446506",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128243,
          "groupByModifiersGroupId": "128243-1",
          "type": "Single",
          "sysname": "STATS|19",
          "caption": null,
          "betViews": [
            {
              "marketId": 1389027208,
              "marketInstanceId": 1389027208,
              "marketEntityId": 10560,
              "marketSysname": "SOCCER_OFFSIDES_AWAY_UNDER_OVER",
              "betItems": [
                {
                  "id": "5770129944",
                  "code": "O",
                  "codeCaption": null,
                  "caption": "Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5770129945",
                  "code": "U",
                  "codeCaption": null,
                  "caption": "Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.68,
                  "oddsText": "1.68",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ - Offsides Over/Under",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ - Offsides Over/Under",
              "betViewKey": "1389027208",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 128244,
          "groupByModifiersGroupId": "128244-1",
          "type": "Single",
          "sysname": "STATS|20",
          "caption": null,
          "betViews": [
            {
              "marketId": 1386446507,
              "marketInstanceId": 1386446507,
              "marketEntityId": 10749,
              "marketSysname": "SOCCER_OFFSIDES_AWAY_OVERLINES_EXTENDED",
              "betItems": [
                {
                  "id": "5760131521",
                  "code": "2+",
                  "codeCaption": null,
                  "caption": "2+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.25,
                  "oddsText": "1.25",
                  "isAvailable": true
                },
                {
                  "id": "5760131522",
                  "code": "3+",
                  "codeCaption": null,
                  "caption": "3+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5760131523",
                  "code": "4+",
                  "codeCaption": null,
                  "caption": "4+",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Botafogo RJ - Total Offsides",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Botafogo RJ - Total Offsides",
              "betViewKey": "1386446507",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    },
    {
      "sysname": "COMBO_BETS",
      "caption": "Combo Bets",
      "items": [
        {
          "id": 100058,
          "groupByModifiersGroupId": "100058-1",
          "type": "Single",
          "sysname": "COMBO_BETS|0",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385557924,
              "marketInstanceId": 1385557924,
              "marketEntityId": 7109,
              "marketSysname": "SOCCER_MATCH_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621003",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "1 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.25,
                  "oddsText": "3.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621004",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "1 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621005",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "2 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621006",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "2 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621007",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "О§ & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621008",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "О§ & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Full Time Result & Goals Over/Under (1.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Goals Over/Under (1.5)",
              "betViewKey": "1385557924",
              "modelType": "List"
            },
            {
              "marketId": 1385557925,
              "marketInstanceId": 1385557925,
              "marketEntityId": 7109,
              "marketSysname": "SOCCER_MATCH_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621009",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "1 & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621010",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "1 & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621011",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "2 & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621012",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "2 & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.0,
                  "oddsText": "6.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621013",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "О§ & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621014",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "О§ & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Full Time Result & Goals Over/Under (2.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Goals Over/Under (2.5)",
              "betViewKey": "1385557925",
              "modelType": "List"
            },
            {
              "marketId": 1385557926,
              "marketInstanceId": 1385557926,
              "marketEntityId": 7109,
              "marketSysname": "SOCCER_MATCH_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621015",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "1 & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 11.0,
                  "oddsText": "11.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621016",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "1 & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621017",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "2 & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621018",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "2 & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621019",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "О§ & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621020",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "О§ & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Full Time Result & Goals Over/Under (3.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Goals Over/Under (3.5)",
              "betViewKey": "1385557926",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21562,
          "groupByModifiersGroupId": "21562-1",
          "type": "Single",
          "sysname": "COMBO_BETS|1",
          "caption": null,
          "betViews": [
            {
              "numColumns": 3,
              "marketId": 1385557908,
              "marketInstanceId": 1385557908,
              "marketEntityId": 1232,
              "marketSysname": "SOCCER_MATCH_RESULT_BOTH_TO_SCORE",
              "betItems": [
                {
                  "id": "5756620923",
                  "code": "1Y",
                  "codeCaption": null,
                  "caption": "Palmeiras SP & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620925",
                  "code": "XY",
                  "codeCaption": null,
                  "caption": "Draw & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620927",
                  "code": "2Y",
                  "codeCaption": null,
                  "caption": "Botafogo RJ & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756620924",
                  "code": "1N",
                  "codeCaption": null,
                  "caption": "Palmeiras SP & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.65,
                  "oddsText": "2.65",
                  "isAvailable": true
                },
                {
                  "id": "5756620926",
                  "code": "XN",
                  "codeCaption": null,
                  "caption": "Draw & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756620928",
                  "code": "2N",
                  "codeCaption": null,
                  "caption": "Botafogo RJ & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "Table",
              "caption": "Full Time Result & Both teams to score",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Both teams to score",
              "betViewKey": "1385557908",
              "modelType": "Table"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 100060,
          "groupByModifiersGroupId": "100060-1",
          "type": "Single",
          "sysname": "COMBO_BETS|2",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558030,
              "marketInstanceId": 1385558030,
              "marketEntityId": 7340,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621481",
                  "code": "Y/O",
                  "codeCaption": null,
                  "caption": "Yes & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.25,
                  "oddsText": "4.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621482",
                  "code": "Y/U",
                  "codeCaption": null,
                  "caption": "Yes & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.2,
                  "oddsText": "6.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621483",
                  "code": "N/O",
                  "codeCaption": null,
                  "caption": "No & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.25,
                  "oddsText": "13.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621484",
                  "code": "N/U",
                  "codeCaption": null,
                  "caption": "No & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.47,
                  "oddsText": "1.47",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score & Goals Over/Under (2.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score & Goals Over/Under (2.5)",
              "betViewKey": "1385558030",
              "modelType": "List"
            },
            {
              "marketId": 1385558031,
              "marketInstanceId": 1385558031,
              "marketEntityId": 7340,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621485",
                  "code": "Y/O",
                  "codeCaption": null,
                  "caption": "Yes & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 9.0,
                  "oddsText": "9.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621486",
                  "code": "Y/U",
                  "codeCaption": null,
                  "caption": "Yes & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621487",
                  "code": "N/O",
                  "codeCaption": null,
                  "caption": "No & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621488",
                  "code": "N/U",
                  "codeCaption": null,
                  "caption": "No & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.37,
                  "oddsText": "1.37",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score & Goals Over/Under (3.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score & Goals Over/Under (3.5)",
              "betViewKey": "1385558031",
              "modelType": "List"
            },
            {
              "marketId": 1385558032,
              "marketInstanceId": 1385558032,
              "marketEntityId": 7340,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621489",
                  "code": "Y/O",
                  "codeCaption": null,
                  "caption": "Yes & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 25.0,
                  "oddsText": "25.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621490",
                  "code": "Y/U",
                  "codeCaption": null,
                  "caption": "Yes & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.75,
                  "oddsText": "2.75",
                  "isAvailable": true
                },
                {
                  "id": "5756621491",
                  "code": "N/O",
                  "codeCaption": null,
                  "caption": "No & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 201.0,
                  "oddsText": "201.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621492",
                  "code": "N/U",
                  "codeCaption": null,
                  "caption": "No & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.34,
                  "oddsText": "1.34",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score & Goals Over/Under (4.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score & Goals Over/Under (4.5)",
              "betViewKey": "1385558032",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 55046,
          "groupByModifiersGroupId": "55046-1",
          "type": "Single",
          "sysname": "COMBO_BETS|3",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558141,
              "marketInstanceId": 1385558141,
              "marketEntityId": 8758,
              "marketSysname": "SOCCER_BOTH_TEAMS_TO_SCORE_OR_OVER",
              "betItems": [
                {
                  "id": "5756621737",
                  "code": "Y",
                  "codeCaption": null,
                  "caption": "Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621738",
                  "code": "N",
                  "codeCaption": null,
                  "caption": "No (2-0, 1-0, 0-0, 0-1 or 0-2)",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.53,
                  "oddsText": "1.53",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Both teams to score or Over 2.5",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Both teams to score or Over 2.5",
              "betViewKey": "1385558141",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 55014,
          "groupByModifiersGroupId": "55014-1",
          "type": "Single",
          "sysname": "COMBO_BETS|4",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558143,
              "marketInstanceId": 1385558143,
              "marketEntityId": 8760,
              "marketSysname": "SOCCER_MATCH_RESULT_OR_BOTH_TEAMS_TO_SCORE",
              "betItems": [
                {
                  "id": "5756621745",
                  "code": "1/Y",
                  "codeCaption": null,
                  "caption": "Palmeiras SP or GG",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.44,
                  "oddsText": "1.44",
                  "isAvailable": true
                },
                {
                  "id": "5756621746",
                  "code": "1/N",
                  "codeCaption": null,
                  "caption": "Palmeiras SP or NG",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.24,
                  "oddsText": "1.24",
                  "isAvailable": true
                },
                {
                  "id": "5756621747",
                  "code": "2/Y",
                  "codeCaption": null,
                  "caption": "Botafogo RJ or GG",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621748",
                  "code": "2/N",
                  "codeCaption": null,
                  "caption": "Botafogo RJ or NG",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.33,
                  "oddsText": "1.33",
                  "isAvailable": true
                },
                {
                  "id": "5756621749",
                  "code": "X/Y",
                  "codeCaption": null,
                  "caption": "Draw or GG",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.85,
                  "oddsText": "1.85",
                  "isAvailable": true
                },
                {
                  "id": "5756621750",
                  "code": "X/N",
                  "codeCaption": null,
                  "caption": "Draw or NG",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.18,
                  "oddsText": "1.18",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Full Time Result or Both Teams to Score",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result or Both Teams to Score",
              "betViewKey": "1385558143",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 55015,
          "groupByModifiersGroupId": "55015-1",
          "type": "Single",
          "sysname": "COMBO_BETS|5",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558142,
              "marketInstanceId": 1385558142,
              "marketEntityId": 8759,
              "marketSysname": "SOCCER_MATCH_RESULT_OR_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621739",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "Palmeiras SP or Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.78,
                  "oddsText": "1.78",
                  "isAvailable": true
                },
                {
                  "id": "5756621740",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "Palmeiras SP or Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.08,
                  "oddsText": "1.08",
                  "isAvailable": true
                },
                {
                  "id": "5756621741",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "Botafogo RJ or Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.45,
                  "oddsText": "2.45",
                  "isAvailable": true
                },
                {
                  "id": "5756621742",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "Botafogo RJ or Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.21,
                  "oddsText": "1.21",
                  "isAvailable": true
                },
                {
                  "id": "5756621743",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "Draw or Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.67,
                  "oddsText": "1.67",
                  "isAvailable": true
                },
                {
                  "id": "5756621744",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "Draw or Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.26,
                  "oddsText": "1.26",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalThree",
              "caption": "Full Time Result or Over/Under 2.5",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result or Over/Under 2.5",
              "betViewKey": "1385558142",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 100062,
          "groupByModifiersGroupId": "100062-1",
          "type": "Single",
          "sysname": "COMBO_BETS|6",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558028,
              "marketInstanceId": 1385558028,
              "marketEntityId": 7338,
              "marketSysname": "SOCCER_FIRST_HALF_RESULT_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621469",
                  "code": "1/O",
                  "codeCaption": null,
                  "caption": "1 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621470",
                  "code": "1/U",
                  "codeCaption": null,
                  "caption": "1 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621471",
                  "code": "2/O",
                  "codeCaption": null,
                  "caption": "2 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 29.0,
                  "oddsText": "29.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621472",
                  "code": "2/U",
                  "codeCaption": null,
                  "caption": "2 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.5,
                  "oddsText": "7.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621473",
                  "code": "X/O",
                  "codeCaption": null,
                  "caption": "X & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 15.0,
                  "oddsText": "15.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621474",
                  "code": "X/U",
                  "codeCaption": null,
                  "caption": "X & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "1st Half - Result & Goals Over/Under ",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "1st Half - Result & Goals Over/Under ",
              "betViewKey": "1385558028",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21561,
          "groupByModifiersGroupId": "21561-1",
          "type": "Single",
          "sysname": "COMBO_BETS|7",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558007,
              "marketInstanceId": 1385558007,
              "marketEntityId": 7230,
              "marketSysname": "SOCCER_DOUBLE_CHANCE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621299",
                  "code": "1X/O",
                  "codeCaption": null,
                  "caption": "1X & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                },
                {
                  "id": "5756621300",
                  "code": "1X/U",
                  "codeCaption": null,
                  "caption": "1X & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.25,
                  "oddsText": "2.25",
                  "isAvailable": true
                },
                {
                  "id": "5756621301",
                  "code": "X2/O",
                  "codeCaption": null,
                  "caption": "X2 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.4,
                  "oddsText": "3.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621302",
                  "code": "X2/U",
                  "codeCaption": null,
                  "caption": "X2 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.8,
                  "oddsText": "2.80",
                  "isAvailable": true
                },
                {
                  "id": "5756621303",
                  "code": "12/O",
                  "codeCaption": null,
                  "caption": "12 & Over 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.4,
                  "oddsText": "2.40",
                  "isAvailable": true
                },
                {
                  "id": "5756621304",
                  "code": "12/U",
                  "codeCaption": null,
                  "caption": "12 & Under 1.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.05,
                  "oddsText": "3.05",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Double Chance & Goals Over/Under (1.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Double Chance & Goals Over/Under (1.5)",
              "betViewKey": "1385558007",
              "modelType": "List"
            },
            {
              "marketId": 1385558008,
              "marketInstanceId": 1385558008,
              "marketEntityId": 7230,
              "marketSysname": "SOCCER_DOUBLE_CHANCE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621305",
                  "code": "1X/O",
                  "codeCaption": null,
                  "caption": "1X & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.33,
                  "oddsText": "4.33",
                  "isAvailable": true
                },
                {
                  "id": "5756621306",
                  "code": "1X/U",
                  "codeCaption": null,
                  "caption": "1X & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.5,
                  "oddsText": "1.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621307",
                  "code": "X2/O",
                  "codeCaption": null,
                  "caption": "X2 & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.5,
                  "oddsText": "8.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621308",
                  "code": "X2/U",
                  "codeCaption": null,
                  "caption": "X2 & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.0,
                  "oddsText": "2.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621309",
                  "code": "12/O",
                  "codeCaption": null,
                  "caption": "12 & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.6,
                  "oddsText": "3.60",
                  "isAvailable": true
                },
                {
                  "id": "5756621310",
                  "code": "12/U",
                  "codeCaption": null,
                  "caption": "12 & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.1,
                  "oddsText": "2.10",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Double Chance & Goals Over/Under (2.5)",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Double Chance & Goals Over/Under (2.5)",
              "betViewKey": "1385558008",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 44326,
          "groupByModifiersGroupId": "44326-1",
          "type": "Single",
          "sysname": "COMBO_BETS|8",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558115,
              "marketInstanceId": 1385558115,
              "marketEntityId": 8114,
              "marketSysname": "SOCCER_DOUBLE_CHANCE_BOTH_TO_SCORE",
              "betItems": [
                {
                  "id": "5756621680",
                  "code": "1XY",
                  "codeCaption": null,
                  "caption": "1X & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 3.0,
                  "oddsText": "3.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621681",
                  "code": "1XN",
                  "codeCaption": null,
                  "caption": "1X & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.67,
                  "oddsText": "1.67",
                  "isAvailable": true
                },
                {
                  "id": "5756621682",
                  "code": "X2Y",
                  "codeCaption": null,
                  "caption": "X2 & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.0,
                  "oddsText": "4.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621683",
                  "code": "X2N",
                  "codeCaption": null,
                  "caption": "X2 & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621684",
                  "code": "12Y",
                  "codeCaption": null,
                  "caption": "12 & Yes",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621685",
                  "code": "12N",
                  "codeCaption": null,
                  "caption": "12 & No",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 1.91,
                  "oddsText": "1.91",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalTwo",
              "caption": "Double Chance & Both Teams to Score",
              "isAvailable": true,
              "betBuilderSupported": true,
              "hasMultipleModifiers": false,
              "displayCaption": "Double Chance & Both Teams to Score",
              "betViewKey": "1385558115",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        },
        {
          "id": 21563,
          "groupByModifiersGroupId": "21563-1",
          "type": "Single",
          "sysname": "COMBO_BETS|9",
          "caption": null,
          "betViews": [
            {
              "marketId": 1385558024,
              "marketInstanceId": 1385558024,
              "marketEntityId": 7311,
              "marketSysname": "SOCCER_MATCH_RESULT_BOTH_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621442",
                  "code": "1YO",
                  "codeCaption": null,
                  "caption": "1 & Yes & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 7.0,
                  "oddsText": "7.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621443",
                  "code": "1NU",
                  "codeCaption": null,
                  "caption": "1 & No & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.88,
                  "oddsText": "2.88",
                  "isAvailable": true
                },
                {
                  "id": "5756621444",
                  "code": "1NO",
                  "codeCaption": null,
                  "caption": "1 & No & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621445",
                  "code": "XYU",
                  "codeCaption": null,
                  "caption": "X & Yes & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.2,
                  "oddsText": "6.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621446",
                  "code": "XYO",
                  "codeCaption": null,
                  "caption": "X & Yes & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621447",
                  "code": "XNU",
                  "codeCaption": null,
                  "caption": "X & No & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621449",
                  "code": "2YO",
                  "codeCaption": null,
                  "caption": "2 & Yes & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621450",
                  "code": "2NU",
                  "codeCaption": null,
                  "caption": "2 & No & Under 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621451",
                  "code": "2NO",
                  "codeCaption": null,
                  "caption": "2 & No & Over 2.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Full Time Result & Both Teams to Score & Goals Over/Under (2.5)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Both Teams to Score & Goals Over/Under (2.5)",
              "betViewKey": "1385558024",
              "modelType": "List"
            },
            {
              "marketId": 1385558025,
              "marketInstanceId": 1385558025,
              "marketEntityId": 7311,
              "marketSysname": "SOCCER_MATCH_RESULT_BOTH_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5756621452",
                  "code": "1YU",
                  "codeCaption": null,
                  "caption": "1 & Yes & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 10.0,
                  "oddsText": "10.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621453",
                  "code": "1YO",
                  "codeCaption": null,
                  "caption": "1 & Yes & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621454",
                  "code": "1NU",
                  "codeCaption": null,
                  "caption": "1 & No & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.62,
                  "oddsText": "2.62",
                  "isAvailable": true
                },
                {
                  "id": "5756621455",
                  "code": "1NO",
                  "codeCaption": null,
                  "caption": "1 & No & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 23.0,
                  "oddsText": "23.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621456",
                  "code": "XYU",
                  "codeCaption": null,
                  "caption": "X & Yes & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 6.2,
                  "oddsText": "6.20",
                  "isAvailable": true
                },
                {
                  "id": "5756621457",
                  "code": "XYO",
                  "codeCaption": null,
                  "caption": "X & Yes & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 17.0,
                  "oddsText": "17.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621458",
                  "code": "XNU",
                  "codeCaption": null,
                  "caption": "X & No & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621459",
                  "code": "2YU",
                  "codeCaption": null,
                  "caption": "2 & Yes & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 13.0,
                  "oddsText": "13.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621460",
                  "code": "2YO",
                  "codeCaption": null,
                  "caption": "2 & Yes & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 21.0,
                  "oddsText": "21.00",
                  "isAvailable": true
                },
                {
                  "id": "5756621461",
                  "code": "2NU",
                  "codeCaption": null,
                  "caption": "2 & No & Under 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5756621462",
                  "code": "2NO",
                  "codeCaption": null,
                  "caption": "2 & No & Over 3.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 126.0,
                  "oddsText": "126.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Full Time Result & Both Teams to Score & Goals Over/Under (3.5)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Both Teams to Score & Goals Over/Under (3.5)",
              "betViewKey": "1385558025",
              "modelType": "List"
            },
            {
              "marketId": 1389020974,
              "marketInstanceId": 1389020974,
              "marketEntityId": 7311,
              "marketSysname": "SOCCER_MATCH_RESULT_BOTH_TO_SCORE_UNDER_OVER",
              "betItems": [
                {
                  "id": "5767246003",
                  "code": "1YU",
                  "codeCaption": null,
                  "caption": "1 & Yes & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 8.0,
                  "oddsText": "8.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104679",
                  "code": "1YO",
                  "codeCaption": null,
                  "caption": "1 & Yes & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 19.0,
                  "oddsText": "19.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104680",
                  "code": "1NU",
                  "codeCaption": null,
                  "caption": "1 & No & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 2.5,
                  "oddsText": "2.50",
                  "isAvailable": true
                },
                {
                  "id": "5770104681",
                  "code": "1NO",
                  "codeCaption": null,
                  "caption": "1 & No & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 51.0,
                  "oddsText": "51.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104682",
                  "code": "XYU",
                  "codeCaption": null,
                  "caption": "X & Yes & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.0,
                  "oddsText": "5.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104683",
                  "code": "XYO",
                  "codeCaption": null,
                  "caption": "X & Yes & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 81.0,
                  "oddsText": "81.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104684",
                  "code": "XNU",
                  "codeCaption": null,
                  "caption": "X & No & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 4.5,
                  "oddsText": "4.50",
                  "isAvailable": true
                },
                {
                  "id": "5770104685",
                  "code": "2YU",
                  "codeCaption": null,
                  "caption": "2 & Yes & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 12.0,
                  "oddsText": "12.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104686",
                  "code": "2YO",
                  "codeCaption": null,
                  "caption": "2 & Yes & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 34.0,
                  "oddsText": "34.00",
                  "isAvailable": true
                },
                {
                  "id": "5770104687",
                  "code": "2NU",
                  "codeCaption": null,
                  "caption": "2 & No & Under 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 5.5,
                  "oddsText": "5.50",
                  "isAvailable": true
                },
                {
                  "id": "5770104688",
                  "code": "2NO",
                  "codeCaption": null,
                  "caption": "2 & No & Over 4.5",
                  "instanceCaption": null,
                  "betDisplayCaption": null,
                  "price": 251.0,
                  "oddsText": "251.00",
                  "isAvailable": true
                }
              ],
              "timestamp": 638867250198714603,
              "displayFormat": "VerticalOne",
              "caption": "Full Time Result & Both Teams to Score & Goals Over/Under (4.5)",
              "isAvailable": true,
              "betBuilderSupported": false,
              "hasMultipleModifiers": false,
              "displayCaption": "Full Time Result & Both Teams to Score & Goals Over/Under (4.5)",
              "betViewKey": "1389020974",
              "modelType": "List"
            }
          ],
          "showMore": null,
          "grouping": null,
          "groupDisplayFormat": null
        }
      ]
    }
  ],
  "liveStreamingCountries": "GR,CY,FI,IE",
  "providers": {
    "streams": [
      {
        "eventId": "489957",
        "discriminator": "IMG"
      }
    ],
    "flashbets": [
      {
        "eventId": "370g150j1tflo70hueh62tnh0",
        "discriminator": "KeroSports"
      }
    ],
    "fields": [
      {
        "performFixtureId": "370g150j1tflo70hueh62tnh0",
        "discriminator": "Perform"
      }
    ]
  },
  "isAwayAtHome": false,
  "hasEnrichedStats": true,
  "metadata": {
    "tournamentRound": "Round of 16",
    "discriminator": "EventMetadataModel"
  },
  "caption": "Palmeiras SP - Botafogo RJ",
  "viewCaption": "FIFA Club World Cup",
  "marketViewType": "EVENT",
  "marketViewKey": "C41192367",
  "modelType": "default",
  "hasNotificationList": true,
  "discriminator": "EventMarketViewModel"
}
 
Последнее редактирование:

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)