Skip to main content
Loading...

Please read the overwolf.games.events documentation page to learn how to use Overwolf game events.

Sample Apps

Available Features

Game events status

It's recommended to communicate errors and warnings to your users. You can check game event status here or easily verify event status directly from your app using our API.

gep_internal

Info Updates

keyCategoryValuesNotesSince GEP Ver.
gep_internalgep_internalLocal + Public version numberSee notes143.0

gep_internal note

Data Example:

{"info":{"gep_internal":{"version_info":"{"local_version":"157.0.1","public_version":"157.0.1","is_updated":true}"}},"feature":"gep_internal"}

stats

Info Updates

keyCategoryValuesNotesSince GEP Ver.
player0 / player1 … palyerN(N = number of players in the match)playersInfoCheck notesSee notes14.0

player note

  • Encoded stringified JSON containing the properties:
    • steamId – Steam ID of the player who died
    • score – Score of the player who died
    • goals – Goal count of the player
    • name – Name of the player that died
    • team – Team number of the player (1 or 2)

Comment:

Encoded stringified JSON containing the properties. Need to do a decodeURI() on the value and then JSON.parse() on the result.

Data Example:

{"info":{"playersInfo":{"player0":"%7B%22steamId%22:%222535466851496806%22,%22score%22:52,%22goals%22:%220%22,%22name%22:%22Daknowntesco%22,%22state%22:%220%22,%22team_score%22:0,%22team%22:%221%22,%22local%22:%220%22,%22index%22:0%7D"}},"feature":"roster"}

Events

EventEvent DataFired WhenNotesSince GEP Ver.
goalCheck notesA goal has been scoredSee notes14.0
scoreCheck notesScore of a player has changedSee notes86.0
teamGoalnullWhen the local player’s team has scored a goalSee notes131.0
opposingTeamGoalnullWhen the opposing team has scored a goalSee notes131.0

goal note

Event Data:

  • steamId – Steam id of the player scoring the goal
  • score – Score of the player scoring the goal
  • goals – Goal count of the player
  • name – Name of the player scoring the goal
  • team – Team number of the scoring player (1 or 2)
  • local – Whether the player who scored is the local player

Comments:

Encoded stringified JSON containing the properties. Need to do a decodeURI() on the value and then JSON.parse() on the result

Data Example:

{"events":[{"name":"goal","data":"{  "steamId": "0",  "score": 118,  "goals": "1",  "name": "Ram is troll",  "state": "0",  "team_score": 1,  "team": "2",  "local": "1",  "index": 3}"}]}

score note

Event Data:

  • steamId – Steam ID of the player
  • score – Score of the player
  • goals – Goal count of the player
  • name – Name of the player
  • state
  • team_score
  • team – Team number of the player (1 or 2)
  • index

Comments:

Encoded stringified JSON containing the properties. Need to do a decodeURI() on the value and the JSON.parse() on the result

Data Example:

{"info":{"me":{"team_score":"0"}},"feature":"me"}
{"info":{"teamsScore":{"team1_score":"0"}},"feature":"roster"}
{"info":{"teamsScore":{"team2_score":"0"}},"feature":"roster"}
{"info":{"me":{"score":"725"}},"feature":"me"}

teamGoal note

Data Example:

{"events":[{"name":"teamGoal","data":"{"steamId":"2535424769966317","score":126,"goals":"1","name":"JteRushencroks0","state":"0","team_score":2,"team":"1","index":4}"}]}

opposingTeamGoal note

Data Example:

{"events":[{"name":"opposingTeamGoal","data":"{"steamId":"2535461211167231","score":128,"goals":"1","name":"JaffaCake200015","state":"0","team_score":1,"team":"1","index":2}"}]}

match

Info Updates

keyCategoryValuesNotesSince GEP Ver.
startedmatchState"true" / "false"14.0
endedmatchState"true" / "false"86.0
matchTypematchInfoCurrent match typeSee notes86.0
rankedmatchInfoTrue if the match is ranked, false otherwise "true"/"false"86.0
maxPlayersmatchInfoMaximum number of players allowed in this matchSee notes86.0
gameModematchInfoGame mode of the matchSee notes86.0
gameStatematchInfoCurrent state of the gameSee notes86.0
gameTypematchInfoCurrent game type86.0

matchType note

Possible values:

  • Lobby
  • Private
  • Online
  • Offline

Data Example:

{"info":{"matchInfo":{"matchType":"Online"}},"feature":"match"}

maxPlayers note

(integer – use parseInt)

Data Example:

{"info":{"matchInfo":{"maxPlayers":"6"}},"feature":"match"}

gameMode note

Possible values:

  • Soccar
  • Breakout (Dropshot)
  • Basketball
  • Hockey
  • Items
  • Unknown

Data Example:

{"feature":"match","category":"matchInfo","key":"gameMode","value":"Soccar"}

gameState note

Possible values:

  • WaitingForPlayers
  • Countdown
  • Active
  • PostGoalScored
  • ReplayPlayback
  • PrePodiumSpotlight
  • Finished
  • Unknown
  • PodiumSpotlight

Data Example:

{"info":{"matchInfo":{"gameState":"WaitingForPlayers"}},"feature":"match"}

Events

EventEvent DataFired WhenNotesSince GEP Ver.
matchStartnullMatch startsSee notes14.0
matchEndnullMatch endsSee notes14.0
victorynullteam_score (1 / 2)(1 – Victory, 2 - defeat)86.0
defeatnullteam_score (1 / 2)(1 – Victory, 2 - defeat)86.0

matchStart note

Data Example:

{"events":[{"name":"matchStart","data":""}]}

matchEnd note

Data Example:

{"events":[{"name":"matchEnd","data":""}]}

victory note

Data Example:

{"events":[{"name":"victory","data":"{"team_score":5}"}]}

defeat note

Data Example:

{"events":[{"name":"defeat","data":"{"team_score":0}"}]}

match_info

Info Updates

keyCategoryValuesNotesSince GEP Ver.
pseudo_match_idmatch_infoCurrent match’s internal ID code.See notes130.0
mutator_settingsmatch_infoThe current-chosen settings of the private match.See notes147.0
arenamatch_infoThe current private match's arena setting.See notes147.0
server_infomatch_infoThe info of the current match's server info.See notes147.0

pseudo_match_id note

Data Example:

0c0ea3df-97ea-4d3a-b1f6-f8e34042251f

mutator_settings note

Data Example:

{"info":{"match_info":{"mutator_settings":"SmallBall,HighBounciness,FastBall,LightBall,Pinball,BotsNone"}},"feature":"match_info"}

arena note

Data Example:

{"info":{"match_info":{"arena":"Random"}},"feature":"match_info"}

server_info note

Data Example:

{"info":{"match_info":{"server_info":"EU511-Gimbal9"}},"feature":"match_info"}

Events

EventEvent DataFired WhenNotesSince GEP Ver.
action_pointsmatch_infoName of action that granted a score to the local player.See notes160.0

action_points note

Data Examples:

{"events":[{"name":"action_points","data":"Shot On Goal"}]}
{"events":[{"name":"action_points","data":"Goal"}]}
{"events":[{"name":"action_points","data":"First Touch"}]}
{"events":[{"name":"action_points","data":"Center Ball"}]}
{"events":[{"name":"action_points","data":"Pool Shot"}]}
{"events":[{"name":"action_points","data":"Assist"}]}
{"events":[{"name":"action_points","data":"Clear Goal"}]}
{"events":[{"name":"action_points","data":"Demolish"}]}
{"events":[{"name":"action_points","data":"Save"}]}
{"events":[{"name":"action_points","data":"Epic Save"}]}
{"events":[{"name":"action_points","data":"Long Shot"}]}

roster

Info Updates

keyCategoryValuesNotesSince GEP Ver.
player0 / player1 … palyerN (N = number of players in the match)playersInfoCheck notesSee notes14.0
team1 / team2teamsInfoCheck notesSee notes24.0
team1_score / team2_scoreteamsScoreteam1 / team2 score – integerSee notes86.0
players_rankplayersInfoThe rank of each player at the end of a matchSee notes237.0

player note

  • Encoded stringified JSON containing the properties:
    • steamId – Steam ID of the player who died
    • score – Score of the player who died
    • goals – Goal count of the player
    • name – Name of the player that died
    • team – Team number of the player (1 or 2)
    • platform - The platform's current platform name
      • Available platforms: Steam, PS4 (PS5), PS3, Dingo, Epic, NNX (Nintendo)
    • player_id - the current player ID in the specific platform
    • assists - Total assists of the player
    • saves - Total saves of the player
    • shots - Total shots of the player
    • mvp - 1 if the player is the MVP, 0 if not
    • team_score - Total team score
    • local - 1 If the player is the local player, 0 if not

Comment:

Encoded stringified JSON containing the properties. Need to do a decodeURI() on the value and then JSON.parse() on the result.

Data Example:

{"info":{"playersInfo":{"player0":"{"steamId":"0","player_id":"af52b92db42242592e73bbbf8c4","platform":"Epic","score":0,"assists":"0","saves":"0","shots":"0","goals":"0","mvp":"0","name":"oSparrow","state":"0","team_score":0,"team":"1","local":"1","index":2}"}},"feature":"roster"}

teamsInfo note

Value:

An encoded stringified array of strings indicating the player's IDs for each team. Each ID corresponds to an ID under the playersInfo category.

Data Example

{"info":{"teamsInfo":{"team1":"%5B%22player0%22%5D"}},"feature":"roster"}

players_rank note

Data Example

 {"feature": "roster", "category": "playersInfo", "key": "players_rank", "data": "[{\"name\":\"Yo55680\",\"rank\":\"Silver III\"},{\"name\":\"BruTS93330\",\"rank\":\"Silver III\"},{\"name\":\"ruzgaasar07\",\"rank\":\"Silver III\"},{\"name\":\"t2l__ll\",\"rank\":\"Silver III\"}]"}

Events

EventEvent DataFired WhenNotesSince GEP Ver.
rosterChangeArray containing players' informationA player leaves or joins the matchSee notes14.0
playerJoinedCheck notesA player joins the matchSee notes24.0
playerLeftCheck notesA player leaves the matchSee notes24.0

rosterChange note

Data Example:

{"events":[{"name":"rosterChange","data":"{"roster": [{"steamId": "2535466851496806","score": 52,"goals": "0","name": "Daknowntesco","state": "0","team_score": 0,"team": "1","local": "0","index": 0},{"steamId": "8815809362838850094","score": 0,"goals": "0","name": "YT_BR33Z3_","state": "0","team_score": 0,"team": "2","local": "0","index": 1},{"steamId": "76561198239574678","score": 0,"goals": "0","name": "lars","state": "0","team_score": 0,"team": "1","local": "0","index": 2}]}"}]}

playerJoined note

Event Data:

  • steamId – Steam ID of the player
  • score – Score of the player
  • goals – Goal count of the player
  • name – Name of the player
  • team – Team number of the player (1 or 2)

Data Example:

{"events":[{"name":"playerJoined","data":"{"steamId":"2535428144972964","score":0,"goals": "0","name":"Joschy900","state":"0\","team_score":0,"team":"1","index": 2}"}]}

playerLeft note

Event Data:

  • steamId – Steam ID of the player
  • score – Score of the player
  • goals – Goal count of the player
  • name – Name of the player
  • team – Team number of the player (1 or 2)

Data Example:

{"events":[{"name":"playerLeft","data":"{"steamId":"156382600742638838","score":52,"goals":"0","name":"JHONNYHS","state":"0","team_score":1,"team":"2","index": 2}"}]}

me

Info Updates

keyCategoryValuesNotesSince GEP Ver.
steamIdmePlayer’s Steam ID14.0
namemePlayer’s name14.0
goalsmePlayer’s goal count14.0
scoremePlayer’s score14.0
teammePlayer’s team number14.0
team_scoremeTeam score86.0
playlists_rankgame_infoTeam scoreSee notes237.0

me note

Data Examples:

{"info":{"me":{"goals":"1"}},"feature":"me"}
{"info":{"me":{"score":"102"}},"feature":"me"}
{"info":{"me":{"team_score":"1"}},"feature":"me"}

playlists_rank note

Data Examples:

{"feature": "me","category": "game_info","key": "playlists_rank","data": "[{\"game_mode\":\"Doubles\",\"tier\":\"Silver III\",\"division\":4},{\"game_mode\":\"Duel\",\"tier\":\"Silver III\",\"division\":2}]"}

death

Events

EventEvent DataFired WhenNotesSince GEP Ver.
deathnullA player is demolished by an opponent.See notes160.0

death note

Data Example:

{"events":[{"name":"death","data":""}]}

game_info

Info Updates

keyCategoryValuesNotesSince GEP Ver.
trade_menu_openedgame_info"true" / "false"See notes170.3
trade_my_propositiongame_infoLocal player's items that are on offer.See notes170.3
trade_opponent_propositiongame_infoTeam member's items that are on offer.See notes170.3
car_look_inventorygame_infoItems that are equipped to the local player's car.See notes186.3
trade_my_inventorygame_infoTradable items in the general inventory.See notes186.3

trade_menu_opened note

Data Example:

{"info":{"game_info":{"trade_menu_opened":"true"}},"feature":"game_info"}
{"info":{"game_info":{"trade_menu_opened":"false"}},"feature":"game_info"}

trade_my_proposition note

Data Example:

{"info":{"game_info":{"trade_my_proposition":"[{"Index": "0","key" : "2625_0","ProductId" : "2625","ProductName" : "skin_aftershock_tigertiger","Color" : "0","Count" : "1"}]"}},"feature":"game_info"}
{"info":{"game_info":{"trade_my_proposition":"[]"}},"feature":"game_info"}

trade_opponent_proposition note

Data Example:

{"info":{"game_info":{"trade_opponent_proposition":"[{"Index": "0","key" : "2969_0","ProductId" : "2969","ProductName" : "skin_vanquish_watermelon","Color" : "0","Count" : "1"},{"Index": "1","key" : "4727_0","ProductId" : "4727","ProductName" : "hat_accordion","Color" : "0","Count" : "1"}]"}},"feature":"game_info"}
{"info":{"game_info":{"trade_opponent_proposition":"[]"}},"feature":"game_info"}

car_look_inventory note

Data Example:

{"info":{"game_info":{"car_look_inventory":"[{"Index": "0","key" : "1794_9","ProductId" : "1794","ProductName" : "EngineAudio_Car01_REV","Color" : "0","Count" : "1"},{"Index": "1","key" : "1903_8","ProductId" : "1903","ProductName" : "Explosion_Default","Color" : "0","Count" : "1"},{"Index": "2","key" : "2047_7","ProductId" : "2047","ProductName" : "ss_Toonrocks","Color" : "0","Count" : "1"},{"Index": "3","key" : "23_0","ProductId" : "23","ProductName" : "Body_Octane","Color" : "0","Count" : "1"},{"Index": "4","key" : "2526_5","ProductId" : "2526","ProductName" : "playerBanner_RLShield","Color" : "0","Count" : "1"},{"Index": "5","key" : "270_1","ProductId" : "270","ProductName" : "PaintFinish_Default","Color" : "0","Count" : "1"},{"Index": "6","key" : "270_2","ProductId" : "270","ProductName" : "PaintFinish_Default","Color" : "0","Count" : "1"},{"Index": "7","key" : "2904_4","ProductId" : "2904","ProductName" : "boost_sunrays","Color" : "0","Count" : "1"},{"Index": "8","key" : "3085_6","ProductId" : "3085","ProductName" : "AvatarBorder_Default","Color" : "0","Count" : "1"},{"Index": "9","key" : "6846_3","ProductId" : "6846","ProductName" : "wheel_spitfire_se","Color" : "0","Count" : "1"}]"}},"feature":"game_info"}

trade_my_inventory note

Data Example:

Info UPDATE: {"info":{"game_info":{"trade_my_inventory":"[{"Index": "0","key" : "1000_0","ProductId" : "1000","ProductName" : "Antenna_Worms_Grenade","Color" : "0","Count" : "1"},{"Index": "1","key" : "1008_0","ProductId" : "1008","ProductName" : "Flag_Worms","Color" : "0","Count" : "1"},{"Index": "2","key" : "1028_0","ProductId" : "1028","ProductName" : "Hat_Worms","Color" : "0","Count" : "1"},{"Index": "3","key" : "1171_0","ProductId" : "1171","ProductName" : "Body_NeoCar","Color" : "0","Count" : "1"},{"Index": "4","key" : "1172_0","ProductId" : "1172","ProductName" : "Body_Marauder","Color" : "0","Count" : "1"},{"Index": "5","key" : "1177_0","ProductId" : "1177","ProductName" : "WHEEL_NeoWheel","Color" : "0","Count" : "1"},{"Index": "6","key" : "11_0","ProductId" : "11","ProductName" : "Antenna_PeaceSign","Color" : "0","Count" : "1"},{"Index": "7","key" : "1212_0","ProductId" : "1212","ProductName" : "Flag_4PlayerNetwork","Color" : "0","Count" : "1"},{"Index": "8","key" : "1213_0","ProductId" : "1213","ProductName" : "Flag_Shacknews","Color" : "0","Count" : "1"},{"Index": "9","key" : "1263_0","ProductId" : "1263","ProductName" : "flag_nba","Color" : "0","Count" : "1"},{"Index": "10","key" : "1286_0","ProductId" : "1286","ProductName" : "Body_Aftershock","Color" : "0","Count" : "1"},{"Index": "11","key" : "12_0","ProductId" : "12","ProductName" : "Antenna_Saturn","Color" : "0","Count" : "1"},{"Index": "12","key" : "1304_0","ProductId" : "1304","ProductName" : "Flag_DyingLight","Color" : "0","Count" : "1"},{"Index": "13","key" : "1305_0","ProductId" : "1305","ProductName" : "Hat_BaseballCap01","Color" : "0","Count" : "1"},{"Index": "14","key" : "1315_0","ProductId" : "1315","ProductName" : "WHEEL_Aftershock","Color" : "0","Count" : "1"},{"Index": "15","key" : "1317_0","ProductId" : "1317","ProductName" : "Body_NeoBike","Color" : "0","Count" : "1"},{"Index": "16","key" : "1318_0","ProductId" : "1318","ProductName" : "Boost_Flamethrower_Yellow","Color" : "0","Count" : "1"},{"Index": "17","key" : "1319_0","ProductId" : "1319","ProductName" : "Boost_Standard_Green","Color" : "0","Count" : "1"},{"Index": "18","key" : "1328_0","ProductId" : "1328","ProductName" : "Hat_BaseballCap_Back","Color" : "0","Count" : "1"},{"Index": "19","key" : "1331_0","ProductId" : "1331","ProductName" : "Flag_ScrewAttack","Color" : "0","Count" : "1"},{"Index": "20","key" : "1339_7","ProductId" : "1339","ProductName" : "Hat_FlatHat","Color" : "7","Count" : "1"},{"Index": "21","key" : "1343_0","ProductId" : "1343","ProductName" : "Wheel_Marauder","Color" : "0","Count" : "1"},{"Index": "22","key" : "1344_0","ProductId" : "1344","ProductName" : "hat_dot","Color" : "0","Count" : "1"},{"Index": "23","key" : "1347_0","ProductId" : "1347","ProductName" : "Antenna_WakeupShip","Color" : "0","Count" : "1"},{"Index": "24","key" : "1351_0","ProductId" : "1351","ProductName" : "Antenna_DLZ","Color" : "0","Count" : "1"},{"Index": "25","key" : "13_0","ProductId" : "13","ProductName" : "Antenna_Skull","Color" : "0","Count" : "1"},{"Index": "26","key" : "1452_0","ProductId" : "1452","ProductName" : "boost_ink","Color" : "0","Count" : "1"},{"Index": "27","key" : "1454_0","ProductId" : "1454","ProductName" : "Flag_Discord","Color" : "0","Count" : "1"},{"Index": "28","key" : "1474_0","ProductId" : "1474","ProductName" : "wheel_number6","Color" : "0","Count" : "1"},{"Index": "29","key" : "1475_0","ProductId" : "1475","ProductName" : "Body_Number6","Color" : "0","Count" : "1"},{"Index": "30","key" : "1478_0","ProductId" : "1478","ProductName" : "body_cannonboy","Color" : "0","Count" : "1"},{"Index": "31","key" : "1480_0","ProductId" : "1480","ProductName" : "wheel_cannonboy","Color" : "0","Count" : "1"},{"Index": "32","key" : "14_0","ProductId" : "14","ProductName" : "Antenna_SmileyFace","Color" : "0","Count" : "1"},{"Index": "33","key" : "1533_0","ProductId" : "1533","ProductName" : "body_gilliam","Color" : "0","Count" : "1"},{"Index": "34","key" : "1547_0","ProductId" : "1547","ProductName" : "Flag_SDMN","Color" : "0","Count" : "1"},{"Index": "35","key" : "1548_0","ProductId" : "1548","ProductName" : "Flag_Vikkstar","Color" : "0","Count" : "1"},{"Index": "36","key" : "1566_0","ProductId" : "1566","ProductName" : "antenna_nutcracker","Color" : "0","Count" : "1"},{"Index": "37","key" : "1583_0","ProductId" : "1583","ProductName" : "WHEEL_Gilliam","Color" : "0","Count" : "1"},{"Index": "38","key" : "15_0","ProductId" : "15","ProductName" : "Antenna_Snowman","Color" : "0","Count" : "1"},{"Index": "39","key" : "1606_0","ProductId" : "1606","ProductName" : "flag_nzxt","Color" : "0","Count" : "1"},{"Index": "40","key" : "1632_0","ProductId" : "1632","ProductName" : "Crate_ImportSkins","Color" : "0","Count" : "2"},{"Index": "41","key" : "1639_0","ProductId" : "1639","ProductName" : "flag_redflame","Color" : "0","Count" : "1"},{"Index": "42","key" : "1640_0","ProductId" : "1640","ProductName" : "flag_whiteflame","Color" : "0","Count" : "1"},{"Index": "43","key" : "1641_0","ProductId" : "1641","ProductName" : "Hat_Chomper","Color" : "0","Count" : "1"},{"Index": "44","key" : "1665_0","ProductId" : "1665","ProductName" : "Hat_Looper_PA","Color" : "0","Count" : "1"},{"Index": "45","key" : "1688_0","ProductId" : "1688","ProductName" : "paintfinish_craters","Color" : "0","Count" : "1"},{"Index": "46","key" : "16_0","ProductId" : "16","ProductName" : "Antenna_SoccerBall","Color" : "0","Count" : "1"},{"Index": "47","key" : "1729_0","ProductId" : "1729","ProductName" : "wheel_seasonthree01","Color" : "0","Count" : "1"},{"Index": "48","key" : "17_0","ProductId" : "17","ProductName" : "Antenna_Star","Color" : "0","Count" : "1"},{"Index": "49","key" : "1846_0","ProductId" : "1846","ProductName" : "Antenna_jinx","Color" : "0","Count" : "1"},{"Index": "50","key" : "1847_0","ProductId" : "1847","ProductName" : "flag_lootcrate","Color" : "0","Count" : "1"},{"Index": "51","key" : "1872_0","ProductId" : "1872","ProductName" : "crate_number8","Color" : "0","Count" : "1"},{"Index": "52","key" : "1946_0","ProductId" : "1946","ProductName" : "wheel_rmp","Color" : "0","Count" : "1"},{"Index": "53","key" : "1957_0","ProductId" : "1957","ProductName" : "boost_rm","Color" : "0","Count" : "1"},{"Index": "54","key" : "1962_0","ProductId" : "1962","ProductName" : "skin_force_elephant","Color" : "0","Count" : "1"},{"Index": "55","key" : "1969_0","ProductId" : "1969","ProductName" : "Explosion_Basic_Green","Color" : "0","Count" : "1"},{"Index": "56","key" : "1970_0","ProductId" : "1970","ProductName" : "Explosion_Basic_Orange","Color" : "0","Count" : "1"},{"Index": "57","key" : "1971_0","ProductId" : "1971","ProductName" : "Explosion_Basic_Pink","Color" : "0","Count" : "1"},{"Index": "58","key" : "1972_0","ProductId" : "1972","ProductName" : "Explosion_Basic_Purple","Color" : "0","Count" : "1"},{"Index": "59","key" : "1973_0","ProductId" : "1973","ProductName" : "hat_MrMeeseeks","Color" : "0","Count" : "1"},{"Index": "60","key" : "1977_0","ProductId" : "1977","ProductName" : "hat_mrPBH","Color" : "0","Count" : "1"},{"Index": "61","key" : "1982_0","ProductId" : "1982","ProductName" : "antenna_rams_jb","Color" : "0","Count" : "1"},{"Index": "62","key" : "1983_0","ProductId" : "1983","ProductName" : "antenna_rsic","Color" : "0","Count" : "1"},{"Index": "63","key" : "1984_0","ProductId" : "1984","ProductName" : "hat_cromulon","Color" : "0","Count" : "1"},{"Index": "64","key" : "19_0","ProductId" : "19","ProductName" : "Antenna_TennisBall","Color" : "0","Count" : "1"},{"Index": "65","key" : "1_0","ProductId" : "1","ProductName" : "Antenna_8Ball","Color" : "0","Count" : "1"},{"Index": "66","key" : "2026_0","ProductId" : "2026","ProductName" : "flag_xgames","Color" : "0","Count" : "1"},{"Index": "67","key" : "2028_0","ProductId" : "2028","ProductName" : "hat_Latte","Color" : "0","Count" : "1"},{"Index": "68","key" : "2028_13","ProductId" : "2028","ProductName" : "hat_Latte","Color" : "13","Count" : "1"},{"Index": "69","key" : "2033_0","ProductId" : "2033","ProductName" : "hat_Succulents","Color" : "0","Count" : "1"},{"Index": "70","key" : "2037_0","ProductId" : "2037","ProductName" : "hat_sushi","Color" : "0","Count" : "1"},{"Index": "71","key" : "2042_0","ProductId" : "2042","ProductName" : "hat_rainbow","Color" : "0","Count" : "1"},{"Index": "72","key" : "2047_0","ProductId" : "2047","ProductName" : "ss_Toonrocks","Color" : "0","Count" : "1"},{"Index": "73","key" : "2048_0","ProductId" : "2048","ProductName" : "antenna_Pinwheel","Color" : "0","Count" : "1"},{"Index": "74","key" : "2050_13","ProductId" : "2050","ProductName" : "hat_Headphones","Color" : "13","Count" : "1"},{"Index": "75","key" : "2051_0","ProductId" : "2051","ProductName" : "hat_JitB","Color" : "0","Count" : "1"},{"Index": "76","key" : "2062_0","ProductId" : "2062","ProductName" : "flag_woofless","Color" : "0","Count" : "1"},{"Index": "77","key" : "20_0","ProductId" : "20","ProductName" : "Antenna_UFO","Color" : "0","Count" : "1"},{"Index": "78","key" : "211_0","ProductId" : "211","ProductName" : "Flag_BlacklightRetribution","Color" : "0","Count" : "1"},{"Index": "79","key" : "213_0","ProductId" : "213","ProductName" : "Flag_EdgeOfSpace","Color" : "0","Count" : "1"},{"Index": "80","key" : "216_0","ProductId" : "216","ProductName" : "Flag_FenixRage","Color" : "0","Count" : "1"},{"Index": "81","key" : "217_0","ProductId" : "217","ProductName" : "Flag_Pirate","Color" : "0","Count" : "1"},{"Index": "82","key" : "218_0","ProductId" : "218","ProductName" : "Flag_Shadowgate","Color" : "0","Count" : "1"},{"Index": "83","key" : "219_0","ProductId" : "219","ProductName" : "Flag_StrikeVectorEX","Color" : "0","Count" : "1"},{"Index": "84","key" : "21_0","ProductId" : "21","ProductName" : "Body_Backfire","Color" : "0","Count" : "1"},{"Index": "85","key" : "220_0","ProductId" : "220","ProductName" : "Flag_TeamFat","Color" : "0","Count" : "1"},{"Index": "86","key" : "221_0","ProductId" : "221","ProductName" : "Flag_Twitch","Color" : "0","Count" : "1"},{"Index": "87","key" : "222_0","ProductId" : "222","ProductName" : "Flag_Unreal","Color" : "0","Count" : "1"},{"Index": "88","key" : "223_0","ProductId" : "223","ProductName" : "Flag_Warframe","Color" : "0","Count" : "1"},{"Index": "89","key" : "225_0","ProductId" : "225","ProductName" : "Hat_Beanie","Color" : "0","Count" : "1"},{"Index": "90","key" : "2271_0","ProductId" : "2271","ProductName" : "hat_pancakestack","Color" : "0","Count" : "2"},{"Index": "91","key" : "227_0","ProductId" : "227","ProductName" : "Hat_BPH","Color" : "0","Count" : "1"},{"Index": "92","key" : "228_0","ProductId" : "228","ProductName" : "Hat_Crown","Color" : "0","Count" : "1"},{"Index": "93","key" : "229_0","ProductId" : "229","ProductName" : "Hat_DevilHorns","Color" : "0","Count" : "1"},{"Index": "94","key" : "230_0","ProductId" : "230","ProductName" : "Hat_Fez","Color" : "0","Count" : "1"},{"Index": "95","key" : "231_0","ProductId" : "231","ProductName" : "Hat_Fireman","Color" : "0","Count" : "1"},{"Index": "96","key" : "232_0","ProductId" : "232","ProductName" : "Hat_Halo","Color" : "0","Count" : "1"},{"Index": "97","key" : "233_0","ProductId" : "233","ProductName" : "Hat_Hardhat","Color" : "0","Count" : "1"},{"Index": "98","key" : "234_0","ProductId" : "234","ProductName" : "Hat_Mariachi","Color" : "0","Count" : "1"},{"Index": "99","key" : "235_0","ProductId" : "235","ProductName" : "Hat_PirateHat","Color" : "0","Count" : "1"},{"Index": "100","key" : "235_10","ProductId" : "235","ProductName" : "Hat_PirateHat","Color" : "10","Count" : "1"},{"Index": "101","key" : "236_0","ProductId" : "236","ProductName" : "Hat_PizzaLight","Color" : "0","Count" : "1"},{"Index": "102","key" : "237_0","ProductId" : "237","ProductName" : "Hat_PoliceSiren","Color" : "0","Count" : "1"},{"Index": "103","key" : "238_0","ProductId" : "238","ProductName" : "Hat_Sombrero","Color" : "0","Count" : "1"},{"Index": "104","key" : "2395_0","ProductId" : "2395","ProductName" : "hat_babyelephant","Color" : "0","Count" : "1"},{"Index": "105","key" : "239_0","ProductId" : "239","ProductName" : "Hat_Taxi","Color" : "0","Count" : "1"},{"Index": "106","key" : "240_0","ProductId" : "240","ProductName" : "Hat_TopHat","Color" : "0","Count" : "1"},{"Index": "107","key" : "2414_0","ProductId" : "2414","ProductName" : "playerBanner_CrissCross","Color" : "0","Count" : "1"},{"Index": "108","key" : "2415_0","ProductId" : "2415","ProductName" : "playerBanner_CryoFlames","Color" : "0","Count" : "1"},{"Index": "109","key" : "2417_0","ProductId" : "2417","ProductName" : "playerBanner_DistressedFlames","Color" : "0","Count" : "1"},{"Index": "110","key" : "241_0","ProductId" : "241","ProductName" : "Hat_Viking_Helmet","Color" : "0","Count" : "1"},{"Index": "111","key" : "2420_0","ProductId" : "2420","ProductName" : "playerBanner_GradientStreaks","Color" : "0","Count" : "1"},{"Index": "112","key" : "2425_0","ProductId" : "2425","ProductName" : "playerBanner_Leopard","Color" : "0","Count" : "1"},{"Index": "113","key" : "2427_0","ProductId" : "2427","ProductName" : "playerBanner_Mdga","Color" : "0","Count" : "1"},{"Index": "114","key" : "2429_0","ProductId" : "2429","ProductName" : "playerBanner_PinStripes","Color" : "0","Count" : "1"},{"Index": "115","key" : "242_0","ProductId" : "242","ProductName" : "Hat_Witch","Color" : "0","Count" : "1"},{"Index": "116","key" : "242_12","ProductId" : "242","ProductName" : "Hat_Witch","Color" : "12","Count" : "1"},{"Index": "117","key" : "2434_0","ProductId" : "2434","ProductName" : "playerBanner_StickerBomb","Color" : "0","Count" : "1"},{"Index": "118","key" : "2435_0","ProductId" : "2435","ProductName" : "playerBanner_Topography","Color" : "0","Count" : "1"},{"Index": "119","key" : "2437_0","ProductId" : "2437","ProductName" : "playerBanner_ZebraStripes","Color" : "0","Count" : "1"},{"Index": "120","key" : "243_0","ProductId" : "243","ProductName" : "Hat_WizardHat","Color" : "0","Count" : "1"},{"Index": "121","key" : "2449_0","ProductId" : "2449","ProductName" : "playerBanner_DiamondTile","Color" : "0","Count" : "1"},{"Index": "122","key" : "2450_0","ProductId" : "2450","ProductName" : "PlayerBanner_GamerPad","Color" : "0","Count" : "1"},{"Index": "123","key" : "2451_0","ProductId" : "2451","ProductName" : "playerBanner_HexStatic","Color" : "0","Count" : "1"},{"Index": "124","key" : "2455_0","ProductId" : "2455","ProductName" : "playerBanner_Taxi","Color" : "0","Count" : "1"},{"Index": "125","key" : "2468_0","ProductId" : "2468","ProductName" : "hat_babyrabbit","Color" : "0","Count" : "1"},{"Index": "126","key" : "2473_0","ProductId" : "2473","ProductName" : "hat_babydog","Color" : "0","Count" : "1"},{"Index": "127","key" : "24_0","ProductId" : "24","ProductName" : "Body_Orion","Color" : "0","Count" : "1"},{"Index": "128","key" : "2503_0","ProductId" : "2503","ProductName" : "playerBanner_Blocky","Color" : "0","Count" : "1"},{"Index": "129","key" : "2504_0","ProductId" : "2504","ProductName" : "playerBanner_Coral","Color" : "0","Count" : "1"},{"Index": "130","key" : "2507_0","ProductId" : "2507","ProductName" : "playerBanner_Feathers","Color" : "0","Count" : "1"},{"Index": "131","key" : "2510_0","ProductId" : "2510","ProductName" : "playerBanner_Ishihara","Color" : "0","Count" : "1"},{"Index": "132","key" : "2511_0","ProductId" : "2511","ProductName" : "playerBanner_Scales","Color" : "0","Count" : "1"},{"Index": "133","key" : "2526_0","ProductId" : "2526","ProductName" : "playerBanner_RLShield","Color" : "0","Count" : "1"},{"Index": "134","key" : "2580_0","ProductId" : "2580","ProductName" : "playerBanner_Salt","Color" : "0","Count" : "1"},{"Index": "135","key" : "2587_0","ProductId" : "2587","ProductName" : "hat_alarmclock","Color" : "0","Count" : "1"},{"Index": "136","key" : "25_0","ProductId" : "25","ProductName" : "Body_Rhino","Color" : "0","Count" : "1"},{"Index": "137","key" : "2625_0","ProductId" : "2625","ProductName" : "skin_aftershock_tigertiger","Color" : "0","Count" : "1"},{"Index": "138","key" : "266_0","ProductId" : "266","ProductName" : "PaintFinish_BrushedMetal","Color" : "0","Count" : "1"},{"Index": "139","key" : "2673_0","ProductId" : "2673","ProductName" : "flag_NvidiaShield","Color" : "0","Count" : "1"},{"Index": "140","key" : "2686_0","ProductId" : "2686","ProductName" : "skin_spark_Redo_bumble","Color" : "0","Count" : "1"},{"Index": "141","key" : "268_0","ProductId" : "268","ProductName" : "PaintFinish_Corroded","Color" : "0","Count" : "1"},{"Index": "142","key" : "26_0","ProductId" : "26","ProductName" : "Body_Spark","Color" : "0","Count" : "1"},{"Index": "143","key" : "272_0","ProductId" : "272","ProductName" : "PaintFinish_GlossyCarbonFiber","Color" : "0","Count" : "1"},{"Index": "144","key" : "273_0","ProductId" : "273","ProductName" : "PaintFinish_Matte","Color" : "0","Count" : "1"},{"Index": "145","key" : "274_0","ProductId" : "274","ProductName" : "PaintFinish_Metallic","Color" : "0","Count" : "1"},{"Index": "146","key" : "275_0","ProductId" : "275","ProductName" : "PaintFinish_MetallicPearl","Color" : "0","Count" : "1"},{"Index": "147","key" : "276_0","ProductId" : "276","ProductName" : "PaintFinish_Pearlescent","Color" : "0","Count" : "1"},{"Index": "148","key" : "277_0","ProductId" : "277","ProductName" : "PaintFinish_Plastic","Color" : "0","Count" : "1"},{"Index": "149","key" : "2787_0","ProductId" : "2787","ProductName" : "hat_coconuttree","Color" : "0","Count" : "1"},{"Index": "150","key" : "279_0","ProductId" : "279","ProductName" : "PaintFinish_ToonGlossy","Color" : "0","Count" : "1"},{"Index": "151","key" : "280_0","ProductId" : "280","ProductName" : "PaintFinish_ToonGlossyWood","Color" : "0","Count" : "1"},{"Index": "152","key" : "281_0","ProductId" : "281","ProductName" : "PaintFinish_ToonMatte","Color" : "0","Count" : "1"},{"Index": "153","key" : "283_0","ProductId" : "283","ProductName" : "PaintFinish_Wood","Color" : "0","Count" : "1"},{"Index": "154","key" : "284_0","ProductId" : "284","ProductName" : "Pennant_BlueChecker","Color" : "0","Count" : "1"},{"Index": "155","key" : "285_0","ProductId" : "285","ProductName" : "Pennant_Camo","Color" : "0","Count" : "1"},{"Index": "156","key" : "286_0","ProductId" : "286","ProductName" : "Pennant_OrangeNylon","Color" : "0","Count" : "1"},{"Index": "157","key" : "28_0","ProductId" : "28","ProductName" : "Body_Torch","Color" : "0","Count" : "1"},{"Index": "158","key" : "2904_0","ProductId" : "2904","ProductName" : "boost_sunrays","Color" : "0","Count" : "1"},{"Index": "159","key" : "2930_0","ProductId" : "2930","ProductName" : "flag_s_watercolor","Color" : "0","Count" : "1"},{"Index": "160","key" : "2969_0","ProductId" : "2969","ProductName" : "skin_vanquish_watermelon","Color" : "0","Count" : "1"},{"Index": "161","key" : "2977_0","ProductId" : "2977","ProductName" : "PlayerBanner_SWater","Color" : "0","Count" : "1"},{"Index": "162","key" : "29_0","ProductId" : "29","ProductName" : "Body_Torment","Color" : "0","Count" : "1"},{"Index": "163","key" : "3036_0","ProductId" : "3036","ProductName" : "title_generic","Color" : "0","Count" : "1"},{"Index": "164","key" : "31_0","ProductId" : "31","ProductName" : "Body_Venom","Color" : "0","Count" : "1"},{"Index": "165","key" : "3240_0","ProductId" : "3240","ProductName" : "AvatarBorder_XPTier1","Color" : "0","Count" : "1"},{"Index": "166","key" : "3243_0","ProductId" : "3243","ProductName" : "AvatarBorder_XPTier2","Color" : "0","Count" : "1"},{"Index": "167","key" : "3244_0","ProductId" : "3244","ProductName" : "AvatarBorder_XPTier3","Color" : "0","Count" : "1"},{"Index": "168","key" : "3251_0","ProductId" : "3251","ProductName" : "flag_fiddy","Color" : "0","Count" : "1"},{"Index": "169","key" : "3262_0","ProductId" : "3262","ProductName" : "Crate_Number14","Color" : "0","Count" : "2"},{"Index": "170","key" : "3325_0","ProductId" : "3325","ProductName" : "PlayerBanner_fiddy","Color" : "0","Count" : "1"},{"Index": "171","key" : "3349_0","ProductId" : "3349","ProductName" : "avatarborder_lightning","Color" : "0","Count" : "1"},{"Index": "172","key" : "3382_0","ProductId" : "3382","ProductName" : "wheel_50th","Color" : "0","Count" : "1"},{"Index": "173","key" : "3396_0","ProductId" : "3396","ProductName" : "hat_mc","Color" : "0","Count" : "1"},{"Index": "174","key" : "33_0","ProductId" : "33","ProductName" : "Boost_Bubble","Color" : "0","Count" : "1"},{"Index": "175","key" : "3427_0","ProductId" : "3427","ProductName" : "flag_extralife","Color" : "0","Count" : "1"},{"Index": "176","key" : "3457_0","ProductId" : "3457","ProductName" : "Crate_Number15","Color" : "0","Count" : "1"},{"Index": "177","key" : "3462_0","ProductId" : "3462","ProductName" : "flag_kindafunny","Color" : "0","Count" : "1"},{"Index": "178","key" : "3494_0","ProductId" : "3494","ProductName" : "hat_arrows","Color" : "0","Count" : "1"},{"Index": "179","key" : "34_0","ProductId" : "34","ProductName" : "Boost_Confetti","Color" : "0","Count" : "1"},{"Index": "180","key" : "3501_0","ProductId" : "3501","ProductName" : "wheel_pill_free","Color" : "0","Count" : "1"},{"Index": "181","key" : "359_0","ProductId" : "359","ProductName" : "WHEEL_Atlantis","Color" : "0","Count" : "1"},{"Index": "182","key" : "35_0","ProductId" : "35","ProductName" : "Boost_Digital","Color" : "0","Count" : "1"},{"Index": "183","key" : "360_0","ProductId" : "360","ProductName" : "WHEEL_Ballistic","Color" : "0","Count" : "1"},{"Index": "184","key" : "361_0","ProductId" : "361","ProductName" : "WHEEL_Bling","Color" : "0","Count" : "1"},{"Index": "185","key" : "362_0","ProductId" : "362","ProductName" : "WHEEL_Brink","Color" : "0","Count" : "1"},{"Index": "186","key" : "363_0","ProductId" : "363","ProductName" : "WHEEL_Caliber","Color" : "0","Count" : "1"},{"Index": "187","key" : "364_0","ProductId" : "364","ProductName" : "WHEEL_Crypt","Color" : "0","Count" : "1"},{"Index": "188","key" : "365_0","ProductId" : "365","ProductName" : "WHEEL_DeepDish","Color" : "0","Count" : "1"},{"Index": "189","key" : "366_0","ProductId" : "366","ProductName" : "WHEEL_Dynamo","Color" : "0","Count" : "1"},{"Index": "190","key" : "367_0","ProductId" : "367","ProductName" : "WHEEL_Forge","Color" : "0","Count" : "1"},{"Index": "191","key" : "368_0","ProductId" : "368","ProductName" : "WHEEL_Hydra","Color" : "0","Count" : "1"},{"Index": "192","key" : "369_0","ProductId" : "369","ProductName" : "WHEEL_LowRider","Color" : "0","Count" : "1"},{"Index": "193","key" : "36_0","ProductId" : "36","ProductName" : "Boost_Flamethrower","Color" : "0","Count" : "1"},{"Index": "194","key" : "3705_0","ProductId" : "3705","ProductName" : "hat_tangerine","Color" : "0","Count" : "1"},{"Index": "195","key" : "370_0","ProductId" : "370","ProductName" : "WHEEL_Mob","Color" : "0","Count" : "1"},{"Index": "196","key" : "371_0","ProductId" : "371","ProductName" : "Wheel_Ninja","Color" : "0","Count" : "1"},{"Index": "197","key" : "372_0","ProductId" : "372","ProductName" : "WHEEL_OffRoad","Color" : "0","Count" : "1"},{"Index": "198","key" : "373_0","ProductId" : "373","ProductName" : "Wheel_Pedigree","Color" : "0","Count" : "1"},{"Index": "199","key" : "374_0","ProductId" : "374","ProductName" : "WHEEL_Revolution","Color" : "0","Count" : "1"},{"Index": "200","key" : "3750_0","ProductId" : "3750","ProductName" : "hat_golfbag","Color" : "0","Count" : "1"},{"Index": "201","key" : "3755_0","ProductId" : "3755","ProductName" : "hat_chess","Color" : "0","Count" : "1"},{"Index": "202","key" : "375_0","ProductId" : "375","ProductName" : "WHEEL_SnowTire","Color" : "0","Count" : "1"},{"Index": "203","key" : "377_0","ProductId" : "377","ProductName" : "WHEEL_Storm","Color" : "0","Count" : "1"},{"Index": "204","key" : "379_0","ProductId" : "379","ProductName" : "WHEEL_Tarantula","Color" : "0","Count" : "1"},{"Index": "205","key" : "37_0","ProductId" : "37","ProductName" : "Boost_Flamethrower_Blue","Color" : "0","Count" : "1"},{"Index": "206","key" : "380_0","ProductId" : "380","ProductName" : "WHEEL_Triad","Color" : "0","Count" : "1"},{"Index": "207","key" : "381_0","ProductId" : "381","ProductName" : "WHEEL_Vortex","Color" : "0","Count" : "1"},{"Index": "208","key" : "382_0","ProductId" : "382","ProductName" : "Wheel_Vulcan","Color" : "0","Count" : "1"},{"Index": "209","key" : "383_0","ProductId" : "383","ProductName" : "WHEEL_Wynd","Color" : "0","Count" : "1"},{"Index": "210","key" : "384_0","ProductId" : "384","ProductName" : "Boost_Nitrous","Color" : "0","Count" : "1"},{"Index": "211","key" : "385_0","ProductId" : "385","ProductName" : "Antenna_Blacklight","Color" : "0","Count" : "1"},{"Index": "212","key" : "386_0","ProductId" : "386","ProductName" : "Wheel_SoccerBall","Color" : "0","Count" : "1"},{"Index": "213","key" : "387_0","ProductId" : "387","ProductName" : "Boost_Burnout","Color" : "0","Count" : "1"},{"Index": "214","key" : "388_0","ProductId" : "388","ProductName" : "Wheel_Spinner","Color" : "0","Count" : "1"},{"Index": "215","key" : "38_0","ProductId" : "38","ProductName" : "Boost_Flamethrower_Green","Color" : "0","Count" : "1"},{"Index": "216","key" : "3904_0","ProductId" : "3904","ProductName" : "hat_mountainhat","Color" : "0","Count" : "1"},{"Index": "217","key" : "390_0","ProductId" : "390","ProductName" : "Hat_TourneyWinner","Color" : "0","Count" : "1"},{"Index": "218","key" : "3910_0","ProductId" : "3910","ProductName" : "antenna_floppy","Color" : "0","Count" : "1"},{"Index": "219","key" : "391_0","ProductId" : "391","ProductName" : "Antenna_Bread","Color" : "0","Count" : "1"},{"Index": "220","key" : "392_0","ProductId" : "392","ProductName" : "Antenna_ChickMagnet","Color" : "0","Count" : "2"},{"Index": "221","key" : "394_0","ProductId" : "394","ProductName" : "Antenna_Disconnected","Color" : "0","Count" : "1"},{"Index": "222","key" : "395_0","ProductId" : "395","ProductName" : "Antenna_Donut","Color" : "0","Count" : "3"},{"Index": "223","key" : "397_0","ProductId" : "397","ProductName" : "Antenna_FlakShell","Color" : "0","Count" : "1"},{"Index": "224","key" : "399_0","ProductId" : "399","ProductName" : "antenna_Panda","Color" : "0","Count" : "1"},{"Index": "225","key" : "39_0","ProductId" : "39","ProductName" : "Boost_Flamethrower_Pink","Color" : "0","Count" : "1"},{"Index": "226","key" : "3_0","ProductId" : "3","ProductName" : "Antenna_DollarSign","Color" : "0","Count" : "1"},{"Index": "227","key" : "401_0","ProductId" : "401","ProductName" : "Antenna_Waffle","Color" : "0","Count" : "1"},{"Index": "228","key" : "402_0","ProductId" : "402","ProductName" : "Body_Import","Color" : "0","Count" : "1"},{"Index": "229","key" : "403_0","ProductId" : "403","ProductName" : "Body_MuscleCar","Color" : "0","Count" : "1"},{"Index": "230","key" : "404_0","ProductId" : "404","ProductName" : "Body_Scarab","Color" : "0","Count" : "1"},{"Index": "231","key" : "4059_0","ProductId" : "4059","ProductName" : "Hat_Daynecake","Color" : "0","Count" : "1"},{"Index": "232","key" : "40_0","ProductId" : "40","ProductName" : "Boost_Flamethrower_Purple","Color" : "0","Count" : "1"},{"Index": "233","key" : "4127_0","ProductId" : "4127","ProductName" : "paintfinish_anodized_pearl","Color" : "0","Count" : "1"},{"Index": "234","key" : "41_0","ProductId" : "41","ProductName" : "Boost_Flamethrower_Red","Color" : "0","Count" : "1"},{"Index": "235","key" : "4239_0","ProductId" : "4239","ProductName" : "playerbanner_westcoastsunset","Color" : "0","Count" : "1"},{"Index": "236","key" : "42_0","ProductId" : "42","ProductName" : "Boost_Flowers","Color" : "0","Count" : "1"},{"Index": "237","key" : "43_0","ProductId" : "43","ProductName" : "Boost_Grass","Color" : "0","Count" : "1"},{"Index": "238","key" : "4460_0","ProductId" : "4460","ProductName" : "crate_number18","Color" : "0","Count" : "1"},{"Index": "239","key" : "4460_11","ProductId" : "4460","ProductName" : "crate_number18","Color" : "11","Count" : "1"},{"Index": "240","key" : "4480_0","ProductId" : "4480","ProductName" : "ss_holidaylights","Color" : "0","Count" : "1"},{"Index": "241","key" : "4486_0","ProductId" : "4486","ProductName" : "playerbanner_glowyeagle","Color" : "0","Count" : "1"},{"Index": "242","key" : "44_0","ProductId" : "44","ProductName" : "Boost_HolyLight","Color" : "0","Count" : "1"},{"Index": "243","key" : "4557_0","ProductId" : "4557","ProductName" : "hat_beat","Color" : "0","Count" : "1"},{"Index": "244","key" : "4570_0","ProductId" : "4570","ProductName" : "boost_beat","Color" : "0","Count" : "1"},{"Index": "245","key" : "45_0","ProductId" : "45","ProductName" : "Boost_LightTrail","Color" : "0","Count" : "1"},{"Index": "246","key" : "46_0","ProductId" : "46","ProductName" : "Boost_LightTrail_Green","Color" : "0","Count" : "1"},{"Index": "247","key" : "4707_0","ProductId" : "4707","ProductName" : "PlayerBanner_ChineseNewYear","Color" : "0","Count" : "1"},{"Index": "248","key" : "4722_0","ProductId" : "4722","ProductName" : "CrateUnlocked_DecryptorGift","Color" : "0","Count" : "3"},{"Index": "249","key" : "4735_0","ProductId" : "4735","ProductName" : "BP_Series1","Color" : "0","Count" : "1"},{"Index": "250","key" : "4735_11","ProductId" : "4735","ProductName" : "BP_Series1","Color" : "11","Count" : "1"},{"Index": "251","key" : "4735_8","ProductId" : "4735","ProductName" : "BP_Series1","Color" : "8","Count" : "1"},{"Index": "252","key" : "4793_0","ProductId" : "4793","ProductName" : "wheel_dartboard","Color" : "0","Count" : "1"},{"Index": "253","key" : "47_0","ProductId" : "47","ProductName" : "Boost_LightTrail_Pink","Color" : "0","Count" : "1"},{"Index": "254","key" : "4805_5","ProductId" : "4805","ProductName" : "Explosion_Leaves","Color" : "5","Count" : "1"},{"Index": "255","key" : "4812_6","ProductId" : "4812","ProductName" : "Skin_LeTigre","Color" : "6","Count" : "1"},{"Index": "256","key" : "484_0","ProductId" : "484","ProductName" : "Flag_Epic_BlueFlag","Color" : "0","Count" : "1"},{"Index": "257","key" : "485_0","ProductId" : "485","ProductName" : "Flag_Epic_FragCenter","Color" : "0","Count" : "1"},{"Index": "258","key" : "4865_0","ProductId" : "4865","ProductName" : "engineaudio_ElectroMagnetic","Color" : "0","Count" : "1"},{"Index": "259","key" : "486_0","ProductId" : "486","ProductName" : "Flag_Epic_RedFlag","Color" : "0","Count" : "1"},{"Index": "260","key" : "4873_13","ProductId" : "4873","ProductName" : "Explosion_Quartz","Color" : "13","Count" : "1"},{"Index": "261","key" : "487_0","ProductId" : "487","ProductName" : "Flag_Epic_UT","Color" : "0","Count" : "1"},{"Index": "262","key" : "488_0","ProductId" : "488","ProductName" : "Flag_Epic_UT2004","Color" : "0","Count" : "1"},{"Index": "263","key" : "4897_0","ProductId" : "4897","ProductName" : "playerbanner_Metropolis","Color" : "0","Count" : "1"},{"Index": "264","key" : "489_0","ProductId" : "489","ProductName" : "Flag_Epic_UTBlue","Color" : "0","Count" : "1"},{"Index": "265","key" : "48_0","ProductId" : "48","ProductName" : "Boost_LightTrail_Purple","Color" : "0","Count" : "1"},{"Index": "266","key" : "491_0","ProductId" : "491","ProductName" : "Flag_WhiteFlag","Color" : "0","Count" : "1"},{"Index": "267","key" : "4930_0","ProductId" : "4930","ProductName" : "engineaudio_RP6_03","Color" : "0","Count" : "1"},{"Index": "268","key" : "4938_0","ProductId" : "4938","ProductName" : "playerbanner_Hornet","Color" : "0","Count" : "1"},{"Index": "269","key" : "4940_0","ProductId" : "4940","ProductName" : "playerbanner_SpaceCircus","Color" : "0","Count" : "1"},{"Index": "270","key" : "494_0","ProductId" : "494","ProductName" : "Hat_DWI","Color" : "0","Count" : "1"},{"Index": "271","key" : "4953_0","ProductId" : "4953","ProductName" : "BP_Series2","Color" : "0","Count" : "1"},{"Index": "272","key" : "4978_0","ProductId" : "4978","ProductName" : "playerbanner_celebration","Color" : "0","Count" : "1"},{"Index": "273","key" : "4995_0","ProductId" : "4995","ProductName" : "skin_octane_sarpstripe","Color" : "0","Count" : "1"},{"Index": "274","key" : "49_0","ProductId" : "49","ProductName" : "Boost_LightTrail_Red","Color" : "0","Count" : "1"},{"Index": "275","key" : "5059_0","ProductId" : "5059","ProductName" : "wheel_dieci_wg","Color" : "0","Count" : "1"},{"Index": "276","key" : "5060_0","ProductId" : "5060","ProductName" : "hat_buoy","Color" : "0","Count" : "1"},{"Index": "277","key" : "5075_0","ProductId" : "5075","ProductName" : "wheel_sole","Color" : "0","Count" : "3"},{"Index": "278","key" : "5089_0","ProductId" : "5089","ProductName" : "boost_plum_gold","Color" : "0","Count" : "1"},{"Index": "279","key" : "5090_0","ProductId" : "5090","ProductName" : "boost_plum_white","Color" : "0","Count" : "1"},{"Index": "280","key" : "50_0","ProductId" : "50","ProductName" : "Boost_LightTrail_Yellow","Color" : "0","Count" : "1"},{"Index": "281","key" : "511_0","ProductId" : "511","ProductName" : "StreamerFlag_GassyMexican","Color" : "0","Count" : "1"},{"Index": "282","key" : "513_0","ProductId" : "513","ProductName" : "StreamerFlag_Lirik","Color" : "0","Count" : "1"},{"Index": "283","key" : "5144_0","ProductId" : "5144","ProductName" : "BP_Series3","Color" : "0","Count" : "1"},{"Index": "284","key" : "5144_10","ProductId" : "5144","ProductName" : "BP_Series3","Color" : "10","Count" : "1"},{"Index": "285","key" : "5144_12","ProductId" : "5144","ProductName" : "BP_Series3","Color" : "12","Count" : "1"},{"Index": "286","key" : "5144_2","ProductId" : "5144","ProductName" : "BP_Series3","Color" : "2","Count" : "1"},{"Index": "287","key" : "5144_9","ProductId" : "5144","ProductName" : "BP_Series3","Color" : "9","Count" : "1"},{"Index": "288","key" : "514_0","ProductId" : "514","ProductName" : "StreamerFlag_Spooky1611","Color" : "0","Count" : "1"},{"Index": "289","key" : "515_0","ProductId" : "515","ProductName" : "StreamerFlag_Team_PowA","Color" : "0","Count" : "1"},{"Index": "290","key" : "516_0","ProductId" : "516","ProductName" : "StreamerFlag_Youtube","Color" : "0","Count" : "1"},{"Index": "291","key" : "518_0","ProductId" : "518","ProductName" : "WHEEL_SingleSpoke","Color" : "0","Count" : "1"},{"Index": "292","key" : "519_0","ProductId" : "519","ProductName" : "WHEEL_SkullxBones","Color" : "0","Count" : "1"},{"Index": "293","key" : "51_0","ProductId" : "51","ProductName" : "Boost_Money","Color" : "0","Count" : "1"},{"Index": "294","key" : "521_0","ProductId" : "521","ProductName" : "Hat_BoomBox","Color" : "0","Count" : "1"},{"Index": "295","key" : "522_0","ProductId" : "522","ProductName" : "Antenna_Moai","Color" : "0","Count" : "1"},{"Index": "296","key" : "523_0","ProductId" : "523","ProductName" : "Body_Zippy","Color" : "0","Count" : "1"},{"Index": "297","key" : "524_0","ProductId" : "524","ProductName" : "Boost_MusicalNotes","Color" : "0","Count" : "1"},{"Index": "298","key" : "525_0","ProductId" : "525","ProductName" : "Flag_Chivalry_Agatha","Color" : "0","Count" : "1"},{"Index": "299","key" : "526_0","ProductId" : "526","ProductName" : "Flag_Chivalry_Mason","Color" : "0","Count" : "1"},{"Index": "300","key" : "5270_0","ProductId" : "5270","ProductName" : "avatarborder_s14rewardbronze","Color" : "0","Count" : "1"},{"Index": "301","key" : "5277_0","ProductId" : "5277","ProductName" : "playerbanner_s14rewardbronze","Color" : "0","Count" : "1"},{"Index": "302","key" : "52_0","ProductId" : "52","ProductName" : "Boost_Plasma","Color" : "0","Count" : "1"},{"Index": "303","key" : "5302_0","ProductId" : "5302","ProductName" : "Giftbox_Uncommon","Color" : "0","Count" : "2"},{"Index": "304","key" : "531_0","ProductId" : "531","ProductName" : "StreamerFlag_Annemunition","Color" : "0","Count" : "1"},{"Index": "305","key" : "5327_0","ProductId" : "5327","ProductName" : "playerbanner_huntress","Color" : "0","Count" : "1"},{"Index": "306","key" : "532_0","ProductId" : "532","ProductName" : "StreamerFlag_EatMyDiction","Color" : "0","Count" : "1"},{"Index": "307","key" : "533_0","ProductId" : "533","ProductName" : "StreamerFlag_ITMEJP","Color" : "0","Count" : "1"},{"Index": "308","key" : "534_0","ProductId" : "534","ProductName" : "StreamerFlag_SaudiGamer","Color" : "0","Count" : "1"},{"Index": "309","key" : "535_0","ProductId" : "535","ProductName" : "StreamerFlag_TheAttack","Color" : "0","Count" : "1"},{"Index": "310","key" : "536_0","ProductId" : "536","ProductName" : "TourneyFlag_ESL","Color" : "0","Count" : "1"},{"Index": "311","key" : "538_0","ProductId" : "538","ProductName" : "TourneyFlag_MLG","Color" : "0","Count" : "1"},{"Index": "312","key" : "53_0","ProductId" : "53","ProductName" : "Boost_Propulsion","Color" : "0","Count" : "1"},{"Index": "313","key" : "540_0","ProductId" : "540","ProductName" : "WHEEL_Scarab","Color" : "0","Count" : "1"},{"Index": "314","key" : "541_0","ProductId" : "541","ProductName" : "PaintFinish_Camo","Color" : "0","Count" : "1"},{"Index": "315","key" : "542_0","ProductId" : "542","ProductName" : "PaintFinish_Cracked","Color" : "0","Count" : "1"},{"Index": "316","key" : "544_0","ProductId" : "544","ProductName" : "Boost_NutsBolts","Color" : "0","Count" : "1"},{"Index": "317","key" : "545_0","ProductId" : "545","ProductName" : "Boost_Stars","Color" : "0","Count" : "1"},{"Index": "318","key" : "546_0","ProductId" : "546","ProductName" : "Hat_CatOLantern","Color" : "0","Count" : "1"},{"Index": "319","key" : "547_0","ProductId" : "547","ProductName" : "Hat_TrainConductor","Color" : "0","Count" : "1"},{"Index": "320","key" : "548_0","ProductId" : "548","ProductName" : "StreamerFlag_AgryJoe","Color" : "0","Count" : "1"},{"Index": "321","key" : "549_0","ProductId" : "549","ProductName" : "WHEEL_Carriage","Color" : "0","Count" : "1"},{"Index": "322","key" : "54_0","ProductId" : "54","ProductName" : "Boost_Propulsion_Blue","Color" : "0","Count" : "1"},{"Index": "323","key" : "55_0","ProductId" : "55","ProductName" : "Boost_Propulsion_Green","Color" : "0","Count" : "1"},{"Index": "324","key" : "5610_6","ProductId" : "5610","ProductName" : "BP_Series4","Color" : "6","Count" : "1"},{"Index": "325","key" : "5610_7","ProductId" : "5610","ProductName" : "BP_Series4","Color" : "7","Count" : "1"},{"Index": "326","key" : "56_0","ProductId" : "56","ProductName" : "Boost_Propulsion_Pink","Color" : "0","Count" : "1"},{"Index": "327","key" : "572_0","ProductId" : "572","ProductName" : "StreamerFlag_SeriousGaming","Color" : "0","Count" : "1"},{"Index": "328","key" : "573_0","ProductId" : "573","ProductName" : "Flag_Razer","Color" : "0","Count" : "1"},{"Index": "329","key" : "574_0","ProductId" : "574","ProductName" : "Antenna_DOTDSkull","Color" : "0","Count" : "1"},{"Index": "330","key" : "575_0","ProductId" : "575","ProductName" : "Antenna_UrbanBall","Color" : "0","Count" : "1"},{"Index": "331","key" : "576_0","ProductId" : "576","ProductName" : "Antenna_UtopiaBall","Color" : "0","Count" : "1"},{"Index": "332","key" : "577_0","ProductId" : "577","ProductName" : "Antenna_WastelandBall","Color" : "0","Count" : "1"},{"Index": "333","key" : "578_0","ProductId" : "578","ProductName" : "Boost_CandyCorn","Color" : "0","Count" : "1"},{"Index": "334","key" : "579_0","ProductId" : "579","ProductName" : "Hat_SharkFin","Color" : "0","Count" : "1"},{"Index": "335","key" : "57_0","ProductId" : "57","ProductName" : "Boost_Propulsion_Purple","Color" : "0","Count" : "1"},{"Index": "336","key" : "580_0","ProductId" : "580","ProductName" : "Hat_Tricorn","Color" : "0","Count" : "1"},{"Index": "337","key" : "58_0","ProductId" : "58","ProductName" : "Boost_Propulsion_Yellow","Color" : "0","Count" : "1"},{"Index": "338","key" : "5905_0","ProductId" : "5905","ProductName" : "BP_Series6","Color" : "0","Count" : "1"},{"Index": "339","key" : "593_0","ProductId" : "593","ProductName" : "Antenna_FurballFrakenstein","Color" : "0","Count" : "1"},{"Index": "340","key" : "595_0","ProductId" : "595","ProductName" : "Antenna_FurballVampire","Color" : "0","Count" : "1"},{"Index": "341","key" : "597_0","ProductId" : "597","ProductName" : "Body_GreyCar","Color" : "0","Count" : "1"},{"Index": "342","key" : "59_0","ProductId" : "59","ProductName" : "Boost_Rainbow","Color" : "0","Count" : "1"},{"Index": "343","key" : "5_0","ProductId" : "5","ProductName" : "Antenna_Gingerbread_Man","Color" : "0","Count" : "1"},{"Index": "344","key" : "600_0","ProductId" : "600","ProductName" : "Body_Interceptor","Color" : "0","Count" : "1"},{"Index": "345","key" : "607_0","ProductId" : "607","ProductName" : "Body_WastelandTruck","Color" : "0","Count" : "1"},{"Index": "346","key" : "60_0","ProductId" : "60","ProductName" : "Boost_Slime","Color" : "0","Count" : "1"},{"Index": "347","key" : "610_0","ProductId" : "610","ProductName" : "StreamerFlag_Ach_Hunter","Color" : "0","Count" : "1"},{"Index": "348","key" : "611_0","ProductId" : "611","ProductName" : "StreamerFlag_Funhaus","Color" : "0","Count" : "1"},{"Index": "349","key" : "612_0","ProductId" : "612","ProductName" : "StreamerFlag_Rooster_Teeth","Color" : "0","Count" : "1"},{"Index": "350","key" : "613_0","ProductId" : "613","ProductName" : "Wheel_WastelandTruck","Color" : "0","Count" : "1"},{"Index": "351","key" : "614_0","ProductId" : "614","ProductName" : "Antenna_Bomb","Color" : "0","Count" : "1"},{"Index": "352","key" : "615_0","ProductId" : "615","ProductName" : "Antenna_RadiationSymbol","Color" : "0","Count" : "1"},{"Index": "353","key" : "61_0","ProductId" : "61","ProductName" : "Boost_Snow","Color" : "0","Count" : "1"},{"Index": "354","key" : "628_0","ProductId" : "628","ProductName" : "StreamerFlag_Lol_Renaynay","Color" : "0","Count" : "1"},{"Index": "355","key" : "629_0","ProductId" : "629","ProductName" : "Antenna_RedditSnoo","Color" : "0","Count" : "1"},{"Index": "356","key" : "62_0","ProductId" : "62","ProductName" : "Boost_Sparkles","Color" : "0","Count" : "1"},{"Index": "357","key" : "630_0","ProductId" : "630","ProductName" : "Flag_Reddit","Color" : "0","Count" : "1"},{"Index": "358","key" : "632_0","ProductId" : "632","ProductName" : "Flag_Oddworld_Necrum","Color" : "0","Count" : "1"},{"Index": "359","key" : "633_0","ProductId" : "633","ProductName" : "Flag_Oddworld_RF","Color" : "0","Count" : "1"},{"Index": "360","key" : "635_0","ProductId" : "635","ProductName" : "Boost_Presents","Color" : "0","Count" : "1"},{"Index": "361","key" : "638_0","ProductId" : "638","ProductName" : "Hat_Mohawk","Color" : "0","Count" : "1"},{"Index": "362","key" : "639_0","ProductId" : "639","ProductName" : "Hat_RegularChristmasTree","Color" : "0","Count" : "1"},{"Index": "363","key" : "640_0","ProductId" : "640","ProductName" : "Hat_ReindeerAntlers","Color" : "0","Count" : "1"},{"Index": "364","key" : "641_0","ProductId" : "641","ProductName" : "Hat_SadChristmasTree","Color" : "0","Count" : "1"},{"Index": "365","key" : "642_0","ProductId" : "642","ProductName" : "Hat_SantaHat","Color" : "0","Count" : "1"},{"Index": "366","key" : "645_0","ProductId" : "645","ProductName" : "flag_rl_garage","Color" : "0","Count" : "1"},{"Index": "367","key" : "649_0","ProductId" : "649","ProductName" : "Antenna_CandyCane","Color" : "0","Count" : "1"},{"Index": "368","key" : "64_0","ProductId" : "64","ProductName" : "Boost_Standard_Blue","Color" : "0","Count" : "1"},{"Index": "369","key" : "650_0","ProductId" : "650","ProductName" : "Antenna_ChristmasGift","Color" : "0","Count" : "1"},{"Index": "370","key" : "651_0","ProductId" : "651","ProductName" : "Boost_ConversionGel","Color" : "0","Count" : "1"},{"Index": "371","key" : "652_0","ProductId" : "652","ProductName" : "Boost_PropulsionGel","Color" : "0","Count" : "1"},{"Index": "372","key" : "653_0","ProductId" : "653","ProductName" : "Boost_RepulsionGel","Color" : "0","Count" : "1"},{"Index": "373","key" : "654_0","ProductId" : "654","ProductName" : "Flag_Day9TV","Color" : "0","Count" : "1"},{"Index": "374","key" : "655_0","ProductId" : "655","ProductName" : "Antenna_VGA_Statue","Color" : "0","Count" : "1"},{"Index": "375","key" : "656_0","ProductId" : "656","ProductName" : "flag_valve_ApLabs","Color" : "0","Count" : "1"},{"Index": "376","key" : "657_0","ProductId" : "657","ProductName" : "Flag_Valve_Cake","Color" : "0","Count" : "1"},{"Index": "377","key" : "65_0","ProductId" : "65","ProductName" : "Boost_Standard_Pink","Color" : "0","Count" : "1"},{"Index": "378","key" : "661_0","ProductId" : "661","ProductName" : "Hat_PortalCake","Color" : "0","Count" : "1"},{"Index": "379","key" : "664_0","ProductId" : "664","ProductName" : "Boost_SandStorm","Color" : "0","Count" : "1"},{"Index": "380","key" : "667_0","ProductId" : "667","ProductName" : "Flag_PCGamer","Color" : "0","Count" : "1"},{"Index": "381","key" : "66_0","ProductId" : "66","ProductName" : "Boost_Standard_Purple","Color" : "0","Count" : "1"},{"Index": "382","key" : "673_0","ProductId" : "673","ProductName" : "Antenna_Fallout_VaultBoy","Color" : "0","Count" : "1"},{"Index": "383","key" : "678_0","ProductId" : "678","ProductName" : "AT_Oddworld_Abe","Color" : "0","Count" : "1"},{"Index": "384","key" : "679_0","ProductId" : "679","ProductName" : "AT_Oddworld_Glukkon","Color" : "0","Count" : "1"},{"Index": "385","key" : "67_0","ProductId" : "67","ProductName" : "Boost_Standard_Yellow","Color" : "0","Count" : "1"},{"Index": "386","key" : "6801_0","ProductId" : "6801","ProductName" : "boost_B2000","Color" : "0","Count" : "1"},{"Index": "387","key" : "681_0","ProductId" : "681","ProductName" : "AT_PortalCube","Color" : "0","Count" : "1"},{"Index": "388","key" : "682_0","ProductId" : "682","ProductName" : "AT_Warframe_Chroma","Color" : "0","Count" : "1"},{"Index": "389","key" : "6833_0","ProductId" : "6833","ProductName" : "skin_musclecar_panya","Color" : "0","Count" : "1"},{"Index": "390","key" : "683_0","ProductId" : "683","ProductName" : "AT_Warframe_Loki","Color" : "0","Count" : "1"},{"Index": "391","key" : "6846_0","ProductId" : "6846","ProductName" : "wheel_spitfire_se","Color" : "0","Count" : "1"},{"Index": "392","key" : "684_0","ProductId" : "684","ProductName" : "AT_Warframe_Excalibur","Color" : "0","Count" : "1"},{"Index": "393","key" : "685_0","ProductId" : "685","ProductName" : "Hat_CowSkull","Color" : "0","Count" : "1"},{"Index": "394","key" : "686_0","ProductId" : "686","ProductName" : "AT_Portal_PC","Color" : "0","Count" : "1"},{"Index": "395","key" : "690_0","ProductId" : "690","ProductName" : "WHEEL_Spiked","Color" : "0","Count" : "1"},{"Index": "396","key" : "693_0","ProductId" : "693","ProductName" : "Flag_VGX","Color" : "0","Count" : "1"},{"Index": "397","key" : "698_0","ProductId" : "698","ProductName" : "AT_GladOS_Potato","Color" : "0","Count" : "1"},{"Index": "398","key" : "699_0","ProductId" : "699","ProductName" : "Flag_SomethingAwful","Color" : "0","Count" : "1"},{"Index": "399","key" : "69_0","ProductId" : "69","ProductName" : "Boost_Water","Color" : "0","Count" : "1"},{"Index": "400","key" : "705_0","ProductId" : "705","ProductName" : "Crown_Bronze","Color" : "0","Count" : "1"},{"Index": "401","key" : "724_0","ProductId" : "724","ProductName" : "Flag_Destructoid","Color" : "0","Count" : "1"},{"Index": "402","key" : "725_0","ProductId" : "725","ProductName" : "Flag_Gamespot","Color" : "0","Count" : "1"},{"Index": "403","key" : "726_0","ProductId" : "726","ProductName" : "Flag_Operation_Sports","Color" : "0","Count" : "1"},{"Index": "404","key" : "728_0","ProductId" : "728","ProductName" : "Flag_GoldGlove","Color" : "0","Count" : "1"},{"Index": "405","key" : "732_0","ProductId" : "732","ProductName" : "Flag_Gfinity","Color" : "0","Count" : "1"},{"Index": "406","key" : "741_0","ProductId" : "741","ProductName" : "Hat_CaptainHat","Color" : "0","Count" : "1"},{"Index": "407","key" : "743_0","ProductId" : "743","ProductName" : "HAT_DoughboyHelmet","Color" : "0","Count" : "1"},{"Index": "408","key" : "745_0","ProductId" : "745","ProductName" : "HAT_GentlemanHat","Color" : "0","Count" : "1"},{"Index": "409","key" : "745_7","ProductId" : "745","ProductName" : "HAT_GentlemanHat","Color" : "7","Count" : "1"},{"Index": "410","key" : "746_0","ProductId" : "746","ProductName" : "Hat_PoliceHat","Color" : "0","Count" : "1"},{"Index": "411","key" : "749_0","ProductId" : "749","ProductName" : "Antenna_Witcher3_Medallion","Color" : "0","Count" : "1"},{"Index": "412","key" : "752_0","ProductId" : "752","ProductName" : "Antenna_DogBalloon","Color" : "0","Count" : "2"},{"Index": "413","key" : "753_0","ProductId" : "753","ProductName" : "Antenna_Alien","Color" : "0","Count" : "1"},{"Index": "414","key" : "756_0","ProductId" : "756","ProductName" : "Hat_ChefsHat","Color" : "0","Count" : "1"},{"Index": "415","key" : "757_0","ProductId" : "757","ProductName" : "Antenna_Candle","Color" : "0","Count" : "1"},{"Index": "416","key" : "762_0","ProductId" : "762","ProductName" : "Antenna_HulaGirl","Color" : "0","Count" : "1"},{"Index": "417","key" : "769_0","ProductId" : "769","ProductName" : "Hat_Cockroach","Color" : "0","Count" : "2"},{"Index": "418","key" : "774_0","ProductId" : "774","ProductName" : "Hat_Antlers","Color" : "0","Count" : "1"},{"Index": "419","key" : "775_0","ProductId" : "775","ProductName" : "Hat_Beret","Color" : "0","Count" : "1"},{"Index": "420","key" : "779_0","ProductId" : "779","ProductName" : "Antenna_RubberDuckie","Color" : "0","Count" : "1"},{"Index": "421","key" : "780_0","ProductId" : "780","ProductName" : "Hat_Rhino","Color" : "0","Count" : "1"},{"Index": "422","key" : "781_0","ProductId" : "781","ProductName" : "Antenna_Mau5","Color" : "0","Count" : "1"},{"Index": "423","key" : "782_0","ProductId" : "782","ProductName" : "Hat_RatTrap","Color" : "0","Count" : "1"},{"Index": "424","key" : "788_0","ProductId" : "788","ProductName" : "Antenna_Flower_Venus","Color" : "0","Count" : "1"},{"Index": "425","key" : "789_0","ProductId" : "789","ProductName" : "Hat_BirthdayCake","Color" : "0","Count" : "2"},{"Index": "426","key" : "792_0","ProductId" : "792","ProductName" : "Hat_Deerstalker","Color" : "0","Count" : "1"},{"Index": "427","key" : "796_0","ProductId" : "796","ProductName" : "hat_deadmau5","Color" : "0","Count" : "1"},{"Index": "428","key" : "797_0","ProductId" : "797","ProductName" : "WHEEL_Neo","Color" : "0","Count" : "1"},{"Index": "429","key" : "799_0","ProductId" : "799","ProductName" : "Flag_9Gag","Color" : "0","Count" : "1"},{"Index": "430","key" : "7_0","ProductId" : "7","ProductName" : "Antenna_Heart","Color" : "0","Count" : "1"},{"Index": "431","key" : "802_0","ProductId" : "802","ProductName" : "Flag_IGN","Color" : "0","Count" : "1"},{"Index": "432","key" : "808_0","ProductId" : "808","ProductName" : "flag_nvidia","Color" : "0","Count" : "1"},{"Index": "433","key" : "813_0","ProductId" : "813","ProductName" : "Antenna_ETS2","Color" : "0","Count" : "1"},{"Index": "434","key" : "814_0","ProductId" : "814","ProductName" : "Flag_AbleGamers","Color" : "0","Count" : "1"},{"Index": "435","key" : "817_0","ProductId" : "817","ProductName" : "Hat_Pigeon","Color" : "0","Count" : "1"},{"Index": "436","key" : "867_0","ProductId" : "867","ProductName" : "Antenna_GoatSimulator_Goat","Color" : "0","Count" : "1"},{"Index": "437","key" : "869_0","ProductId" : "869","ProductName" : "Flag_RocketBeans","Color" : "0","Count" : "1"},{"Index": "438","key" : "8_0","ProductId" : "8","ProductName" : "Antenna_Horseshoe","Color" : "0","Count" : "1"},{"Index": "439","key" : "916_0","ProductId" : "916","ProductName" : "Flag_PAX","Color" : "0","Count" : "1"},{"Index": "440","key" : "917_0","ProductId" : "917","ProductName" : "Flag_PennyArcade","Color" : "0","Count" : "1"},{"Index": "441","key" : "918_0","ProductId" : "918","ProductName" : "Antenna_DIV","Color" : "0","Count" : "1"},{"Index": "442","key" : "927_0","ProductId" : "927","ProductName" : "Antenna_GoatSimulator_G2Robot","Color" : "0","Count" : "1"},{"Index": "443","key" : "9_0","ProductId" : "9","ProductName" : "Antenna_LightningBolt","Color" : "0","Count" : "1"}]"}},"feature":"game_info"}

training

Info Updates

keyCategoryValuesNotesSince GEP Ver.
training_packgame_infoOn selecting a training packSee notes236.0

training_pack note

List of params:

  • download_code - Pack download code
  • pack_name - Pack name
  • pack_author - The name of the author of the training pack
  • total_shots - The total number of shots in the pack

Data Examples:

{"feature":"training","category":"training","key":"training_pack","value":"{\"download_code\":\"779A-5FD1-6C2A-8CAD\",\"pack_name\":\"Level 001 - Lets play Catch\",\"pack_author\":\"[SPG] Professorshanks\",\"total_shots\":8}"}

Events

EventEvent DataFired WhenNotesSince GEP Ver.
training_roundThe current round number in the training packNew round startsSee notes236.0
training_round_resultThe completed round nuber and the round resultA round endsSee notes236.0

training_round note

Data Example:

{"events":[{"name":"training_round","data":"2"}]}

training_round_result note

Possible values:

  • result
    • complete
    • fail

Data Example:

{"events":[{"name":"training_round","data":"{\"round\":2,\"result\":\"complete\"}"}]}