ruby-lol 0.12.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +16 -0
  3. data/.gitignore +2 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +1157 -0
  6. data/.travis.yml +1 -1
  7. data/lib/lol/champion_mastery_request.rb +29 -57
  8. data/lib/lol/champion_request.rb +19 -23
  9. data/lib/lol/client.rb +16 -21
  10. data/lib/lol/dynamic_model.rb +14 -5
  11. data/lib/lol/featured_game_list.rb +15 -0
  12. data/lib/lol/league_request.rb +28 -49
  13. data/lib/lol/lol_status_request.rb +9 -26
  14. data/lib/lol/masteries_request.rb +14 -0
  15. data/lib/lol/match_request.rb +51 -9
  16. data/lib/lol/request.rb +55 -21
  17. data/lib/lol/runes_request.rb +14 -0
  18. data/lib/lol/spectator_request.rb +24 -0
  19. data/lib/lol/static_request.rb +34 -23
  20. data/lib/lol/summoner_request.rb +22 -51
  21. data/lib/lol/tournament_request.rb +95 -0
  22. data/lib/lol/version.rb +1 -1
  23. data/ruby-lol.gemspec +1 -1
  24. data/spec/api_version_spec.rb +10 -9
  25. data/spec/fixtures/{v1.2 → v3}/get-champion-266.json +0 -0
  26. data/spec/fixtures/{v1.2/get-champion.json → v3/get-champion-all.json} +0 -0
  27. data/spec/fixtures/{v1.0/get-champion-mastery-champions.json → v3/get-champion-masteries.json} +0 -0
  28. data/spec/fixtures/{v1.0/get-champion-mastery-champion.json → v3/get-champion-mastery.json} +0 -0
  29. data/spec/fixtures/v3/get-current-game.json +1 -0
  30. data/spec/fixtures/v3/get-featured-games.json +1 -0
  31. data/spec/fixtures/v3/get-ids-by-tc.json +1 -0
  32. data/spec/fixtures/v3/get-league-challenger.json +1 -0
  33. data/spec/fixtures/v3/get-league-master.json +1 -0
  34. data/spec/fixtures/v3/get-league-positions.json +1 -0
  35. data/spec/fixtures/v3/get-league-summoner.json +1 -0
  36. data/spec/fixtures/v3/get-lol-status-shard.json +1 -0
  37. data/spec/fixtures/v3/get-masteries.json +1 -0
  38. data/spec/fixtures/v3/get-match-with-tc.json +1 -0
  39. data/spec/fixtures/v3/get-match.json +1 -0
  40. data/spec/fixtures/v3/get-matches-recent.json +1 -0
  41. data/spec/fixtures/v3/get-matches.json +1 -0
  42. data/spec/fixtures/v3/get-runes.json +1 -0
  43. data/spec/fixtures/v3/get-static-champions-by-id.json +1 -0
  44. data/spec/fixtures/v3/get-static-champions.json +1 -0
  45. data/spec/fixtures/v3/get-static-items-by-id.json +1 -0
  46. data/spec/fixtures/v3/get-static-items.json +1 -0
  47. data/spec/fixtures/v3/get-static-maps.json +1 -0
  48. data/spec/fixtures/v3/get-static-masteries-by-id.json +1 -0
  49. data/spec/fixtures/v3/get-static-masteries.json +1 -0
  50. data/spec/fixtures/v3/get-static-realms.json +1 -0
  51. data/spec/fixtures/v3/get-static-runes-by-id.json +1 -0
  52. data/spec/fixtures/v3/get-static-runes.json +1 -0
  53. data/spec/fixtures/v3/get-static-summoner-spells-by-id.json +1 -0
  54. data/spec/fixtures/v3/get-static-summoner-spells.json +1 -0
  55. data/spec/fixtures/v3/get-static-versions.json +1 -0
  56. data/spec/fixtures/v3/get-summoner-by-name.json +1 -0
  57. data/spec/fixtures/v3/get-summoner.json +1 -0
  58. data/spec/fixtures/v3/get-timeline.json +1 -0
  59. data/spec/fixtures/v3/get-tournament-code.json +1 -0
  60. data/spec/lol/champion_mastery_request_spec.rb +33 -133
  61. data/spec/lol/champion_request_spec.rb +17 -30
  62. data/spec/lol/client_spec.rb +12 -56
  63. data/spec/lol/league_request_spec.rb +29 -72
  64. data/spec/lol/lol_status_request_spec.rb +6 -34
  65. data/spec/lol/masteries_request_spec.rb +15 -0
  66. data/spec/lol/match_request_spec.rb +45 -10
  67. data/spec/lol/request_spec.rb +5 -5
  68. data/spec/lol/runes_request_spec.rb +15 -0
  69. data/spec/lol/spectator_request_spec.rb +23 -0
  70. data/spec/lol/static_request_spec.rb +44 -48
  71. data/spec/lol/summoner_request_spec.rb +20 -71
  72. data/spec/lol/tournament_request_spec.rb +36 -0
  73. metadata +92 -175
  74. data/lib/lol/champion.rb +0 -37
  75. data/lib/lol/champion_mastery.rb +0 -50
  76. data/lib/lol/champion_statistics_summary.rb +0 -25
  77. data/lib/lol/current_game_request.rb +0 -16
  78. data/lib/lol/featured_games_request.rb +0 -15
  79. data/lib/lol/game.rb +0 -85
  80. data/lib/lol/game_request.rb +0 -19
  81. data/lib/lol/league.rb +0 -32
  82. data/lib/lol/league_entry.rb +0 -74
  83. data/lib/lol/mastery.rb +0 -16
  84. data/lib/lol/mastery_page.rb +0 -28
  85. data/lib/lol/match_list_request.rb +0 -15
  86. data/lib/lol/match_summary.rb +0 -59
  87. data/lib/lol/mini_series.rb +0 -29
  88. data/lib/lol/model.rb +0 -28
  89. data/lib/lol/player.rb +0 -21
  90. data/lib/lol/player_statistic.rb +0 -46
  91. data/lib/lol/ranked_statistics_summary.rb +0 -35
  92. data/lib/lol/roster.rb +0 -23
  93. data/lib/lol/rune_page.rb +0 -28
  94. data/lib/lol/rune_slot.rb +0 -29
  95. data/lib/lol/stats_request.rb +0 -35
  96. data/lib/lol/summoner.rb +0 -36
  97. data/lib/lol/team.rb +0 -110
  98. data/lib/lol/team_member.rb +0 -33
  99. data/lib/lol/team_request.rb +0 -32
  100. data/lib/lol/team_statistic.rb +0 -53
  101. data/lib/lol/tournament_code.rb +0 -58
  102. data/lib/lol/tournament_provider_request.rb +0 -111
  103. data/spec/fixtures/v1.0/get-champion-mastery-top-champions-10.json +0 -121
  104. data/spec/fixtures/v1.0/get-champion-mastery-top-champions.json +0 -38
  105. data/spec/fixtures/v1.0/get-current-game.json +0 -1065
  106. data/spec/fixtures/v1.0/get-featured-games.json +0 -730
  107. data/spec/fixtures/v1.0/get-lol-status-shard-by-region.json +0 -39
  108. data/spec/fixtures/v1.0/get-lol-status-shards.json +0 -78
  109. data/spec/fixtures/v1.2/get-champion-by-id.json +0 -6
  110. data/spec/fixtures/v1.2/get-item-by-id.json +0 -6
  111. data/spec/fixtures/v1.2/get-item.json +0 -1563
  112. data/spec/fixtures/v1.2/get-mastery-by-id.json +0 -9
  113. data/spec/fixtures/v1.2/get-mastery.json +0 -389
  114. data/spec/fixtures/v1.2/get-realm.json +0 -1
  115. data/spec/fixtures/v1.2/get-rune-by-id.json +0 -26
  116. data/spec/fixtures/v1.2/get-rune.json +0 -2966
  117. data/spec/fixtures/v1.2/get-static-champion.json +0 -714
  118. data/spec/fixtures/v1.2/get-summoner-spell-by-id.json +0 -39
  119. data/spec/fixtures/v1.2/get-summoner-spell.json +0 -97
  120. data/spec/fixtures/v1.2/get-versions.json +0 -1
  121. data/spec/fixtures/v1.3/get-game.json +0 -1040
  122. data/spec/fixtures/v1.3/get-ranked_stats.json +0 -1
  123. data/spec/fixtures/v1.3/get-stats.json +0 -1
  124. data/spec/fixtures/v1.4/get-summoner-by-name.json +0 -1
  125. data/spec/fixtures/v1.4/get-summoner-masteries.json +0 -898
  126. data/spec/fixtures/v1.4/get-summoner-name.json +0 -1
  127. data/spec/fixtures/v1.4/get-summoner-runes.json +0 -2547
  128. data/spec/fixtures/v1.4/get-summoner.json +0 -1
  129. data/spec/fixtures/v2.2/get-match.json +0 -1
  130. data/spec/fixtures/v2.2/get-match_list.json +0 -1
  131. data/spec/fixtures/v2.4/get-by-summoner.json +0 -1
  132. data/spec/fixtures/v2.4/get-team.json +0 -1
  133. data/spec/fixtures/v2.5/get-league-by-team.json +0 -1
  134. data/spec/fixtures/v2.5/get-league-challenger.json +0 -1
  135. data/spec/fixtures/v2.5/get-league-entry-by-team.json +0 -1
  136. data/spec/fixtures/v2.5/get-league-entry.json +0 -1
  137. data/spec/fixtures/v2.5/get-league-master.json +0 -1
  138. data/spec/fixtures/v2.5/get-league.json +0 -1
  139. data/spec/lol/champion_mastery_spec.rb +0 -20
  140. data/spec/lol/champion_spec.rb +0 -19
  141. data/spec/lol/champion_statistics_summary_spec.rb +0 -38
  142. data/spec/lol/current_game_request_spec.rb +0 -47
  143. data/spec/lol/featured_games_request_spec.rb +0 -39
  144. data/spec/lol/game_request_spec.rb +0 -32
  145. data/spec/lol/game_spec.rb +0 -51
  146. data/spec/lol/league_entry_spec.rb +0 -51
  147. data/spec/lol/league_spec.rb +0 -31
  148. data/spec/lol/mastery_page_spec.rb +0 -29
  149. data/spec/lol/mastery_spec.rb +0 -17
  150. data/spec/lol/match_list_request_spec.rb +0 -39
  151. data/spec/lol/match_summary_spec.rb +0 -25
  152. data/spec/lol/mini_series_spec.rb +0 -25
  153. data/spec/lol/model_spec.rb +0 -13
  154. data/spec/lol/player_spec.rb +0 -19
  155. data/spec/lol/player_statistic_spec.rb +0 -44
  156. data/spec/lol/ranked_statistics_summary_spec.rb +0 -32
  157. data/spec/lol/roster_spec.rb +0 -24
  158. data/spec/lol/rune_page_spec.rb +0 -28
  159. data/spec/lol/rune_slot_spec.rb +0 -16
  160. data/spec/lol/stats_request_spec.rb +0 -93
  161. data/spec/lol/summoner_spec.rb +0 -20
  162. data/spec/lol/team_member_spec.rb +0 -27
  163. data/spec/lol/team_request_spec.rb +0 -47
  164. data/spec/lol/team_spec.rb +0 -54
  165. data/spec/lol/team_statistic_spec.rb +0 -20
  166. data/spec/lol/tournament_code_spec.rb +0 -20
  167. data/spec/lol/tournament_provider_request_spec.rb +0 -73
@@ -1,3 +1,3 @@
1
1
  module Lol
2
- VERSION = "0.12.2"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
  spec.add_development_dependency "webmock", ">= 1.8.0", "< 1.16"
33
33
  spec.add_development_dependency "awesome_print"
34
34
 
35
- spec.add_runtime_dependency "httparty"
35
+ spec.add_runtime_dependency "httparty", "0.14.0" # due to https://github.com/jnunemaker/httparty/issues/533
36
36
  spec.add_runtime_dependency "activesupport"
37
37
  spec.add_runtime_dependency "redis"
38
38
  end
@@ -13,13 +13,14 @@ def check_api_version(klass, version)
13
13
  end
14
14
 
15
15
  describe "API Versions" do
16
- check_api_version(ChampionRequest, "v1.2")
17
- check_api_version(GameRequest, "v1.3")
18
- check_api_version(LeagueRequest, "v2.5")
19
- check_api_version(StaticRequest, "v1.2")
20
- check_api_version(MatchRequest, "v2.2")
21
- check_api_version(MatchListRequest, "v2.2")
22
- check_api_version(StatsRequest, "v1.3")
23
- check_api_version(SummonerRequest, "v1.4")
24
- check_api_version(TeamRequest, "v2.4")
16
+ check_api_version(ChampionRequest, "v3")
17
+ check_api_version(ChampionMasteryRequest, "v3")
18
+ check_api_version(LeagueRequest, "v3")
19
+ check_api_version(StaticRequest, "v3")
20
+ check_api_version(LolStatusRequest, "v3")
21
+ check_api_version(MatchRequest, "v3")
22
+ check_api_version(SummonerRequest, "v3")
23
+ check_api_version(RunesRequest, "v3")
24
+ check_api_version(MasteriesRequest, "v3")
25
+ check_api_version(SpectatorRequest, "v3")
25
26
  end
@@ -0,0 +1 @@
1
+ {"gameId":3186584028,"mapId":12,"gameMode":"ARAM","gameType":"MATCHED_GAME","gameQueueConfigId":65,"participants":[{"teamId":100,"spell1Id":1,"spell2Id":4,"championId":119,"profileIconId":1212,"summonerName":"FaisaI","bot":false,"summonerId":52576163,"runes":[{"count":9,"runeId":5245},{"count":5,"runeId":5277},{"count":4,"runeId":5289},{"count":9,"runeId":5317},{"count":3,"runeId":5337}],"masteries":[{"rank":5,"masteryId":6111},{"rank":1,"masteryId":6121},{"rank":5,"masteryId":6131},{"rank":1,"masteryId":6141},{"rank":5,"masteryId":6151},{"rank":1,"masteryId":6161},{"rank":5,"masteryId":6312},{"rank":1,"masteryId":6322},{"rank":5,"masteryId":6331},{"rank":1,"masteryId":6343}]},{"teamId":100,"spell1Id":32,"spell2Id":4,"championId":12,"profileIconId":907,"summonerName":"AndersStefan","bot":false,"summonerId":29311441,"runes":[{"count":9,"runeId":5245},{"count":9,"runeId":5289},{"count":9,"runeId":5317},{"count":3,"runeId":5347}],"masteries":[{"rank":5,"masteryId":6114},{"rank":1,"masteryId":6122},{"rank":5,"masteryId":6131},{"rank":1,"masteryId":6142},{"rank":5,"masteryId":6212},{"rank":1,"masteryId":6223},{"rank":5,"masteryId":6232},{"rank":1,"masteryId":6242},{"rank":5,"masteryId":6251},{"rank":1,"masteryId":6261}]},{"teamId":100,"spell1Id":6,"spell2Id":4,"championId":112,"profileIconId":903,"summonerName":"ChaoticHero","bot":false,"summonerId":19892437,"runes":[{"count":9,"runeId":5273},{"count":3,"runeId":5289},{"count":6,"runeId":5296},{"count":5,"runeId":5316},{"count":4,"runeId":5317},{"count":3,"runeId":5357}],"masteries":[{"rank":5,"masteryId":6114},{"rank":1,"masteryId":6122},{"rank":5,"masteryId":6134},{"rank":1,"masteryId":6143},{"rank":5,"masteryId":6312},{"rank":1,"masteryId":6322},{"rank":5,"masteryId":6331},{"rank":1,"masteryId":6342},{"rank":5,"masteryId":6351},{"rank":1,"masteryId":6362}]},{"teamId":100,"spell1Id":4,"spell2Id":14,"championId":432,"profileIconId":2073,"summonerName":"Holakamionom","bot":false,"summonerId":78977495,"runes":[{"count":6,"runeId":5245},{"count":2,"runeId":5247},{"count":1,"runeId":5251},{"count":9,"runeId":5289},{"count":9,"runeId":5317},{"count":2,"runeId":5335},{"count":1,"runeId":5337}],"masteries":[{"rank":5,"masteryId":6211},{"rank":1,"masteryId":6222},{"rank":5,"masteryId":6231},{"rank":1,"masteryId":6241},{"rank":5,"masteryId":6311},{"rank":1,"masteryId":6322},{"rank":5,"masteryId":6332},{"rank":1,"masteryId":6343},{"rank":5,"masteryId":6351},{"rank":1,"masteryId":6362}]},{"teamId":100,"spell1Id":32,"spell2Id":4,"championId":57,"profileIconId":1391,"summonerName":"xWr4th","bot":false,"summonerId":88007182,"runes":[{"count":9,"runeId":5273},{"count":9,"runeId":5290},{"count":9,"runeId":5317},{"count":3,"runeId":5357}],"masteries":[{"rank":5,"masteryId":6114},{"rank":1,"masteryId":6122},{"rank":5,"masteryId":6134},{"rank":1,"masteryId":6142},{"rank":5,"masteryId":6154},{"rank":1,"masteryId":6164},{"rank":5,"masteryId":6312},{"rank":1,"masteryId":6322},{"rank":5,"masteryId":6331},{"rank":1,"masteryId":6343}]},{"teamId":200,"spell1Id":4,"spell2Id":7,"championId":203,"profileIconId":1637,"summonerName":"Heika","bot":false,"summonerId":29385999,"runes":[{"count":9,"runeId":5245},{"count":5,"runeId":5289},{"count":4,"runeId":5290},{"count":9,"runeId":5317},{"count":3,"runeId":5337}],"masteries":[{"rank":5,"masteryId":6114},{"rank":1,"masteryId":6121},{"rank":1,"masteryId":6131},{"rank":4,"masteryId":6134},{"rank":1,"masteryId":6143},{"rank":5,"masteryId":6151},{"rank":1,"masteryId":6161},{"rank":5,"masteryId":6212},{"rank":1,"masteryId":6223},{"rank":5,"masteryId":6231},{"rank":1,"masteryId":6241}]},{"teamId":200,"spell1Id":32,"spell2Id":4,"championId":84,"profileIconId":984,"summonerName":"Swamp00","bot":false,"summonerId":56610525,"runes":[{"count":3,"runeId":5257},{"count":6,"runeId":5273},{"count":9,"runeId":5289},{"count":9,"runeId":5317},{"count":3,"runeId":5357}],"masteries":[{"rank":5,"masteryId":6114},{"rank":1,"masteryId":6121},{"rank":5,"masteryId":6134},{"rank":1,"masteryId":6141},{"rank":5,"masteryId":6312},{"rank":1,"masteryId":6323},{"rank":3,"masteryId":6331},{"rank":2,"masteryId":6332},{"rank":1,"masteryId":6343},{"rank":5,"masteryId":6351},{"rank":1,"masteryId":6362}]},{"teamId":200,"spell1Id":4,"spell2Id":3,"championId":267,"profileIconId":1427,"summonerName":"Pîzza","bot":false,"summonerId":60314423,"runes":[{"count":6,"runeId":5245},{"count":3,"runeId":5273},{"count":9,"runeId":5297},{"count":7,"runeId":5315},{"count":2,"runeId":5317},{"count":2,"runeId":5347},{"count":1,"runeId":5357}],"masteries":[{"rank":5,"masteryId":6212},{"rank":1,"masteryId":6221},{"rank":5,"masteryId":6231},{"rank":1,"masteryId":6241},{"rank":5,"masteryId":6311},{"rank":1,"masteryId":6322},{"rank":5,"masteryId":6332},{"rank":1,"masteryId":6342},{"rank":5,"masteryId":6352},{"rank":1,"masteryId":6363}]},{"teamId":200,"spell1Id":4,"spell2Id":32,"championId":420,"profileIconId":711,"summonerName":"ECraft","bot":false,"summonerId":19542828,"runes":[{"count":9,"runeId":5245},{"count":9,"runeId":5289},{"count":9,"runeId":5317},{"count":3,"runeId":5335}],"masteries":[{"rank":5,"masteryId":6111},{"rank":1,"masteryId":6121},{"rank":5,"masteryId":6131},{"rank":1,"masteryId":6142},{"rank":5,"masteryId":6311},{"rank":1,"masteryId":6322},{"rank":5,"masteryId":6331},{"rank":1,"masteryId":6341},{"rank":5,"masteryId":6352},{"rank":1,"masteryId":6362}]},{"teamId":200,"spell1Id":4,"spell2Id":32,"championId":11,"profileIconId":1132,"summonerName":"LÖBÖLÖNK","bot":false,"summonerId":88689058,"runes":[{"count":9,"runeId":5245},{"count":3,"runeId":5289},{"count":6,"runeId":5296},{"count":9,"runeId":5317},{"count":3,"runeId":5335}],"masteries":[{"rank":5,"masteryId":6111},{"rank":1,"masteryId":6121},{"rank":5,"masteryId":6131},{"rank":1,"masteryId":6141},{"rank":5,"masteryId":6151},{"rank":1,"masteryId":6162},{"rank":5,"masteryId":6311},{"rank":1,"masteryId":6322},{"rank":5,"masteryId":6331},{"rank":1,"masteryId":6343}]}],"observers":{"encryptionKey":"U+rZl9qb1YBLuZS63/cDazyOQIhp4pSb"},"platformId":"EUW1","bannedChampions":[],"gameStartTime":1495009864765,"gameLength":531}
@@ -0,0 +1 @@
1
+ {"gameList":[{"gameId":3186584028,"mapId":12,"gameMode":"ARAM","gameType":"MATCHED_GAME","gameQueueConfigId":65,"participants":[{"teamId":100,"spell1Id":1,"spell2Id":4,"championId":119,"profileIconId":1212,"summonerName":"FaisaI","bot":false},{"teamId":100,"spell1Id":32,"spell2Id":4,"championId":12,"profileIconId":907,"summonerName":"AndersStefan","bot":false},{"teamId":100,"spell1Id":6,"spell2Id":4,"championId":112,"profileIconId":903,"summonerName":"ChaoticHero","bot":false},{"teamId":100,"spell1Id":4,"spell2Id":14,"championId":432,"profileIconId":2073,"summonerName":"Holakamionom","bot":false},{"teamId":100,"spell1Id":32,"spell2Id":4,"championId":57,"profileIconId":1391,"summonerName":"xWr4th","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":7,"championId":203,"profileIconId":1637,"summonerName":"Heika","bot":false},{"teamId":200,"spell1Id":32,"spell2Id":4,"championId":84,"profileIconId":984,"summonerName":"Swamp00","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":3,"championId":267,"profileIconId":1427,"summonerName":"Pîzza","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":32,"championId":420,"profileIconId":711,"summonerName":"ECraft","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":32,"championId":11,"profileIconId":1132,"summonerName":"LÖBÖLÖNK","bot":false}],"observers":{"encryptionKey":"U+rZl9qb1YBLuZS63/cDazyOQIhp4pSb"},"platformId":"EUW1","bannedChampions":[],"gameStartTime":1495009864765,"gameLength":269},{"gameId":3186554674,"mapId":11,"gameMode":"CLASSIC","gameType":"MATCHED_GAME","gameQueueConfigId":420,"participants":[{"teamId":100,"spell1Id":4,"spell2Id":11,"championId":64,"profileIconId":1629,"summonerName":"Gripex","bot":false},{"teamId":100,"spell1Id":14,"spell2Id":4,"championId":1,"profileIconId":588,"summonerName":"Back2Me","bot":false},{"teamId":100,"spell1Id":4,"spell2Id":12,"championId":59,"profileIconId":595,"summonerName":"bog","bot":false},{"teamId":100,"spell1Id":7,"spell2Id":4,"championId":236,"profileIconId":1597,"summonerName":"OSP","bot":false},{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":25,"profileIconId":578,"summonerName":"nigdy szczeście","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":12,"championId":76,"profileIconId":585,"summonerName":"br0keñ","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":14,"championId":55,"profileIconId":1594,"summonerName":"Revilous","bot":false},{"teamId":200,"spell1Id":11,"spell2Id":4,"championId":121,"profileIconId":1601,"summonerName":"Áncient","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":14,"championId":89,"profileIconId":508,"summonerName":"TEA Darkvenger","bot":false},{"teamId":200,"spell1Id":7,"spell2Id":4,"championId":51,"profileIconId":22,"summonerName":"Upiornyy","bot":false}],"observers":{"encryptionKey":"iDz9y9ULmEOIyDhyB6hK2VN4vWkgG4mG"},"platformId":"EUW1","bannedChampions":[{"championId":427,"teamId":100,"pickTurn":1},{"championId":117,"teamId":200,"pickTurn":2},{"championId":105,"teamId":100,"pickTurn":3},{"championId":104,"teamId":200,"pickTurn":4},{"championId":7,"teamId":100,"pickTurn":5},{"championId":38,"teamId":200,"pickTurn":6}],"gameStartTime":1495009791957,"gameLength":342},{"gameId":3186583988,"mapId":12,"gameMode":"ARAM","gameType":"MATCHED_GAME","gameQueueConfigId":65,"participants":[{"teamId":100,"spell1Id":4,"spell2Id":7,"championId":96,"profileIconId":1162,"summonerName":"Kawaboungara","bot":false},{"teamId":100,"spell1Id":4,"spell2Id":32,"championId":53,"profileIconId":1301,"summonerName":"Lnerbo","bot":false},{"teamId":100,"spell1Id":32,"spell2Id":4,"championId":86,"profileIconId":1436,"summonerName":"BuryMySoul","bot":false},{"teamId":100,"spell1Id":4,"spell2Id":21,"championId":268,"profileIconId":642,"summonerName":"Cank Wannister","bot":false},{"teamId":100,"spell1Id":4,"spell2Id":7,"championId":202,"profileIconId":898,"summonerName":"Halanah","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":7,"championId":90,"profileIconId":522,"summonerName":"Milfbubi","bot":false},{"teamId":200,"spell1Id":32,"spell2Id":4,"championId":50,"profileIconId":508,"summonerName":"blyxXx","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":3,"championId":84,"profileIconId":10,"summonerName":"Raíñbow Dash","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":32,"championId":113,"profileIconId":1642,"summonerName":"Aninis","bot":false},{"teamId":200,"spell1Id":32,"spell2Id":4,"championId":35,"profileIconId":717,"summonerName":"3X1st3NC3","bot":false}],"observers":{"encryptionKey":"jx39BM9Lwsp5a6MStzCkVP2OBSjGg9zc"},"platformId":"EUW1","bannedChampions":[],"gameStartTime":1495009789297,"gameLength":345},{"gameId":3186343650,"mapId":11,"gameMode":"CLASSIC","gameType":"MATCHED_GAME","gameQueueConfigId":2,"participants":[{"teamId":100,"spell1Id":4,"spell2Id":12,"championId":92,"profileIconId":563,"summonerName":"basouK","bot":false},{"teamId":100,"spell1Id":14,"spell2Id":4,"championId":63,"profileIconId":1640,"summonerName":"Witoad v1","bot":false},{"teamId":100,"spell1Id":4,"spell2Id":7,"championId":81,"profileIconId":1157,"summonerName":"Leafor","bot":false},{"teamId":100,"spell1Id":3,"spell2Id":4,"championId":30,"profileIconId":1601,"summonerName":"IS1ffdb2a4c978a0","bot":false},{"teamId":100,"spell1Id":11,"spell2Id":4,"championId":28,"profileIconId":1601,"summonerName":"EVELYNN POGCHAMP","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":7,"championId":51,"profileIconId":1601,"summonerName":"Shepherd Shock","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":12,"championId":245,"profileIconId":1594,"summonerName":"Tusci","bot":false},{"teamId":200,"spell1Id":11,"spell2Id":4,"championId":20,"profileIconId":1154,"summonerName":"Ghandi handi","bot":false},{"teamId":200,"spell1Id":14,"spell2Id":4,"championId":57,"profileIconId":1634,"summonerName":"Decapitator Jake","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":12,"championId":75,"profileIconId":713,"summonerName":"Adeanin96","bot":false}],"observers":{"encryptionKey":"sPzPqqa6m2KNvtuzhipz/NIVNVQjAbci"},"platformId":"EUW1","bannedChampions":[],"gameStartTime":1495010031086,"gameLength":103},{"gameId":3186603689,"mapId":12,"gameMode":"ARAM","gameType":"MATCHED_GAME","gameQueueConfigId":65,"participants":[{"teamId":100,"spell1Id":4,"spell2Id":21,"championId":115,"profileIconId":781,"summonerName":"Verievil","bot":false},{"teamId":100,"spell1Id":4,"spell2Id":3,"championId":43,"profileIconId":685,"summonerName":"tacotak21","bot":false},{"teamId":100,"spell1Id":21,"spell2Id":32,"championId":238,"profileIconId":983,"summonerName":"Kurau","bot":false},{"teamId":100,"spell1Id":7,"spell2Id":4,"championId":81,"profileIconId":1375,"summonerName":"Chitter","bot":false},{"teamId":100,"spell1Id":13,"spell2Id":4,"championId":117,"profileIconId":544,"summonerName":"Jòhn Wick","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":32,"championId":92,"profileIconId":1155,"summonerName":"Turken22","bot":false},{"teamId":200,"spell1Id":4,"spell2Id":32,"championId":62,"profileIconId":907,"summonerName":"ReIief","bot":false},{"teamId":200,"spell1Id":3,"spell2Id":4,"championId":37,"profileIconId":22,"summonerName":"C me C you","bot":false},{"teamId":200,"spell1Id":7,"spell2Id":4,"championId":161,"profileIconId":747,"summonerName":"SR GunsRosesXIII","bot":false},{"teamId":200,"spell1Id":3,"spell2Id":4,"championId":67,"profileIconId":512,"summonerName":"FeestHoed","bot":false}],"observers":{"encryptionKey":"9GCwWjk59SOoS5igQ8F6baztrpfXtgRO"},"platformId":"EUW1","bannedChampions":[],"gameStartTime":1495009938752,"gameLength":195}],"clientRefreshInterval":300}
@@ -0,0 +1 @@
1
+ [2972702365]
@@ -0,0 +1 @@
1
+ {"name":"Zyra's Infiltrators","tier":"CHALLENGER","queue":"RANKED_SOLO_5x5","entries":[{"playerOrTeamId":"20965425","playerOrTeamName":"Broxah","leaguePoints":465,"rank":"I","wins":388,"losses":351,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97717284","playerOrTeamName":"Vitality Cabo","leaguePoints":832,"rank":"I","wins":161,"losses":137,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24415613","playerOrTeamName":"Energy IceCold","leaguePoints":377,"rank":"I","wins":153,"losses":117,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"27751693","playerOrTeamName":"Dat Patrick","leaguePoints":475,"rank":"I","wins":220,"losses":169,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37748436","playerOrTeamName":"Alphari","leaguePoints":513,"rank":"I","wins":215,"losses":170,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"83567148","playerOrTeamName":"OG Saulius","leaguePoints":487,"rank":"I","wins":398,"losses":354,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34628974","playerOrTeamName":"Hejsan svenne","leaguePoints":405,"rank":"I","wins":268,"losses":219,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23441464","playerOrTeamName":"Murmel","leaguePoints":684,"rank":"I","wins":317,"losses":265,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"73687170","playerOrTeamName":"Nikola Senpai v2","leaguePoints":540,"rank":"I","wins":257,"losses":219,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34640352","playerOrTeamName":"farfetchonwest","leaguePoints":458,"rank":"I","wins":415,"losses":369,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"69868149","playerOrTeamName":"LYN FrostyLoL","leaguePoints":526,"rank":"I","wins":174,"losses":127,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20308708","playerOrTeamName":"G0DGILIUS","leaguePoints":713,"rank":"I","wins":347,"losses":295,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37802452","playerOrTeamName":"PSG Kirei","leaguePoints":701,"rank":"I","wins":478,"losses":435,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30480956","playerOrTeamName":"WeAz SoRya","leaguePoints":391,"rank":"I","wins":152,"losses":116,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23717587","playerOrTeamName":"Kobbe","leaguePoints":576,"rank":"I","wins":230,"losses":179,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"42120158","playerOrTeamName":"K1CK FearlessS","leaguePoints":463,"rank":"I","wins":132,"losses":89,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24516174","playerOrTeamName":"Fl4merr","leaguePoints":413,"rank":"I","wins":281,"losses":241,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95136827","playerOrTeamName":"yddet llemag","leaguePoints":589,"rank":"I","wins":232,"losses":182,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71137717","playerOrTeamName":"Noxiak v2","leaguePoints":518,"rank":"I","wins":226,"losses":181,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"96597418","playerOrTeamName":"PrivateScript L9","leaguePoints":445,"rank":"I","wins":89,"losses":32,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"96868390","playerOrTeamName":"THE FF MACHINE","leaguePoints":650,"rank":"I","wins":188,"losses":116,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"69868141","playerOrTeamName":"H2K Perkz","leaguePoints":452,"rank":"I","wins":305,"losses":259,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19300840","playerOrTeamName":"YellowAD","leaguePoints":529,"rank":"I","wins":182,"losses":127,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19151853","playerOrTeamName":"G2 Ups3t","leaguePoints":1270,"rank":"I","wins":392,"losses":324,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"83180","playerOrTeamName":"V Steeelback","leaguePoints":384,"rank":"I","wins":452,"losses":416,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"33228506","playerOrTeamName":"LFT Flipper","leaguePoints":480,"rank":"I","wins":614,"losses":569,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28052021","playerOrTeamName":"KIYF Xico","leaguePoints":434,"rank":"I","wins":233,"losses":189,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"85828951","playerOrTeamName":"Jiizukéé","leaguePoints":717,"rank":"I","wins":151,"losses":107,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"40219771","playerOrTeamName":"BUFFAZIRORIDROP","leaguePoints":710,"rank":"I","wins":178,"losses":134,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19923074","playerOrTeamName":"Polyokovv","leaguePoints":602,"rank":"I","wins":395,"losses":347,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22481879","playerOrTeamName":"I KobrA I","leaguePoints":486,"rank":"I","wins":677,"losses":629,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"52200067","playerOrTeamName":"llIlllllIIllllll","leaguePoints":386,"rank":"I","wins":184,"losses":138,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"44748697","playerOrTeamName":"Kinguin Sebekx","leaguePoints":730,"rank":"I","wins":184,"losses":137,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19024517","playerOrTeamName":"Wakz v1","leaguePoints":417,"rank":"I","wins":140,"losses":96,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"36632741","playerOrTeamName":"BKN XDSMILEYs6","leaguePoints":509,"rank":"I","wins":376,"losses":335,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"22447540","playerOrTeamName":"Godbro sama","leaguePoints":421,"rank":"I","wins":403,"losses":365,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"32223837","playerOrTeamName":"Ayphir","leaguePoints":444,"rank":"I","wins":339,"losses":290,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"24610205","playerOrTeamName":"19 01 2000","leaguePoints":444,"rank":"I","wins":205,"losses":165,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"97607023","playerOrTeamName":"GO bIuerzor","leaguePoints":459,"rank":"I","wins":282,"losses":241,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20820358","playerOrTeamName":"MSF CozQ","leaguePoints":719,"rank":"I","wins":193,"losses":134,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35769412","playerOrTeamName":"GrismoZ","leaguePoints":463,"rank":"I","wins":97,"losses":55,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"73306918","playerOrTeamName":"Kite Machine","leaguePoints":439,"rank":"I","wins":425,"losses":381,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20778901","playerOrTeamName":"BTR Terseras","leaguePoints":474,"rank":"I","wins":478,"losses":429,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"63337108","playerOrTeamName":"EdìnPriqtel","leaguePoints":629,"rank":"I","wins":173,"losses":129,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29796806","playerOrTeamName":"OptimasXD","leaguePoints":403,"rank":"I","wins":284,"losses":241,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33147001","playerOrTeamName":"R0YAL Wh1t3zZ","leaguePoints":465,"rank":"I","wins":102,"losses":60,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72467946","playerOrTeamName":"Roison","leaguePoints":492,"rank":"I","wins":172,"losses":129,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95136999","playerOrTeamName":"HustlinB","leaguePoints":483,"rank":"I","wins":277,"losses":233,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20202800","playerOrTeamName":"eLS Pride","leaguePoints":407,"rank":"I","wins":118,"losses":79,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95206799","playerOrTeamName":"furt wins","leaguePoints":879,"rank":"I","wins":136,"losses":96,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19642904","playerOrTeamName":"azerty1","leaguePoints":455,"rank":"I","wins":286,"losses":248,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19024737","playerOrTeamName":"PlagiaT","leaguePoints":447,"rank":"I","wins":104,"losses":57,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20181136","playerOrTeamName":"Kruimel","leaguePoints":611,"rank":"I","wins":302,"losses":251,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"55497402","playerOrTeamName":"BTR toucouille","leaguePoints":534,"rank":"I","wins":480,"losses":430,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21556034","playerOrTeamName":"ATN Scarface","leaguePoints":937,"rank":"I","wins":288,"losses":230,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"76660449","playerOrTeamName":"LoneTest","leaguePoints":513,"rank":"I","wins":294,"losses":243,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"38497537","playerOrTeamName":"QUlCKTlMER","leaguePoints":729,"rank":"I","wins":367,"losses":320,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33470801","playerOrTeamName":"Diablo v2 ","leaguePoints":418,"rank":"I","wins":466,"losses":426,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86777339","playerOrTeamName":"YumiJürgen","leaguePoints":743,"rank":"I","wins":224,"losses":172,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85998367","playerOrTeamName":"APSPDPFP","leaguePoints":883,"rank":"I","wins":258,"losses":195,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33678783","playerOrTeamName":"PLAY THE GAME","leaguePoints":408,"rank":"I","wins":342,"losses":306,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35554586","playerOrTeamName":"Jhorxia","leaguePoints":469,"rank":"I","wins":255,"losses":214,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86797140","playerOrTeamName":"IlIIlllIIlIIllI","leaguePoints":376,"rank":"I","wins":125,"losses":69,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"41532420","playerOrTeamName":"IceBeasto","leaguePoints":658,"rank":"I","wins":318,"losses":273,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20779248","playerOrTeamName":"Jiissee","leaguePoints":445,"rank":"I","wins":255,"losses":224,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21528940","playerOrTeamName":"Blomster Finn","leaguePoints":702,"rank":"I","wins":190,"losses":143,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"85891136","playerOrTeamName":"MichaeI ScofieId","leaguePoints":381,"rank":"I","wins":187,"losses":146,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"74428528","playerOrTeamName":"BIMBO ARRABBIATO","leaguePoints":534,"rank":"I","wins":376,"losses":312,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36807362","playerOrTeamName":"2017SKEREN","leaguePoints":853,"rank":"I","wins":256,"losses":201,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30001868","playerOrTeamName":"Crossmann","leaguePoints":930,"rank":"I","wins":639,"losses":580,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70688737","playerOrTeamName":"SevenArmy v3 ","leaguePoints":421,"rank":"I","wins":266,"losses":216,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19339303","playerOrTeamName":"Tuikki","leaguePoints":431,"rank":"I","wins":194,"losses":151,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20385190","playerOrTeamName":"Obsess L9","leaguePoints":494,"rank":"I","wins":584,"losses":544,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20618554","playerOrTeamName":"lIIlIIlIllIIlIIl","leaguePoints":416,"rank":"I","wins":179,"losses":136,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"88038972","playerOrTeamName":"the inescapable","leaguePoints":422,"rank":"I","wins":282,"losses":238,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"60607879","playerOrTeamName":"kIaabu","leaguePoints":546,"rank":"I","wins":337,"losses":293,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71136981","playerOrTeamName":"MagiFaker","leaguePoints":639,"rank":"I","wins":173,"losses":118,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"29935644","playerOrTeamName":"Mein Königreich","leaguePoints":440,"rank":"I","wins":208,"losses":175,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"82747125","playerOrTeamName":"Nemky","leaguePoints":410,"rank":"I","wins":688,"losses":651,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21045313","playerOrTeamName":"Mikyx","leaguePoints":821,"rank":"I","wins":305,"losses":249,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"32236653","playerOrTeamName":"4GA TuTu","leaguePoints":376,"rank":"I","wins":385,"losses":342,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"93607205","playerOrTeamName":"IlllIIIlIIlllIIl","leaguePoints":537,"rank":"I","wins":212,"losses":161,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23323006","playerOrTeamName":"FNC NlSQY","leaguePoints":864,"rank":"I","wins":198,"losses":144,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86797333","playerOrTeamName":"MKMPMIHP","leaguePoints":652,"rank":"I","wins":316,"losses":263,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23307330","playerOrTeamName":"66J ","leaguePoints":946,"rank":"I","wins":536,"losses":467,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"41528584","playerOrTeamName":"mid nemesis","leaguePoints":584,"rank":"I","wins":360,"losses":312,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"68597024","playerOrTeamName":"Jesklaaa","leaguePoints":369,"rank":"I","wins":436,"losses":392,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"82746988","playerOrTeamName":"TEAM24SEVEN","leaguePoints":385,"rank":"I","wins":126,"losses":76,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19504067","playerOrTeamName":"GRE Freezy","leaguePoints":375,"rank":"I","wins":497,"losses":457,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19017368","playerOrTeamName":"ScarletRedHands","leaguePoints":454,"rank":"I","wins":133,"losses":99,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19929457","playerOrTeamName":"NattiWatch","leaguePoints":469,"rank":"I","wins":396,"losses":349,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20398981","playerOrTeamName":"ROCCAT Betsy","leaguePoints":399,"rank":"I","wins":214,"losses":177,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23717728","playerOrTeamName":"MonkWillCarry","leaguePoints":902,"rank":"I","wins":553,"losses":486,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34148603","playerOrTeamName":"EikaHoon","leaguePoints":716,"rank":"I","wins":482,"losses":433,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94417774","playerOrTeamName":"FB Frozen","leaguePoints":487,"rank":"I","wins":433,"losses":345,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"44476338","playerOrTeamName":"V Djok0","leaguePoints":386,"rank":"I","wins":251,"losses":215,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22422778","playerOrTeamName":"arC Dan Dan DD","leaguePoints":521,"rank":"I","wins":216,"losses":166,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19666136","playerOrTeamName":"Arin1","leaguePoints":425,"rank":"I","wins":588,"losses":563,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"21608444","playerOrTeamName":"Nikola Senpai","leaguePoints":687,"rank":"I","wins":296,"losses":244,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97539969","playerOrTeamName":"Red Inter","leaguePoints":679,"rank":"I","wins":130,"losses":65,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29342259","playerOrTeamName":"pvman jpn","leaguePoints":686,"rank":"I","wins":309,"losses":265,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20322986","playerOrTeamName":"Shafu","leaguePoints":421,"rank":"I","wins":340,"losses":289,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23483486","playerOrTeamName":"Ripi","leaguePoints":667,"rank":"I","wins":358,"losses":308,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"24471277","playerOrTeamName":"GODGILLETE ABDI","leaguePoints":808,"rank":"I","wins":345,"losses":287,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97607504","playerOrTeamName":"BiscottodiCeglie","leaguePoints":426,"rank":"I","wins":194,"losses":140,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"48617233","playerOrTeamName":"NB Donnie","leaguePoints":373,"rank":"I","wins":182,"losses":142,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"97187059","playerOrTeamName":"Sverónis","leaguePoints":519,"rank":"I","wins":234,"losses":151,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19829477","playerOrTeamName":"NoXiAK","leaguePoints":511,"rank":"I","wins":350,"losses":305,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43800383","playerOrTeamName":"LlDER","leaguePoints":537,"rank":"I","wins":296,"losses":253,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27426799","playerOrTeamName":"Taikki","leaguePoints":578,"rank":"I","wins":172,"losses":128,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"93977004","playerOrTeamName":"Shadow Sorcerer","leaguePoints":399,"rank":"I","wins":175,"losses":133,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28931680","playerOrTeamName":"Hades Underworld","leaguePoints":604,"rank":"I","wins":418,"losses":368,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"97408299","playerOrTeamName":"ONEMANAP0CALYPSE","leaguePoints":481,"rank":"I","wins":146,"losses":81,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"23556507","playerOrTeamName":"Shàrp","leaguePoints":497,"rank":"I","wins":404,"losses":352,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19931538","playerOrTeamName":"GO Shemek","leaguePoints":373,"rank":"I","wins":277,"losses":242,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70717452","playerOrTeamName":"Multirole Talent","leaguePoints":474,"rank":"I","wins":120,"losses":80,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46517338","playerOrTeamName":"Kasing1","leaguePoints":404,"rank":"I","wins":260,"losses":219,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"77480142","playerOrTeamName":"11 years old mid","leaguePoints":399,"rank":"I","wins":197,"losses":157,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23735326","playerOrTeamName":"TH Razork","leaguePoints":462,"rank":"I","wins":221,"losses":173,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88489685","playerOrTeamName":"nairdayrum251296","leaguePoints":502,"rank":"I","wins":181,"losses":119,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44246839","playerOrTeamName":"NukeduckAPM","leaguePoints":948,"rank":"I","wins":726,"losses":666,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35452243","playerOrTeamName":"TZeeD","leaguePoints":431,"rank":"I","wins":321,"losses":288,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29069277","playerOrTeamName":"MRDS Lastwolf","leaguePoints":400,"rank":"I","wins":290,"losses":250,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24877192","playerOrTeamName":"Milicaaa","leaguePoints":533,"rank":"I","wins":187,"losses":139,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29830974","playerOrTeamName":"NB Deicara","leaguePoints":380,"rank":"I","wins":191,"losses":152,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29737467","playerOrTeamName":"EGN Linkz","leaguePoints":578,"rank":"I","wins":473,"losses":429,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"69868142","playerOrTeamName":"Diabolical PoE","leaguePoints":662,"rank":"I","wins":148,"losses":100,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36467479","playerOrTeamName":"Sertuss","leaguePoints":439,"rank":"I","wins":519,"losses":478,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19509695","playerOrTeamName":"IIlllllIIIIllll","leaguePoints":456,"rank":"I","wins":218,"losses":170,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"74067492","playerOrTeamName":"Tea","leaguePoints":724,"rank":"I","wins":322,"losses":272,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19368439","playerOrTeamName":"Llyth","leaguePoints":486,"rank":"I","wins":180,"losses":138,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25172606","playerOrTeamName":"SPRATTELICIOUS","leaguePoints":433,"rank":"I","wins":445,"losses":402,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"21532314","playerOrTeamName":"ASUS Ninten","leaguePoints":415,"rank":"I","wins":395,"losses":346,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"23291419","playerOrTeamName":"GolemPichaga","leaguePoints":394,"rank":"I","wins":300,"losses":248,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21166379","playerOrTeamName":"Coinflip Jungler","leaguePoints":399,"rank":"I","wins":170,"losses":134,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42176118","playerOrTeamName":"GIA HeaQ","leaguePoints":497,"rank":"I","wins":326,"losses":286,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94987702","playerOrTeamName":"thickpaper","leaguePoints":583,"rank":"I","wins":399,"losses":320,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22587236","playerOrTeamName":"ZaZee","leaguePoints":434,"rank":"I","wins":181,"losses":140,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85749594","playerOrTeamName":"Polish Talent","leaguePoints":685,"rank":"I","wins":154,"losses":101,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"41521265","playerOrTeamName":"Konektivˆ","leaguePoints":709,"rank":"I","wins":275,"losses":226,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70071834","playerOrTeamName":"XDSMILEYs6 iwnl","leaguePoints":403,"rank":"I","wins":121,"losses":76,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33037228","playerOrTeamName":"ROCCAT Treatz","leaguePoints":458,"rank":"I","wins":246,"losses":213,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22103886","playerOrTeamName":"SEDRIONz","leaguePoints":654,"rank":"I","wins":285,"losses":226,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"38515770","playerOrTeamName":"Personal Growth","leaguePoints":559,"rank":"I","wins":265,"losses":215,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97607448","playerOrTeamName":"Can you Stop","leaguePoints":820,"rank":"I","wins":191,"losses":117,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19538899","playerOrTeamName":"PSG Steve","leaguePoints":758,"rank":"I","wins":514,"losses":464,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"95927411","playerOrTeamName":"MooJin","leaguePoints":901,"rank":"I","wins":179,"losses":103,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42287489","playerOrTeamName":"EGN Silveren","leaguePoints":391,"rank":"I","wins":589,"losses":557,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21800660","playerOrTeamName":"tri poloski 123","leaguePoints":469,"rank":"I","wins":320,"losses":278,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28254456","playerOrTeamName":"jJenax L9","leaguePoints":708,"rank":"I","wins":304,"losses":254,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97668760","playerOrTeamName":"BKN selfmademan","leaguePoints":663,"rank":"I","wins":136,"losses":64,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29912050","playerOrTeamName":"MRDS Mykilu","leaguePoints":349,"rank":"I","wins":532,"losses":498,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20610206","playerOrTeamName":"noway2u","leaguePoints":454,"rank":"I","wins":135,"losses":95,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20605205","playerOrTeamName":"FNC Amazingx","leaguePoints":397,"rank":"I","wins":424,"losses":393,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"78377080","playerOrTeamName":"the silent inter","leaguePoints":434,"rank":"I","wins":424,"losses":365,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86259309","playerOrTeamName":"SOLOQ IS USEFULL","leaguePoints":506,"rank":"I","wins":164,"losses":123,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"32131358","playerOrTeamName":"Crownsh0t","leaguePoints":688,"rank":"I","wins":353,"losses":302,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31500285","playerOrTeamName":"ASUS Sánchez","leaguePoints":418,"rank":"I","wins":334,"losses":291,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21326641","playerOrTeamName":"Prebot","leaguePoints":393,"rank":"I","wins":241,"losses":209,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23218947","playerOrTeamName":"Milicaa","leaguePoints":476,"rank":"I","wins":178,"losses":137,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95166906","playerOrTeamName":"Most Deaths TCL","leaguePoints":478,"rank":"I","wins":172,"losses":138,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20039957","playerOrTeamName":"x SevenArmy x","leaguePoints":410,"rank":"I","wins":130,"losses":64,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"21729191","playerOrTeamName":"Lexip","leaguePoints":610,"rank":"I","wins":163,"losses":104,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"18979052","playerOrTeamName":"strikerthefbest","leaguePoints":427,"rank":"I","wins":271,"losses":224,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"80367072","playerOrTeamName":"Special","leaguePoints":384,"rank":"I","wins":224,"losses":184,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"60814394","playerOrTeamName":"eMz Siler","leaguePoints":443,"rank":"I","wins":332,"losses":290,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37067072","playerOrTeamName":"Junglebøøk","leaguePoints":715,"rank":"I","wins":217,"losses":160,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20053332","playerOrTeamName":"Venzër","leaguePoints":672,"rank":"I","wins":322,"losses":273,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23462942","playerOrTeamName":"PixelPlaysYasuo","leaguePoints":532,"rank":"I","wins":103,"losses":37,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"19652383","playerOrTeamName":"H0lyPhoenix","leaguePoints":428,"rank":"I","wins":293,"losses":254,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23436923","playerOrTeamName":"MSF PowerOfEvil","leaguePoints":830,"rank":"I","wins":160,"losses":106,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20094017","playerOrTeamName":"FlNDFlNN","leaguePoints":422,"rank":"I","wins":593,"losses":543,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"19240537","playerOrTeamName":"Kektz","leaguePoints":552,"rank":"I","wins":263,"losses":221,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20815637","playerOrTeamName":"shifter1","leaguePoints":566,"rank":"I","wins":528,"losses":491,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"65227634","playerOrTeamName":"IAimToMisbehave","leaguePoints":548,"rank":"I","wins":316,"losses":270,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46088149","playerOrTeamName":"Don Arts","leaguePoints":472,"rank":"I","wins":471,"losses":425,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33387922","playerOrTeamName":"WL YOW","leaguePoints":487,"rank":"I","wins":165,"losses":120,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"19828997","playerOrTeamName":"rsgsdfggfhdfg","leaguePoints":338,"rank":"I","wins":602,"losses":565,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22743897","playerOrTeamName":"lolhoix","leaguePoints":548,"rank":"I","wins":381,"losses":335,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20160611","playerOrTeamName":"Bang fanb0y","leaguePoints":800,"rank":"I","wins":330,"losses":271,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43747714","playerOrTeamName":"xPriskornet","leaguePoints":403,"rank":"I","wins":198,"losses":164,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21714748","playerOrTeamName":"Dana 60 gs babay","leaguePoints":452,"rank":"I","wins":321,"losses":285,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"26316897","playerOrTeamName":"UOL Vizicsacsi","leaguePoints":897,"rank":"I","wins":179,"losses":125,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28944895","playerOrTeamName":"beansu","leaguePoints":466,"rank":"I","wins":504,"losses":462,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"61149024","playerOrTeamName":"uumut","leaguePoints":394,"rank":"I","wins":372,"losses":322,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22709393","playerOrTeamName":"GIA Minitroupax","leaguePoints":800,"rank":"I","wins":389,"losses":330,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34428877","playerOrTeamName":"Bwipo","leaguePoints":1009,"rank":"I","wins":204,"losses":142,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21112717","playerOrTeamName":"WhiteKnight108","leaguePoints":894,"rank":"I","wins":498,"losses":437,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19603230","playerOrTeamName":"lur1keen","leaguePoints":1044,"rank":"I","wins":321,"losses":262,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27492090","playerOrTeamName":"PGM JaVaaa","leaguePoints":440,"rank":"I","wins":261,"losses":215,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"29718131","playerOrTeamName":"NB Anthrax","leaguePoints":358,"rank":"I","wins":243,"losses":198,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22082647","playerOrTeamName":"Akutsune","leaguePoints":495,"rank":"I","wins":201,"losses":162,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88957526","playerOrTeamName":"Sàviour","leaguePoints":484,"rank":"I","wins":439,"losses":392,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"34498916","playerOrTeamName":"ChEnWE1","leaguePoints":372,"rank":"I","wins":295,"losses":243,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"53668796","playerOrTeamName":"Alderiate","leaguePoints":379,"rank":"I","wins":291,"losses":247,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"81198200","playerOrTeamName":"BiggerlsBetter","leaguePoints":582,"rank":"I","wins":191,"losses":141,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44246835","playerOrTeamName":"Mighty Holy Cow","leaguePoints":403,"rank":"I","wins":207,"losses":161,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97658703","playerOrTeamName":"by oneself","leaguePoints":718,"rank":"I","wins":208,"losses":134,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88948765","playerOrTeamName":"Its Ventair","leaguePoints":413,"rank":"I","wins":259,"losses":210,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19045442","playerOrTeamName":"SupportingIsHard","leaguePoints":455,"rank":"I","wins":557,"losses":518,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true}]}
@@ -0,0 +1 @@
1
+ {"name":"Zilean's Urfriders","tier":"MASTER","queue":"RANKED_SOLO_5x5","entries":[{"playerOrTeamId":"35453683","playerOrTeamName":"GER Hunter","leaguePoints":9,"rank":"I","wins":147,"losses":112,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27296984","playerOrTeamName":"Tarson","leaguePoints":289,"rank":"I","wins":106,"losses":59,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"91907282","playerOrTeamName":"Cute Peanut","leaguePoints":0,"rank":"I","wins":391,"losses":335,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"95587618","playerOrTeamName":"Spotnet Exile ","leaguePoints":0,"rank":"I","wins":416,"losses":366,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23247536","playerOrTeamName":"nigelf","leaguePoints":275,"rank":"I","wins":369,"losses":325,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"39650998","playerOrTeamName":"Papale Sapot","leaguePoints":310,"rank":"I","wins":342,"losses":304,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"400320","playerOrTeamName":"OG Yurner0s","leaguePoints":325,"rank":"I","wins":205,"losses":166,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24838086","playerOrTeamName":"SoulGenerals","leaguePoints":236,"rank":"I","wins":323,"losses":266,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"22426249","playerOrTeamName":"Betä","leaguePoints":29,"rank":"I","wins":125,"losses":94,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27339605","playerOrTeamName":"Logan Reese","leaguePoints":0,"rank":"I","wins":273,"losses":249,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19780940","playerOrTeamName":"lIIlllIIIlll","leaguePoints":46,"rank":"I","wins":141,"losses":110,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24850348","playerOrTeamName":"IT FG HeJiaMinCN","leaguePoints":0,"rank":"I","wins":383,"losses":311,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"62587431","playerOrTeamName":"Tiberian","leaguePoints":153,"rank":"I","wins":300,"losses":268,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20244156","playerOrTeamName":"WE ALL DIE IRL","leaguePoints":162,"rank":"I","wins":180,"losses":153,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"58727215","playerOrTeamName":"FearDrúg","leaguePoints":120,"rank":"I","wins":112,"losses":70,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21987743","playerOrTeamName":"Xander Synth","leaguePoints":72,"rank":"I","wins":64,"losses":38,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"32306792","playerOrTeamName":"HELL Faust","leaguePoints":290,"rank":"I","wins":269,"losses":191,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21920858","playerOrTeamName":"Humans kt","leaguePoints":169,"rank":"I","wins":237,"losses":204,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22275693","playerOrTeamName":"sign of the time","leaguePoints":38,"rank":"I","wins":250,"losses":221,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20429674","playerOrTeamName":"Irode","leaguePoints":92,"rank":"I","wins":333,"losses":309,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19515504","playerOrTeamName":"xPrískornet","leaguePoints":68,"rank":"I","wins":142,"losses":109,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"48845007","playerOrTeamName":"DJT 1ns3ct","leaguePoints":84,"rank":"I","wins":152,"losses":124,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21367378","playerOrTeamName":"MontageMoment","leaguePoints":79,"rank":"I","wins":167,"losses":132,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31942165","playerOrTeamName":"A Fénec Foxx","leaguePoints":0,"rank":"I","wins":142,"losses":111,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31218262","playerOrTeamName":"Wysek Elisek","leaguePoints":24,"rank":"I","wins":703,"losses":692,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24547741","playerOrTeamName":"FREE PAMDAHBYSV3","leaguePoints":35,"rank":"I","wins":257,"losses":227,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24376999","playerOrTeamName":"Ray VN","leaguePoints":0,"rank":"I","wins":124,"losses":85,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"72882507","playerOrTeamName":"lsaacMikeHawk","leaguePoints":104,"rank":"I","wins":296,"losses":261,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"44422005","playerOrTeamName":"Tolerant","leaguePoints":64,"rank":"I","wins":368,"losses":339,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20410096","playerOrTeamName":"Låt det bara skè","leaguePoints":240,"rank":"I","wins":194,"losses":156,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44809687","playerOrTeamName":"Talonted Jungler","leaguePoints":263,"rank":"I","wins":154,"losses":116,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20667772","playerOrTeamName":"D3RK1NG155","leaguePoints":165,"rank":"I","wins":455,"losses":430,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28160866","playerOrTeamName":"Kananee","leaguePoints":93,"rank":"I","wins":331,"losses":302,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"64259666","playerOrTeamName":"404 yhAn","leaguePoints":0,"rank":"I","wins":128,"losses":104,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"43729955","playerOrTeamName":"PGM DuaL","leaguePoints":337,"rank":"I","wins":325,"losses":282,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"26656911","playerOrTeamName":"Emtest","leaguePoints":273,"rank":"I","wins":362,"losses":333,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24235623","playerOrTeamName":"Fabiqt","leaguePoints":150,"rank":"I","wins":176,"losses":131,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20008579","playerOrTeamName":"Supportive Lion","leaguePoints":290,"rank":"I","wins":448,"losses":407,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20405328","playerOrTeamName":"Daddy Mukza","leaguePoints":24,"rank":"I","wins":179,"losses":151,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22567543","playerOrTeamName":"Dragdar","leaguePoints":12,"rank":"I","wins":464,"losses":428,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19210645","playerOrTeamName":"Grosbill Sharkk","leaguePoints":37,"rank":"I","wins":254,"losses":233,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"58027062","playerOrTeamName":"Skaype","leaguePoints":92,"rank":"I","wins":357,"losses":325,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22659867","playerOrTeamName":"FNC Klaj","leaguePoints":110,"rank":"I","wins":323,"losses":299,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"44916966","playerOrTeamName":"ilovecheesburger","leaguePoints":238,"rank":"I","wins":169,"losses":114,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24111040","playerOrTeamName":"NB Conjo","leaguePoints":132,"rank":"I","wins":159,"losses":131,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"72517055","playerOrTeamName":"The Salt","leaguePoints":90,"rank":"I","wins":275,"losses":237,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21038122","playerOrTeamName":"grebllaH xelA","leaguePoints":82,"rank":"I","wins":211,"losses":186,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"38719391","playerOrTeamName":"Lurox1","leaguePoints":198,"rank":"I","wins":389,"losses":355,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20264402","playerOrTeamName":"2018512026","leaguePoints":190,"rank":"I","wins":104,"losses":65,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20522195","playerOrTeamName":"UG Monstrob","leaguePoints":78,"rank":"I","wins":306,"losses":272,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"27045912","playerOrTeamName":"MM Inition","leaguePoints":111,"rank":"I","wins":317,"losses":295,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"18998522","playerOrTeamName":"GoB GG","leaguePoints":317,"rank":"I","wins":453,"losses":411,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70797806","playerOrTeamName":"SherrifFreaky64","leaguePoints":24,"rank":"I","wins":254,"losses":202,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"372983","playerOrTeamName":"XAXAXAAXAXAX","leaguePoints":289,"rank":"I","wins":196,"losses":155,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20133522","playerOrTeamName":"Edemsuh","leaguePoints":313,"rank":"I","wins":174,"losses":138,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"19698494","playerOrTeamName":"I HOPE TOP WINS","leaguePoints":76,"rank":"I","wins":288,"losses":259,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27618624","playerOrTeamName":"EDUCATIONDEMERDE","leaguePoints":231,"rank":"I","wins":384,"losses":332,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29213073","playerOrTeamName":"Daddy Fred","leaguePoints":42,"rank":"I","wins":291,"losses":254,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"32048604","playerOrTeamName":"Snóópy","leaguePoints":0,"rank":"I","wins":94,"losses":56,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"51917978","playerOrTeamName":"N0j0y","leaguePoints":113,"rank":"I","wins":231,"losses":191,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95178066","playerOrTeamName":"NB Dada","leaguePoints":151,"rank":"I","wins":237,"losses":179,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"85427379","playerOrTeamName":"TIMETOSHARE","leaguePoints":33,"rank":"I","wins":161,"losses":134,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25550743","playerOrTeamName":"Solo Selva","leaguePoints":4,"rank":"I","wins":334,"losses":302,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23548918","playerOrTeamName":"Innaxe the God","leaguePoints":156,"rank":"I","wins":284,"losses":254,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20428748","playerOrTeamName":"WL Neylan","leaguePoints":345,"rank":"I","wins":364,"losses":325,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34569439","playerOrTeamName":"JSA DeD","leaguePoints":170,"rank":"I","wins":293,"losses":260,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34428433","playerOrTeamName":"ASUS RafaL0L","leaguePoints":248,"rank":"I","wins":330,"losses":305,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"32188888","playerOrTeamName":"Raxxo","leaguePoints":62,"rank":"I","wins":454,"losses":425,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19253398","playerOrTeamName":"Reval","leaguePoints":0,"rank":"I","wins":224,"losses":197,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23873017","playerOrTeamName":"El Poni","leaguePoints":0,"rank":"I","wins":289,"losses":249,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95440913","playerOrTeamName":"Son of Arphan","leaguePoints":184,"rank":"I","wins":126,"losses":69,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19812932","playerOrTeamName":"Choupa ","leaguePoints":100,"rank":"I","wins":278,"losses":251,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86950538","playerOrTeamName":"Gusuo","leaguePoints":280,"rank":"I","wins":304,"losses":229,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33626861","playerOrTeamName":"used to be young","leaguePoints":101,"rank":"I","wins":77,"losses":44,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"22329896","playerOrTeamName":"SVander04","leaguePoints":205,"rank":"I","wins":372,"losses":341,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"28547984","playerOrTeamName":"IlIIIIIlIIIIIIII","leaguePoints":228,"rank":"I","wins":85,"losses":43,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88628316","playerOrTeamName":"Rum and Regret","leaguePoints":34,"rank":"I","wins":263,"losses":228,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"72007339","playerOrTeamName":"abzorber","leaguePoints":67,"rank":"I","wins":190,"losses":153,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"97816793","playerOrTeamName":"RiverSanzu","leaguePoints":78,"rank":"I","wins":262,"losses":199,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43044733","playerOrTeamName":"Zaveid","leaguePoints":0,"rank":"I","wins":181,"losses":158,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19275213","playerOrTeamName":"Broeki","leaguePoints":204,"rank":"I","wins":552,"losses":515,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22154740","playerOrTeamName":"I play Ambulance","leaguePoints":11,"rank":"I","wins":367,"losses":337,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70457274","playerOrTeamName":"Kehvo","leaguePoints":184,"rank":"I","wins":274,"losses":238,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"19889228","playerOrTeamName":"GO Targamas","leaguePoints":324,"rank":"I","wins":375,"losses":349,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"88957459","playerOrTeamName":"1351394","leaguePoints":155,"rank":"I","wins":206,"losses":145,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19452398","playerOrTeamName":"Luukk","leaguePoints":63,"rank":"I","wins":394,"losses":372,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"96308906","playerOrTeamName":"Bloodyhits v2","leaguePoints":0,"rank":"I","wins":138,"losses":82,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"33219940","playerOrTeamName":"itsCORTEZ","leaguePoints":137,"rank":"I","wins":313,"losses":277,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21304689","playerOrTeamName":"Marksman bullet","leaguePoints":0,"rank":"I","wins":379,"losses":357,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"58008561","playerOrTeamName":"Nexusery","leaguePoints":21,"rank":"I","wins":251,"losses":225,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19468950","playerOrTeamName":"GrosBill Fraid","leaguePoints":297,"rank":"I","wins":285,"losses":250,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24132609","playerOrTeamName":"FNC Pandar","leaguePoints":185,"rank":"I","wins":198,"losses":166,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"45108989","playerOrTeamName":"Dragane","leaguePoints":0,"rank":"I","wins":324,"losses":298,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85447366","playerOrTeamName":"Exorcistx","leaguePoints":17,"rank":"I","wins":67,"losses":42,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"74406","playerOrTeamName":"BKN Falco","leaguePoints":251,"rank":"I","wins":305,"losses":272,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86757717","playerOrTeamName":"Grandmá Swag","leaguePoints":0,"rank":"I","wins":304,"losses":278,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24258347","playerOrTeamName":"Death Coill","leaguePoints":41,"rank":"I","wins":614,"losses":590,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19833744","playerOrTeamName":"z d n E ","leaguePoints":190,"rank":"I","wins":543,"losses":519,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36029612","playerOrTeamName":"JustlnTime","leaguePoints":311,"rank":"I","wins":256,"losses":218,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20048604","playerOrTeamName":"Prièst","leaguePoints":17,"rank":"I","wins":361,"losses":324,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23330771","playerOrTeamName":"PGM Kroghsen","leaguePoints":197,"rank":"I","wins":309,"losses":271,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30811300","playerOrTeamName":"meân","leaguePoints":285,"rank":"I","wins":430,"losses":380,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20265021","playerOrTeamName":"Whyté","leaguePoints":64,"rank":"I","wins":288,"losses":270,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"77217087","playerOrTeamName":"Watch My Puppets","leaguePoints":216,"rank":"I","wins":399,"losses":359,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95876997","playerOrTeamName":"fan øf myself","leaguePoints":58,"rank":"I","wins":289,"losses":251,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19422663","playerOrTeamName":"Mid lllll","leaguePoints":138,"rank":"I","wins":207,"losses":140,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19084823","playerOrTeamName":"FREE PAM DAHBYS","leaguePoints":91,"rank":"I","wins":165,"losses":89,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20468231","playerOrTeamName":"BurningFate","leaguePoints":0,"rank":"I","wins":143,"losses":69,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"95136908","playerOrTeamName":"casual jungler","leaguePoints":51,"rank":"I","wins":123,"losses":117,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"97277462","playerOrTeamName":"Haydal","leaguePoints":18,"rank":"I","wins":139,"losses":94,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"23026014","playerOrTeamName":"PAM DarkSide","leaguePoints":226,"rank":"I","wins":226,"losses":194,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37933039","playerOrTeamName":"175cm 71kg 19cm","leaguePoints":76,"rank":"I","wins":183,"losses":154,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22925602","playerOrTeamName":"Kaaaaaakan","leaguePoints":173,"rank":"I","wins":482,"losses":444,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35417098","playerOrTeamName":"PGM Chronos","leaguePoints":0,"rank":"I","wins":219,"losses":198,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19888536","playerOrTeamName":"Quinncidence","leaguePoints":208,"rank":"I","wins":331,"losses":297,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19981184","playerOrTeamName":"NxG Sketch","leaguePoints":38,"rank":"I","wins":141,"losses":110,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"93308575","playerOrTeamName":"Jean Balthazard","leaguePoints":18,"rank":"I","wins":257,"losses":172,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22269282","playerOrTeamName":"Rx Dye","leaguePoints":212,"rank":"I","wins":440,"losses":408,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71787249","playerOrTeamName":"Immortal MGX","leaguePoints":117,"rank":"I","wins":381,"losses":345,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"40928922","playerOrTeamName":"Nu eta da","leaguePoints":93,"rank":"I","wins":391,"losses":354,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"22477222","playerOrTeamName":"mPiz","leaguePoints":64,"rank":"I","wins":438,"losses":401,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24834259","playerOrTeamName":"Pytangelus","leaguePoints":112,"rank":"I","wins":503,"losses":466,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21384952","playerOrTeamName":"Shubber","leaguePoints":82,"rank":"I","wins":284,"losses":253,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22395987","playerOrTeamName":"Bl1ce","leaguePoints":155,"rank":"I","wins":694,"losses":658,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"96017138","playerOrTeamName":"VIT AoD","leaguePoints":111,"rank":"I","wins":108,"losses":80,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"48988035","playerOrTeamName":"íÎì Ted0che íÎì","leaguePoints":132,"rank":"I","wins":187,"losses":150,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"29401296","playerOrTeamName":"AloisNL","leaguePoints":0,"rank":"I","wins":427,"losses":374,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"27651481","playerOrTeamName":"ZeekeyTV","leaguePoints":0,"rank":"I","wins":425,"losses":401,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94788731","playerOrTeamName":"ROCCAT Wadid","leaguePoints":96,"rank":"I","wins":224,"losses":202,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21843450","playerOrTeamName":"abrikos","leaguePoints":39,"rank":"I","wins":272,"losses":251,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21732658","playerOrTeamName":"JSA Max","leaguePoints":90,"rank":"I","wins":302,"losses":260,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"22869029","playerOrTeamName":"Readzer","leaguePoints":18,"rank":"I","wins":57,"losses":15,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31470287","playerOrTeamName":"PAM Neuro","leaguePoints":33,"rank":"I","wins":436,"losses":407,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21071845","playerOrTeamName":"H2K Jankos","leaguePoints":102,"rank":"I","wins":131,"losses":82,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44248954","playerOrTeamName":"Stefan Nikolić","leaguePoints":245,"rank":"I","wins":151,"losses":120,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"206429","playerOrTeamName":"VCF ADRYH","leaguePoints":361,"rank":"I","wins":202,"losses":165,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21667309","playerOrTeamName":"Chocolatechip1","leaguePoints":184,"rank":"I","wins":159,"losses":128,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"40135517","playerOrTeamName":"Soz Purefect","leaguePoints":193,"rank":"I","wins":127,"losses":93,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"76690001","playerOrTeamName":"Hide on smerig","leaguePoints":100,"rank":"I","wins":65,"losses":18,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"37047002","playerOrTeamName":"RAT IRL L9","leaguePoints":175,"rank":"I","wins":243,"losses":213,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"84676869","playerOrTeamName":"Rèdöne","leaguePoints":124,"rank":"I","wins":506,"losses":475,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20640228","playerOrTeamName":"RIÐÐEM","leaguePoints":233,"rank":"I","wins":182,"losses":151,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85797041","playerOrTeamName":"Pilter v2","leaguePoints":63,"rank":"I","wins":197,"losses":145,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"61217165","playerOrTeamName":"Rofocalé","leaguePoints":17,"rank":"I","wins":227,"losses":192,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34002169","playerOrTeamName":"CamachoElMacho","leaguePoints":32,"rank":"I","wins":211,"losses":186,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22331014","playerOrTeamName":"Gistick","leaguePoints":259,"rank":"I","wins":157,"losses":124,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"28887345","playerOrTeamName":"Eden Fox","leaguePoints":162,"rank":"I","wins":244,"losses":215,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24890625","playerOrTeamName":"OvO OwO OvO OwO ","leaguePoints":55,"rank":"I","wins":94,"losses":66,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"19725816","playerOrTeamName":"DoubleAiM","leaguePoints":15,"rank":"I","wins":307,"losses":284,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"69446897","playerOrTeamName":"k0koo","leaguePoints":291,"rank":"I","wins":248,"losses":213,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"28566959","playerOrTeamName":"BlackSpeck","leaguePoints":0,"rank":"I","wins":159,"losses":133,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23972191","playerOrTeamName":"Xony","leaguePoints":1,"rank":"I","wins":444,"losses":413,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"91577238","playerOrTeamName":"JSA BOSS","leaguePoints":176,"rank":"I","wins":190,"losses":157,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"19378008","playerOrTeamName":"dannxor","leaguePoints":79,"rank":"I","wins":276,"losses":238,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"70660853","playerOrTeamName":"Flauschieee","leaguePoints":0,"rank":"I","wins":103,"losses":56,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"84927679","playerOrTeamName":"HIDE ON CLÒWN","leaguePoints":0,"rank":"I","wins":85,"losses":55,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22062573","playerOrTeamName":"ROG Darlik","leaguePoints":99,"rank":"I","wins":419,"losses":390,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22029962","playerOrTeamName":"kapetanios drake","leaguePoints":209,"rank":"I","wins":556,"losses":506,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20318609","playerOrTeamName":"K1CK Reat1vo","leaguePoints":150,"rank":"I","wins":401,"losses":369,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"19846786","playerOrTeamName":"MSF Yuuki60","leaguePoints":145,"rank":"I","wins":319,"losses":289,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46017532","playerOrTeamName":"lekcycc aka boss","leaguePoints":139,"rank":"I","wins":485,"losses":437,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"49757367","playerOrTeamName":"Brigaaado","leaguePoints":86,"rank":"I","wins":308,"losses":277,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"32060914","playerOrTeamName":"Cornflakex","leaguePoints":0,"rank":"I","wins":559,"losses":540,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"51878342","playerOrTeamName":"LegenderRengarYT","leaguePoints":37,"rank":"I","wins":271,"losses":246,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"48628389","playerOrTeamName":"Julbu","leaguePoints":56,"rank":"I","wins":315,"losses":283,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20328469","playerOrTeamName":"say it Meike","leaguePoints":30,"rank":"I","wins":386,"losses":361,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25548161","playerOrTeamName":"NewSeasonNewMeme","leaguePoints":153,"rank":"I","wins":143,"losses":109,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22696797","playerOrTeamName":"MTC Garguentua","leaguePoints":203,"rank":"I","wins":306,"losses":273,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"18995872","playerOrTeamName":"SPIN kev1nTV","leaguePoints":126,"rank":"I","wins":297,"losses":272,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25948857","playerOrTeamName":"insecure player","leaguePoints":171,"rank":"I","wins":361,"losses":330,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25810839","playerOrTeamName":"lukyxu","leaguePoints":9,"rank":"I","wins":229,"losses":206,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"34316842","playerOrTeamName":"Esta es mi main","leaguePoints":35,"rank":"I","wins":364,"losses":332,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19735704","playerOrTeamName":"Lallen the fikon","leaguePoints":17,"rank":"I","wins":508,"losses":478,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20410484","playerOrTeamName":"Regresé","leaguePoints":0,"rank":"I","wins":61,"losses":41,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19798647","playerOrTeamName":"Kîríto","leaguePoints":168,"rank":"I","wins":263,"losses":231,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29237301","playerOrTeamName":"Colazor","leaguePoints":30,"rank":"I","wins":154,"losses":131,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94016825","playerOrTeamName":"REKTIV123","leaguePoints":17,"rank":"I","wins":223,"losses":197,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34387108","playerOrTeamName":"pM Remix","leaguePoints":0,"rank":"I","wins":592,"losses":560,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19581221","playerOrTeamName":"Hi lm fine","leaguePoints":0,"rank":"I","wins":101,"losses":69,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20493700","playerOrTeamName":"RBT Akalos","leaguePoints":19,"rank":"I","wins":262,"losses":237,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36617720","playerOrTeamName":"udaQ","leaguePoints":18,"rank":"I","wins":197,"losses":172,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"89206857","playerOrTeamName":"Diamond 1 PIayer","leaguePoints":9,"rank":"I","wins":272,"losses":248,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19350133","playerOrTeamName":"ROCCAT XoYnUzi","leaguePoints":218,"rank":"I","wins":509,"losses":472,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22869339","playerOrTeamName":"Hædhunter","leaguePoints":50,"rank":"I","wins":505,"losses":464,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21653685","playerOrTeamName":"SirNukesAIot","leaguePoints":45,"rank":"I","wins":205,"losses":178,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21958690","playerOrTeamName":"Reevcrona","leaguePoints":190,"rank":"I","wins":433,"losses":406,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20747228","playerOrTeamName":"AeQ bigfat","leaguePoints":338,"rank":"I","wins":221,"losses":194,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"48570579","playerOrTeamName":"Preboss","leaguePoints":85,"rank":"I","wins":168,"losses":135,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22126727","playerOrTeamName":"Matislaw","leaguePoints":174,"rank":"I","wins":255,"losses":226,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24049987","playerOrTeamName":"Senpai Silphi","leaguePoints":78,"rank":"I","wins":174,"losses":145,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"32772336","playerOrTeamName":"TeS abSenT","leaguePoints":34,"rank":"I","wins":467,"losses":444,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25376913","playerOrTeamName":"ShoMG","leaguePoints":147,"rank":"I","wins":204,"losses":173,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19255309","playerOrTeamName":"Hiro Hai ","leaguePoints":0,"rank":"I","wins":207,"losses":181,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"32579524","playerOrTeamName":"Storify","leaguePoints":0,"rank":"I","wins":90,"losses":15,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20713292","playerOrTeamName":"Linops","leaguePoints":73,"rank":"I","wins":259,"losses":237,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"95229686","playerOrTeamName":"MusTi hehe","leaguePoints":62,"rank":"I","wins":139,"losses":87,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29522003","playerOrTeamName":"SinshoOo","leaguePoints":11,"rank":"I","wins":184,"losses":150,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19623069","playerOrTeamName":"Freestyler1337","leaguePoints":142,"rank":"I","wins":192,"losses":154,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"41728789","playerOrTeamName":"MMMECHANICS","leaguePoints":62,"rank":"I","wins":181,"losses":104,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"20782709","playerOrTeamName":"zytán","leaguePoints":196,"rank":"I","wins":258,"losses":222,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"58349273","playerOrTeamName":"risdrengen","leaguePoints":34,"rank":"I","wins":321,"losses":294,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46027300","playerOrTeamName":"Spotnet MoPato","leaguePoints":94,"rank":"I","wins":109,"losses":75,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"18994167","playerOrTeamName":"Phones","leaguePoints":28,"rank":"I","wins":150,"losses":129,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"44246793","playerOrTeamName":"BiggestDriveEU","leaguePoints":159,"rank":"I","wins":227,"losses":187,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25242288","playerOrTeamName":"1 2 Haferbrei","leaguePoints":32,"rank":"I","wins":404,"losses":379,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23952267","playerOrTeamName":"Bôlt","leaguePoints":18,"rank":"I","wins":456,"losses":425,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"79768938","playerOrTeamName":"SKT T1 Justice","leaguePoints":322,"rank":"I","wins":244,"losses":212,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"83638678","playerOrTeamName":"L flowgod","leaguePoints":259,"rank":"I","wins":251,"losses":214,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"40560749","playerOrTeamName":"Selfie iwnl","leaguePoints":298,"rank":"I","wins":160,"losses":126,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20900461","playerOrTeamName":"Zethlaw LFT","leaguePoints":50,"rank":"I","wins":288,"losses":258,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"45781015","playerOrTeamName":"xCharm","leaguePoints":62,"rank":"I","wins":145,"losses":117,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22101005","playerOrTeamName":"TT skupy","leaguePoints":156,"rank":"I","wins":225,"losses":194,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22206550","playerOrTeamName":"Abaks","leaguePoints":106,"rank":"I","wins":212,"losses":171,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"92787606","playerOrTeamName":"Suibh","leaguePoints":249,"rank":"I","wins":268,"losses":231,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36267363","playerOrTeamName":"Japaleno","leaguePoints":50,"rank":"I","wins":237,"losses":203,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42829492","playerOrTeamName":"HosaN","leaguePoints":326,"rank":"I","wins":498,"losses":461,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95206903","playerOrTeamName":"Food is improve","leaguePoints":30,"rank":"I","wins":90,"losses":69,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"72527589","playerOrTeamName":"TheBausffs","leaguePoints":38,"rank":"I","wins":147,"losses":121,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71687051","playerOrTeamName":"REM Discopal","leaguePoints":0,"rank":"I","wins":212,"losses":109,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42925758","playerOrTeamName":"ArKaDaTa","leaguePoints":0,"rank":"I","wins":162,"losses":132,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"58267469","playerOrTeamName":"IlilIlilIllilll","leaguePoints":107,"rank":"I","wins":365,"losses":329,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36807499","playerOrTeamName":"SkedenXD","leaguePoints":128,"rank":"I","wins":357,"losses":326,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"69372","playerOrTeamName":"Azra4TUNISIA","leaguePoints":32,"rank":"I","wins":505,"losses":495,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"88447423","playerOrTeamName":"000111000","leaguePoints":172,"rank":"I","wins":189,"losses":159,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"282453","playerOrTeamName":"Puki style","leaguePoints":74,"rank":"I","wins":276,"losses":249,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"19803630","playerOrTeamName":"Ámon Hen","leaguePoints":0,"rank":"I","wins":455,"losses":418,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"87050881","playerOrTeamName":"WILD BILLY ","leaguePoints":16,"rank":"I","wins":195,"losses":149,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"22633277","playerOrTeamName":"Yoppster","leaguePoints":111,"rank":"I","wins":352,"losses":326,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"35447275","playerOrTeamName":"Yasuneri","leaguePoints":291,"rank":"I","wins":123,"losses":71,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"39421937","playerOrTeamName":"sc2000","leaguePoints":204,"rank":"I","wins":335,"losses":297,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22667397","playerOrTeamName":"TinyKîwiCupCake","leaguePoints":139,"rank":"I","wins":171,"losses":126,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"68846306","playerOrTeamName":"babefaced","leaguePoints":234,"rank":"I","wins":179,"losses":147,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31558666","playerOrTeamName":"na na yeah","leaguePoints":242,"rank":"I","wins":206,"losses":171,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21302646","playerOrTeamName":"SKT T1 Effort1","leaguePoints":359,"rank":"I","wins":253,"losses":208,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"47077490","playerOrTeamName":"FengDere","leaguePoints":161,"rank":"I","wins":438,"losses":399,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30424386","playerOrTeamName":"Julor","leaguePoints":179,"rank":"I","wins":118,"losses":79,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21665092","playerOrTeamName":"Nisqyyy","leaguePoints":135,"rank":"I","wins":145,"losses":107,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"41247197","playerOrTeamName":"HUSKSUPPE","leaguePoints":371,"rank":"I","wins":368,"losses":329,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"20055884","playerOrTeamName":"RUNITDOWNT0P","leaguePoints":25,"rank":"I","wins":532,"losses":511,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"58057567","playerOrTeamName":"PAO Vrow","leaguePoints":215,"rank":"I","wins":728,"losses":700,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21500820","playerOrTeamName":"Delitto","leaguePoints":26,"rank":"I","wins":312,"losses":288,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22043009","playerOrTeamName":"Gvidas","leaguePoints":97,"rank":"I","wins":407,"losses":379,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42278386","playerOrTeamName":"Elwind","leaguePoints":71,"rank":"I","wins":421,"losses":378,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"32317725","playerOrTeamName":"Dillen","leaguePoints":21,"rank":"I","wins":230,"losses":198,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88386901","playerOrTeamName":"KADlR","leaguePoints":244,"rank":"I","wins":235,"losses":207,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35047682","playerOrTeamName":"Be the light","leaguePoints":384,"rank":"I","wins":402,"losses":363,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"27427030","playerOrTeamName":"Achu","leaguePoints":239,"rank":"I","wins":506,"losses":478,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70037375","playerOrTeamName":"AWH Trix","leaguePoints":80,"rank":"I","wins":189,"losses":157,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"84557369","playerOrTeamName":"MSF Hans sama2","leaguePoints":44,"rank":"I","wins":107,"losses":54,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19510509","playerOrTeamName":"Molyv","leaguePoints":0,"rank":"I","wins":131,"losses":100,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"20537397","playerOrTeamName":"Nardeus","leaguePoints":289,"rank":"I","wins":509,"losses":478,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"175843","playerOrTeamName":"INY4FACE V","leaguePoints":0,"rank":"I","wins":432,"losses":402,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"45963429","playerOrTeamName":"Plumbèr","leaguePoints":144,"rank":"I","wins":165,"losses":129,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"22107301","playerOrTeamName":"Guarding You","leaguePoints":273,"rank":"I","wins":354,"losses":324,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"49534099","playerOrTeamName":"Membuang Kosong","leaguePoints":19,"rank":"I","wins":224,"losses":193,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"51766354","playerOrTeamName":"RUR Lešnik","leaguePoints":76,"rank":"I","wins":86,"losses":35,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44738810","playerOrTeamName":"ROG Tiger","leaguePoints":197,"rank":"I","wins":284,"losses":257,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"90028860","playerOrTeamName":"osci owo","leaguePoints":129,"rank":"I","wins":520,"losses":496,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21681171","playerOrTeamName":"Wunderwear","leaguePoints":190,"rank":"I","wins":151,"losses":121,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24093040","playerOrTeamName":"Tazaku","leaguePoints":43,"rank":"I","wins":75,"losses":53,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"93197743","playerOrTeamName":"Rosset","leaguePoints":26,"rank":"I","wins":329,"losses":305,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23842678","playerOrTeamName":"Reeker Sεηραι","leaguePoints":9,"rank":"I","wins":159,"losses":127,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"26369760","playerOrTeamName":"a1000Le100Les","leaguePoints":213,"rank":"I","wins":181,"losses":138,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"19018066","playerOrTeamName":"shurikk","leaguePoints":0,"rank":"I","wins":149,"losses":96,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"86377408","playerOrTeamName":"BREü Gricék","leaguePoints":34,"rank":"I","wins":471,"losses":443,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"64086141","playerOrTeamName":"UKFAKERXD","leaguePoints":257,"rank":"I","wins":160,"losses":96,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"27635854","playerOrTeamName":"FTW Plasma Lemon","leaguePoints":77,"rank":"I","wins":480,"losses":446,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24387268","playerOrTeamName":"Slow thinker","leaguePoints":268,"rank":"I","wins":566,"losses":523,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"92977034","playerOrTeamName":"KRAKO","leaguePoints":138,"rank":"I","wins":257,"losses":163,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23927531","playerOrTeamName":"LLoncept","leaguePoints":81,"rank":"I","wins":217,"losses":183,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22731886","playerOrTeamName":"Föur","leaguePoints":314,"rank":"I","wins":186,"losses":148,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27284437","playerOrTeamName":"Daddy Jason ","leaguePoints":135,"rank":"I","wins":490,"losses":452,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20986911","playerOrTeamName":"Dimonko LFT","leaguePoints":0,"rank":"I","wins":96,"losses":74,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"41518117","playerOrTeamName":"Maxilol","leaguePoints":182,"rank":"I","wins":448,"losses":419,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33707181","playerOrTeamName":"Beasttt","leaguePoints":61,"rank":"I","wins":517,"losses":499,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22881724","playerOrTeamName":"Karthursis","leaguePoints":70,"rank":"I","wins":71,"losses":40,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20695428","playerOrTeamName":"DreamsComeTrue","leaguePoints":364,"rank":"I","wins":140,"losses":95,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"50938486","playerOrTeamName":"NobCake","leaguePoints":372,"rank":"I","wins":118,"losses":77,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"61305439","playerOrTeamName":"Kubsar","leaguePoints":0,"rank":"I","wins":362,"losses":234,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21999355","playerOrTeamName":"Exileh","leaguePoints":153,"rank":"I","wins":317,"losses":296,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"57316908","playerOrTeamName":"league of legnds","leaguePoints":70,"rank":"I","wins":292,"losses":258,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22565154","playerOrTeamName":"Eberkozak","leaguePoints":252,"rank":"I","wins":522,"losses":485,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19382373","playerOrTeamName":"AvaIon","leaguePoints":93,"rank":"I","wins":549,"losses":531,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"23717140","playerOrTeamName":"KGN Woolite","leaguePoints":116,"rank":"I","wins":184,"losses":152,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85987189","playerOrTeamName":"Kirei smurfer","leaguePoints":284,"rank":"I","wins":191,"losses":161,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27993204","playerOrTeamName":"Incore","leaguePoints":57,"rank":"I","wins":117,"losses":81,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"27549186","playerOrTeamName":"Tolkin I","leaguePoints":75,"rank":"I","wins":289,"losses":263,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27491768","playerOrTeamName":"iMKroky","leaguePoints":44,"rank":"I","wins":195,"losses":166,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70027323","playerOrTeamName":"ooviserga","leaguePoints":244,"rank":"I","wins":399,"losses":356,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44746989","playerOrTeamName":"HAlL TO THE KlNG","leaguePoints":231,"rank":"I","wins":318,"losses":290,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"75637100","playerOrTeamName":"Vajo","leaguePoints":0,"rank":"I","wins":125,"losses":68,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"97618266","playerOrTeamName":"Moon Woman","leaguePoints":0,"rank":"I","wins":147,"losses":113,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"82026990","playerOrTeamName":"stealth is aids","leaguePoints":0,"rank":"I","wins":206,"losses":176,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"40966811","playerOrTeamName":"BW TheKinq","leaguePoints":43,"rank":"I","wins":412,"losses":388,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"41579202","playerOrTeamName":"OP Shadòw","leaguePoints":0,"rank":"I","wins":427,"losses":391,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24445896","playerOrTeamName":"liljang","leaguePoints":59,"rank":"I","wins":307,"losses":274,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23029540","playerOrTeamName":"Only 151 Pokemon","leaguePoints":0,"rank":"I","wins":641,"losses":607,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"38568427","playerOrTeamName":"R3V MechaNics","leaguePoints":16,"rank":"I","wins":381,"losses":339,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71238349","playerOrTeamName":"this is a game","leaguePoints":40,"rank":"I","wins":201,"losses":168,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"29409549","playerOrTeamName":"King Lekkerding","leaguePoints":89,"rank":"I","wins":171,"losses":136,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34473908","playerOrTeamName":"Mon mari estMORT","leaguePoints":140,"rank":"I","wins":121,"losses":83,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19966804","playerOrTeamName":"Birdsexual","leaguePoints":235,"rank":"I","wins":203,"losses":164,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"26886928","playerOrTeamName":"Tvenyon","leaguePoints":141,"rank":"I","wins":67,"losses":40,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"87197288","playerOrTeamName":"ImpreSS1onGOD","leaguePoints":174,"rank":"I","wins":181,"losses":150,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27485514","playerOrTeamName":"LavaDoZ","leaguePoints":60,"rank":"I","wins":264,"losses":238,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35917998","playerOrTeamName":"ENSSSSS","leaguePoints":0,"rank":"I","wins":660,"losses":636,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"21573676","playerOrTeamName":"Sologesang","leaguePoints":247,"rank":"I","wins":216,"losses":173,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"44424442","playerOrTeamName":"NxG Brizz","leaguePoints":28,"rank":"I","wins":345,"losses":326,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"90810659","playerOrTeamName":"aTrueKhazix","leaguePoints":0,"rank":"I","wins":153,"losses":97,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29812698","playerOrTeamName":"K1CK Aziado","leaguePoints":180,"rank":"I","wins":223,"losses":193,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"96016857","playerOrTeamName":"drakedog11","leaguePoints":69,"rank":"I","wins":107,"losses":96,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21635793","playerOrTeamName":"Vxin OIdDriverDL","leaguePoints":252,"rank":"I","wins":98,"losses":40,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27361426","playerOrTeamName":"steeelbacks nose","leaguePoints":368,"rank":"I","wins":211,"losses":157,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"58848462","playerOrTeamName":"Phantomles","leaguePoints":63,"rank":"I","wins":320,"losses":290,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21743592","playerOrTeamName":"Glandalf","leaguePoints":24,"rank":"I","wins":266,"losses":216,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"64118433","playerOrTeamName":"Knitting Ball","leaguePoints":77,"rank":"I","wins":130,"losses":99,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20389656","playerOrTeamName":"DD Immortal ","leaguePoints":10,"rank":"I","wins":161,"losses":122,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"36226932","playerOrTeamName":"Malian","leaguePoints":279,"rank":"I","wins":153,"losses":105,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"82357090","playerOrTeamName":"DêleV","leaguePoints":0,"rank":"I","wins":333,"losses":306,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"31027178","playerOrTeamName":"Nomanz","leaguePoints":302,"rank":"I","wins":392,"losses":353,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"97957023","playerOrTeamName":"IceT","leaguePoints":9,"rank":"I","wins":200,"losses":138,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21168433","playerOrTeamName":"Kálim","leaguePoints":25,"rank":"I","wins":177,"losses":138,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"38818651","playerOrTeamName":"RyanVanIlleGOMD","leaguePoints":0,"rank":"I","wins":284,"losses":258,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"39288823","playerOrTeamName":"MTC Linkkey","leaguePoints":137,"rank":"I","wins":132,"losses":98,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70037389","playerOrTeamName":"xPershing","leaguePoints":18,"rank":"I","wins":299,"losses":270,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22901273","playerOrTeamName":"Vicious Empire","leaguePoints":300,"rank":"I","wins":274,"losses":233,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"65806350","playerOrTeamName":"IIIIIIIlIII","leaguePoints":300,"rank":"I","wins":161,"losses":122,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97959349","playerOrTeamName":"hceznosaj270797","leaguePoints":37,"rank":"I","wins":109,"losses":58,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"98147612","playerOrTeamName":"Prince Rat","leaguePoints":15,"rank":"I","wins":71,"losses":27,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"63347239","playerOrTeamName":"EaV Tordenskjold","leaguePoints":30,"rank":"I","wins":194,"losses":159,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"42247699","playerOrTeamName":"EmiIia chan","leaguePoints":107,"rank":"I","wins":158,"losses":127,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30318180","playerOrTeamName":"Sergio Koke","leaguePoints":132,"rank":"I","wins":69,"losses":18,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"96197841","playerOrTeamName":"A Fuccboi","leaguePoints":348,"rank":"I","wins":178,"losses":114,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22061240","playerOrTeamName":"Aligân","leaguePoints":57,"rank":"I","wins":224,"losses":193,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"84327432","playerOrTeamName":"Pølsevognen","leaguePoints":5,"rank":"I","wins":145,"losses":116,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"92603200","playerOrTeamName":"wont sleep","leaguePoints":0,"rank":"I","wins":402,"losses":338,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"61120669","playerOrTeamName":"Bu Khalaf ","leaguePoints":0,"rank":"I","wins":447,"losses":364,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"81577117","playerOrTeamName":"ªªªªªªªªªªªª","leaguePoints":191,"rank":"I","wins":208,"losses":180,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20020102","playerOrTeamName":"VCF ITSIDORUS","leaguePoints":133,"rank":"I","wins":278,"losses":247,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31318311","playerOrTeamName":"Jean Francois","leaguePoints":286,"rank":"I","wins":374,"losses":344,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"44747167","playerOrTeamName":"Rock solid irl","leaguePoints":35,"rank":"I","wins":115,"losses":93,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"94471379","playerOrTeamName":"NIUR1","leaguePoints":148,"rank":"I","wins":186,"losses":139,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"66903184","playerOrTeamName":"Dreamer Ace","leaguePoints":220,"rank":"I","wins":175,"losses":136,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22079969","playerOrTeamName":"Warwík","leaguePoints":116,"rank":"I","wins":667,"losses":636,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19540915","playerOrTeamName":"eMz Arnau","leaguePoints":103,"rank":"I","wins":320,"losses":295,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27300678","playerOrTeamName":"Shikari","leaguePoints":158,"rank":"I","wins":212,"losses":181,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"84279233","playerOrTeamName":"KonDziSan","leaguePoints":170,"rank":"I","wins":358,"losses":311,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"45317425","playerOrTeamName":"StyxD1337","leaguePoints":0,"rank":"I","wins":312,"losses":281,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"43033763","playerOrTeamName":"llllIlllIllllll","leaguePoints":147,"rank":"I","wins":227,"losses":178,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20797233","playerOrTeamName":"Grosbill Mactor","leaguePoints":353,"rank":"I","wins":347,"losses":313,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19338119","playerOrTeamName":"Wrâth","leaguePoints":1,"rank":"I","wins":189,"losses":168,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"38474063","playerOrTeamName":"Furuy","leaguePoints":239,"rank":"I","wins":174,"losses":142,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"82970982","playerOrTeamName":"TRASH ELO SUP","leaguePoints":89,"rank":"I","wins":291,"losses":260,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24804478","playerOrTeamName":"Xavieles","leaguePoints":39,"rank":"I","wins":347,"losses":325,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"78016815","playerOrTeamName":"ERWQEQWQEQ","leaguePoints":0,"rank":"I","wins":186,"losses":124,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"19431981","playerOrTeamName":"Kiregnu","leaguePoints":56,"rank":"I","wins":224,"losses":195,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24617538","playerOrTeamName":"RekSaiyajin","leaguePoints":183,"rank":"I","wins":470,"losses":436,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24624311","playerOrTeamName":"Schuhbart","leaguePoints":0,"rank":"I","wins":114,"losses":75,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"62924470","playerOrTeamName":"SuPerNoVaOFFICAL","leaguePoints":17,"rank":"I","wins":403,"losses":387,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36077654","playerOrTeamName":"I SenSen I","leaguePoints":19,"rank":"I","wins":356,"losses":348,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22716663","playerOrTeamName":"T0rnzerUwU","leaguePoints":258,"rank":"I","wins":211,"losses":143,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"40279396","playerOrTeamName":"Fake God","leaguePoints":16,"rank":"I","wins":357,"losses":340,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"44991443","playerOrTeamName":"DiscoJockey","leaguePoints":165,"rank":"I","wins":136,"losses":107,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86377415","playerOrTeamName":"Deceptive Music","leaguePoints":169,"rank":"I","wins":288,"losses":254,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85118515","playerOrTeamName":"neversayunlucky","leaguePoints":17,"rank":"I","wins":101,"losses":70,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71347674","playerOrTeamName":"QuavOJR","leaguePoints":348,"rank":"I","wins":152,"losses":101,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37916855","playerOrTeamName":"NB Falcon","leaguePoints":89,"rank":"I","wins":501,"losses":477,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28023111","playerOrTeamName":"404 Doggy","leaguePoints":0,"rank":"I","wins":131,"losses":108,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20970792","playerOrTeamName":"Ploxy","leaguePoints":249,"rank":"I","wins":223,"losses":190,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"73306985","playerOrTeamName":"Râz","leaguePoints":248,"rank":"I","wins":383,"losses":344,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"41675452","playerOrTeamName":"9eetoo","leaguePoints":12,"rank":"I","wins":406,"losses":375,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42248968","playerOrTeamName":"ι ι","leaguePoints":97,"rank":"I","wins":282,"losses":257,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19755322","playerOrTeamName":"èkuziiJ","leaguePoints":264,"rank":"I","wins":95,"losses":61,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21285694","playerOrTeamName":"Sawyorr","leaguePoints":348,"rank":"I","wins":212,"losses":169,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"31470697","playerOrTeamName":"mikoshida","leaguePoints":102,"rank":"I","wins":209,"losses":163,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43851073","playerOrTeamName":"Dzonyyy","leaguePoints":162,"rank":"I","wins":349,"losses":319,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24442667","playerOrTeamName":"TeS Tsuzume","leaguePoints":143,"rank":"I","wins":226,"losses":198,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31021142","playerOrTeamName":"HaiD","leaguePoints":0,"rank":"I","wins":134,"losses":104,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20050482","playerOrTeamName":"loulex","leaguePoints":56,"rank":"I","wins":459,"losses":446,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"66557167","playerOrTeamName":"COMES PUTO SUELO","leaguePoints":0,"rank":"I","wins":214,"losses":189,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"89287213","playerOrTeamName":"Ascendânt","leaguePoints":141,"rank":"I","wins":140,"losses":111,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23517634","playerOrTeamName":"BTR Skythrew","leaguePoints":51,"rank":"I","wins":171,"losses":147,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20276841","playerOrTeamName":"Viggomopsen","leaguePoints":104,"rank":"I","wins":228,"losses":187,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94007115","playerOrTeamName":"Vintrez","leaguePoints":53,"rank":"I","wins":206,"losses":179,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27339353","playerOrTeamName":"Sniblets","leaguePoints":51,"rank":"I","wins":108,"losses":71,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"23157378","playerOrTeamName":"Nightmareslol","leaguePoints":79,"rank":"I","wins":537,"losses":500,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22599025","playerOrTeamName":"G2V Confysion","leaguePoints":202,"rank":"I","wins":107,"losses":77,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43032170","playerOrTeamName":"MrChooko","leaguePoints":99,"rank":"I","wins":97,"losses":64,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95207162","playerOrTeamName":"EnRo Anakis","leaguePoints":0,"rank":"I","wins":268,"losses":217,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46517455","playerOrTeamName":"FredZor","leaguePoints":0,"rank":"I","wins":240,"losses":204,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29171077","playerOrTeamName":"ClimbMountTargon","leaguePoints":29,"rank":"I","wins":313,"losses":278,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"38022855","playerOrTeamName":"DidiSkywalker","leaguePoints":0,"rank":"I","wins":98,"losses":61,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70202135","playerOrTeamName":"TheGodDamnNoob","leaguePoints":59,"rank":"I","wins":485,"losses":434,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20384283","playerOrTeamName":"KatteN","leaguePoints":19,"rank":"I","wins":126,"losses":92,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"30699007","playerOrTeamName":"UncreativeName","leaguePoints":279,"rank":"I","wins":168,"losses":134,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70027354","playerOrTeamName":"gmb zoiren","leaguePoints":244,"rank":"I","wins":392,"losses":366,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27957027","playerOrTeamName":"Lunatica","leaguePoints":12,"rank":"I","wins":406,"losses":385,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"61287613","playerOrTeamName":"Dean v3","leaguePoints":71,"rank":"I","wins":232,"losses":201,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25141397","playerOrTeamName":"ROG Showkz","leaguePoints":16,"rank":"I","wins":359,"losses":335,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"91177558","playerOrTeamName":"TOXIC ASIAN KID","leaguePoints":160,"rank":"I","wins":176,"losses":135,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"51346892","playerOrTeamName":"5 Guys One Blade","leaguePoints":151,"rank":"I","wins":146,"losses":115,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"77629368","playerOrTeamName":"215485645","leaguePoints":239,"rank":"I","wins":167,"losses":127,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29710223","playerOrTeamName":"Naga The Burger","leaguePoints":12,"rank":"I","wins":446,"losses":418,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"96016861","playerOrTeamName":"LanesAreSlaves","leaguePoints":287,"rank":"I","wins":124,"losses":102,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30938077","playerOrTeamName":"Deniz Aytekin","leaguePoints":235,"rank":"I","wins":650,"losses":570,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"23108999","playerOrTeamName":"TasteLess v2","leaguePoints":274,"rank":"I","wins":299,"losses":261,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19708052","playerOrTeamName":"i7xYa349","leaguePoints":407,"rank":"I","wins":494,"losses":457,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"51677748","playerOrTeamName":"Unstop","leaguePoints":302,"rank":"I","wins":161,"losses":119,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"22928152","playerOrTeamName":"Neø Must Die","leaguePoints":0,"rank":"I","wins":221,"losses":194,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23423070","playerOrTeamName":"mental boom","leaguePoints":83,"rank":"I","wins":560,"losses":537,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"34518587","playerOrTeamName":"x6 CarritosKami","leaguePoints":317,"rank":"I","wins":332,"losses":299,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"73277041","playerOrTeamName":"dopaku","leaguePoints":47,"rank":"I","wins":62,"losses":14,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24517010","playerOrTeamName":"Temari","leaguePoints":101,"rank":"I","wins":184,"losses":159,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"40682625","playerOrTeamName":"Rùst","leaguePoints":0,"rank":"I","wins":383,"losses":359,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19813257","playerOrTeamName":"Blaz3k","leaguePoints":198,"rank":"I","wins":116,"losses":64,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35432335","playerOrTeamName":"NOOB ADVENTURER","leaguePoints":336,"rank":"I","wins":531,"losses":501,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"71347822","playerOrTeamName":"Only K","leaguePoints":16,"rank":"I","wins":551,"losses":505,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24013883","playerOrTeamName":"low key inter","leaguePoints":31,"rank":"I","wins":242,"losses":220,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"22695468","playerOrTeamName":"Rocky Balboa","leaguePoints":17,"rank":"I","wins":270,"losses":243,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21695432","playerOrTeamName":"BAD AT THIS GAMÊ","leaguePoints":31,"rank":"I","wins":158,"losses":117,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19533966","playerOrTeamName":"Destiny Dominus","leaguePoints":304,"rank":"I","wins":129,"losses":98,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27491202","playerOrTeamName":"K1CK SLAYER","leaguePoints":58,"rank":"I","wins":340,"losses":313,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"79997083","playerOrTeamName":"steaIth is key","leaguePoints":0,"rank":"I","wins":202,"losses":184,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"57797700","playerOrTeamName":"Seliorz","leaguePoints":16,"rank":"I","wins":593,"losses":580,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"43651624","playerOrTeamName":"Azith","leaguePoints":31,"rank":"I","wins":192,"losses":161,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24745916","playerOrTeamName":"Ta0ur","leaguePoints":12,"rank":"I","wins":510,"losses":487,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44259378","playerOrTeamName":"Björnen Baloo","leaguePoints":0,"rank":"I","wins":301,"losses":270,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20193482","playerOrTeamName":"r0yaIty","leaguePoints":69,"rank":"I","wins":119,"losses":99,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20046358","playerOrTeamName":"Lukezy","leaguePoints":66,"rank":"I","wins":188,"losses":165,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20775899","playerOrTeamName":"EnRo DrasarD","leaguePoints":47,"rank":"I","wins":91,"losses":61,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71737459","playerOrTeamName":"KreyGagaism","leaguePoints":130,"rank":"I","wins":118,"losses":79,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"47428011","playerOrTeamName":"EGN Vinxen","leaguePoints":136,"rank":"I","wins":505,"losses":477,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20896496","playerOrTeamName":"XDSMILEYs6 irtl","leaguePoints":312,"rank":"I","wins":176,"losses":129,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19364856","playerOrTeamName":"Prinz Marth","leaguePoints":0,"rank":"I","wins":226,"losses":195,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97877708","playerOrTeamName":"FNC Amazingxx","leaguePoints":85,"rank":"I","wins":103,"losses":48,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21388630","playerOrTeamName":"Džentlmen","leaguePoints":263,"rank":"I","wins":404,"losses":360,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43825991","playerOrTeamName":"Toeffelhelten","leaguePoints":88,"rank":"I","wins":171,"losses":132,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23090113","playerOrTeamName":"FaçeMelter","leaguePoints":354,"rank":"I","wins":423,"losses":381,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22869898","playerOrTeamName":"DOUBLELIFTUUU","leaguePoints":39,"rank":"I","wins":374,"losses":343,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19472773","playerOrTeamName":"Ionï","leaguePoints":36,"rank":"I","wins":166,"losses":137,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21167077","playerOrTeamName":"HeHé","leaguePoints":285,"rank":"I","wins":122,"losses":80,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27693694","playerOrTeamName":"Zaparapa","leaguePoints":149,"rank":"I","wins":414,"losses":391,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27694452","playerOrTeamName":"kµs","leaguePoints":0,"rank":"I","wins":130,"losses":60,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"21580625","playerOrTeamName":"Darkrai Senpai","leaguePoints":334,"rank":"I","wins":440,"losses":392,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"67019246","playerOrTeamName":"OG Neon","leaguePoints":61,"rank":"I","wins":56,"losses":29,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"32328424","playerOrTeamName":"Permabann v6","leaguePoints":225,"rank":"I","wins":343,"losses":304,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22981447","playerOrTeamName":"TcG Jin","leaguePoints":186,"rank":"I","wins":106,"losses":63,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27346255","playerOrTeamName":"0TuTu0","leaguePoints":119,"rank":"I","wins":241,"losses":214,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30738401","playerOrTeamName":"Eroop","leaguePoints":0,"rank":"I","wins":265,"losses":230,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19096814","playerOrTeamName":"NxG DrMatt","leaguePoints":16,"rank":"I","wins":319,"losses":284,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"41762856","playerOrTeamName":"Jesus V","leaguePoints":116,"rank":"I","wins":275,"losses":242,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"38519700","playerOrTeamName":"DizL Sama","leaguePoints":0,"rank":"I","wins":137,"losses":112,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28026195","playerOrTeamName":"K1CK Alternative","leaguePoints":224,"rank":"I","wins":284,"losses":254,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"67867179","playerOrTeamName":"Divaaa","leaguePoints":238,"rank":"I","wins":252,"losses":218,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"72690603","playerOrTeamName":"Harro","leaguePoints":68,"rank":"I","wins":193,"losses":152,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"78066888","playerOrTeamName":"Nyah v2","leaguePoints":125,"rank":"I","wins":218,"losses":184,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35799833","playerOrTeamName":"Bobman07","leaguePoints":258,"rank":"I","wins":147,"losses":107,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31219746","playerOrTeamName":"Vango","leaguePoints":302,"rank":"I","wins":208,"losses":173,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19898783","playerOrTeamName":"ROCCAT Phaxi","leaguePoints":0,"rank":"I","wins":389,"losses":369,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"66245429","playerOrTeamName":"VITYA MASHINA","leaguePoints":113,"rank":"I","wins":453,"losses":430,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"84077683","playerOrTeamName":"it is destiny","leaguePoints":0,"rank":"I","wins":92,"losses":43,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"25797111","playerOrTeamName":"NxG Demon","leaguePoints":301,"rank":"I","wins":169,"losses":129,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"26630393","playerOrTeamName":"R3verse Flash","leaguePoints":90,"rank":"I","wins":226,"losses":154,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19032720","playerOrTeamName":"GIurak","leaguePoints":141,"rank":"I","wins":163,"losses":129,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19368156","playerOrTeamName":"napalm in june","leaguePoints":0,"rank":"I","wins":354,"losses":323,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"21284151","playerOrTeamName":"Aoi Haru","leaguePoints":0,"rank":"I","wins":469,"losses":439,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"52234241","playerOrTeamName":"I play AmbuIance","leaguePoints":221,"rank":"I","wins":304,"losses":267,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31972312","playerOrTeamName":"Veignorem","leaguePoints":137,"rank":"I","wins":228,"losses":185,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23805505","playerOrTeamName":"EC LE ROI BISOU","leaguePoints":20,"rank":"I","wins":265,"losses":232,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"37722273","playerOrTeamName":"Rabble Arouser","leaguePoints":118,"rank":"I","wins":310,"losses":282,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20801650","playerOrTeamName":"VCF MORYO","leaguePoints":56,"rank":"I","wins":190,"losses":166,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20814554","playerOrTeamName":"VCF DIAMOND","leaguePoints":255,"rank":"I","wins":331,"losses":300,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"95457313","playerOrTeamName":"Yu RedPhoenix","leaguePoints":0,"rank":"I","wins":287,"losses":229,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"58798007","playerOrTeamName":"The Canee","leaguePoints":11,"rank":"I","wins":439,"losses":414,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19820922","playerOrTeamName":"verybiglama","leaguePoints":212,"rank":"I","wins":246,"losses":210,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22487013","playerOrTeamName":"sur reje","leaguePoints":56,"rank":"I","wins":339,"losses":310,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23898982","playerOrTeamName":"aciliM","leaguePoints":221,"rank":"I","wins":94,"losses":54,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20240646","playerOrTeamName":"Kirshay","leaguePoints":1,"rank":"I","wins":213,"losses":179,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19328984","playerOrTeamName":"A WILD PERMABAN","leaguePoints":0,"rank":"I","wins":164,"losses":106,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"86878959","playerOrTeamName":"sonorK","leaguePoints":11,"rank":"I","wins":290,"losses":264,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"68597158","playerOrTeamName":"Τοm","leaguePoints":72,"rank":"I","wins":138,"losses":102,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"55226881","playerOrTeamName":"klaabu smurfer","leaguePoints":175,"rank":"I","wins":209,"losses":174,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22080216","playerOrTeamName":"Jeppejw","leaguePoints":67,"rank":"I","wins":159,"losses":122,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"38584693","playerOrTeamName":"nigelf 33","leaguePoints":22,"rank":"I","wins":200,"losses":157,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"26501877","playerOrTeamName":"Deep Monkey","leaguePoints":0,"rank":"I","wins":221,"losses":193,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29187299","playerOrTeamName":"FRG Wacco","leaguePoints":98,"rank":"I","wins":122,"losses":89,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"84396817","playerOrTeamName":"WELOSETOIMPROVE","leaguePoints":370,"rank":"I","wins":258,"losses":223,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23038914","playerOrTeamName":"LagsAlot","leaguePoints":58,"rank":"I","wins":228,"losses":200,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"87080148","playerOrTeamName":"ψΩΔΔΞΞΦLΘFΞΞΔΔΩψ","leaguePoints":255,"rank":"I","wins":377,"losses":348,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42978973","playerOrTeamName":"Tilted Chicken","leaguePoints":24,"rank":"I","wins":587,"losses":565,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"53436826","playerOrTeamName":"Dawidsonek","leaguePoints":328,"rank":"I","wins":256,"losses":220,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"66318412","playerOrTeamName":"XearthOrXerath","leaguePoints":51,"rank":"I","wins":115,"losses":60,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21315236","playerOrTeamName":"Azοr Ahai","leaguePoints":218,"rank":"I","wins":343,"losses":315,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"292470","playerOrTeamName":"G2V Lvsyan","leaguePoints":326,"rank":"I","wins":247,"losses":212,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22676062","playerOrTeamName":"VisdomodsiV","leaguePoints":150,"rank":"I","wins":501,"losses":472,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"93387980","playerOrTeamName":"Korean Pickle","leaguePoints":28,"rank":"I","wins":443,"losses":358,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20918894","playerOrTeamName":"KIYF Nandisk0","leaguePoints":155,"rank":"I","wins":460,"losses":429,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20234739","playerOrTeamName":"THDmaster","leaguePoints":80,"rank":"I","wins":116,"losses":77,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71347127","playerOrTeamName":"xCboi","leaguePoints":350,"rank":"I","wins":171,"losses":136,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"44060471","playerOrTeamName":"eaSyMaddox","leaguePoints":34,"rank":"I","wins":314,"losses":275,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85918996","playerOrTeamName":"a1a2a3a4aqqqqqqq","leaguePoints":42,"rank":"I","wins":256,"losses":239,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22837857","playerOrTeamName":"Auzyris","leaguePoints":152,"rank":"I","wins":114,"losses":91,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20227321","playerOrTeamName":"CSPLAYERCINKROF","leaguePoints":207,"rank":"I","wins":297,"losses":272,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24049039","playerOrTeamName":"OG Iluzjonist","leaguePoints":327,"rank":"I","wins":232,"losses":194,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"28334516","playerOrTeamName":"Tolkin II","leaguePoints":181,"rank":"I","wins":193,"losses":158,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20573768","playerOrTeamName":"Xyraz","leaguePoints":269,"rank":"I","wins":359,"losses":321,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24806549","playerOrTeamName":"Crazy Moroccan ","leaguePoints":208,"rank":"I","wins":143,"losses":106,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"61000543","playerOrTeamName":"Atombombom","leaguePoints":91,"rank":"I","wins":324,"losses":292,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19654100","playerOrTeamName":"ŁaFleur","leaguePoints":77,"rank":"I","wins":191,"losses":164,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19188548","playerOrTeamName":"Hypêr","leaguePoints":53,"rank":"I","wins":221,"losses":192,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"21766602","playerOrTeamName":"HotIine FIing","leaguePoints":192,"rank":"I","wins":121,"losses":84,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42254974","playerOrTeamName":"Akashi","leaguePoints":15,"rank":"I","wins":217,"losses":183,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"61666828","playerOrTeamName":"GIA TynX","leaguePoints":203,"rank":"I","wins":710,"losses":684,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"90786998","playerOrTeamName":"InspíreD","leaguePoints":364,"rank":"I","wins":399,"losses":363,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"64946928","playerOrTeamName":"Manaty LoL I YT","leaguePoints":50,"rank":"I","wins":561,"losses":525,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"36216959","playerOrTeamName":"FNA Dan","leaguePoints":355,"rank":"I","wins":221,"losses":188,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"37187068","playerOrTeamName":"im insane bad","leaguePoints":4,"rank":"I","wins":207,"losses":176,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30856935","playerOrTeamName":"Östwind","leaguePoints":175,"rank":"I","wins":387,"losses":364,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72152819","playerOrTeamName":"LaBaguette Salée","leaguePoints":38,"rank":"I","wins":446,"losses":413,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"41711998","playerOrTeamName":"Saitò","leaguePoints":45,"rank":"I","wins":192,"losses":159,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22341096","playerOrTeamName":"ATN Fittle","leaguePoints":260,"rank":"I","wins":254,"losses":220,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24312189","playerOrTeamName":"art of 1v9","leaguePoints":214,"rank":"I","wins":502,"losses":472,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"26522178","playerOrTeamName":"Èndz","leaguePoints":0,"rank":"I","wins":296,"losses":274,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"34978029","playerOrTeamName":"Grosbill Skeanz","leaguePoints":176,"rank":"I","wins":454,"losses":425,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"98007307","playerOrTeamName":"BuffaL0veR","leaguePoints":34,"rank":"I","wins":193,"losses":126,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"31690026","playerOrTeamName":"Fapping to Ahri","leaguePoints":0,"rank":"I","wins":121,"losses":53,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"32081620","playerOrTeamName":"MRDS Hero","leaguePoints":136,"rank":"I","wins":236,"losses":214,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21866391","playerOrTeamName":"Spooky iwnl","leaguePoints":27,"rank":"I","wins":182,"losses":158,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25168739","playerOrTeamName":"Jim Bernardie","leaguePoints":81,"rank":"I","wins":271,"losses":236,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"26205696","playerOrTeamName":"Albatros908","leaguePoints":60,"rank":"I","wins":287,"losses":255,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44748051","playerOrTeamName":"TheRoyalKanin","leaguePoints":158,"rank":"I","wins":357,"losses":315,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35747269","playerOrTeamName":"Hide on baxCus","leaguePoints":19,"rank":"I","wins":121,"losses":95,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22113017","playerOrTeamName":"Distant Child","leaguePoints":299,"rank":"I","wins":220,"losses":168,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23267851","playerOrTeamName":"Summoner 250399","leaguePoints":40,"rank":"I","wins":613,"losses":587,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24522208","playerOrTeamName":"ESL UK FINALIST","leaguePoints":49,"rank":"I","wins":467,"losses":441,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"41713972","playerOrTeamName":"Dizzmi","leaguePoints":0,"rank":"I","wins":236,"losses":206,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"25277585","playerOrTeamName":"Varph","leaguePoints":15,"rank":"I","wins":117,"losses":92,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"80637185","playerOrTeamName":"ADs Are Broken","leaguePoints":46,"rank":"I","wins":476,"losses":459,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21640308","playerOrTeamName":"MAUES","leaguePoints":16,"rank":"I","wins":117,"losses":87,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33088057","playerOrTeamName":"GA Aviril","leaguePoints":58,"rank":"I","wins":211,"losses":180,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"53838442","playerOrTeamName":"FatG Blank III","leaguePoints":0,"rank":"I","wins":106,"losses":72,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"41703437","playerOrTeamName":"2015 12 20","leaguePoints":344,"rank":"I","wins":89,"losses":41,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19361568","playerOrTeamName":"arCôs","leaguePoints":51,"rank":"I","wins":307,"losses":271,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"82969505","playerOrTeamName":"Tancred Kite","leaguePoints":91,"rank":"I","wins":120,"losses":88,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"75627229","playerOrTeamName":"Sigma123","leaguePoints":119,"rank":"I","wins":161,"losses":101,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33893418","playerOrTeamName":"404 TheGame","leaguePoints":18,"rank":"I","wins":609,"losses":584,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"27408923","playerOrTeamName":"Tha Carter V","leaguePoints":93,"rank":"I","wins":200,"losses":170,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20794717","playerOrTeamName":"wazzari","leaguePoints":276,"rank":"I","wins":430,"losses":391,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21001130","playerOrTeamName":"Odoamne","leaguePoints":342,"rank":"I","wins":107,"losses":68,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22240784","playerOrTeamName":"Nissha","leaguePoints":95,"rank":"I","wins":472,"losses":440,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22322085","playerOrTeamName":"MSF Hans sama1","leaguePoints":371,"rank":"I","wins":236,"losses":185,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"52210396","playerOrTeamName":"Polish Wonderb0y","leaguePoints":342,"rank":"I","wins":90,"losses":48,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21622017","playerOrTeamName":"Legion TD 2","leaguePoints":114,"rank":"I","wins":119,"losses":61,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21092155","playerOrTeamName":"kt Deftˉ","leaguePoints":35,"rank":"I","wins":227,"losses":131,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70036806","playerOrTeamName":"Héku","leaguePoints":25,"rank":"I","wins":295,"losses":266,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"84348042","playerOrTeamName":"NodCake","leaguePoints":80,"rank":"I","wins":138,"losses":103,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"90777352","playerOrTeamName":"labrov","leaguePoints":329,"rank":"I","wins":223,"losses":185,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37882499","playerOrTeamName":"NilleNalley","leaguePoints":145,"rank":"I","wins":788,"losses":760,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85796836","playerOrTeamName":"Kâiros Pls","leaguePoints":0,"rank":"I","wins":231,"losses":204,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23582671","playerOrTeamName":"Bogdan Artistu","leaguePoints":89,"rank":"I","wins":413,"losses":362,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"24428523","playerOrTeamName":"ArrowsofAlfar","leaguePoints":183,"rank":"I","wins":332,"losses":300,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"41523185","playerOrTeamName":"Hadow","leaguePoints":21,"rank":"I","wins":664,"losses":642,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"34242649","playerOrTeamName":"Caponè","leaguePoints":83,"rank":"I","wins":157,"losses":101,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29544527","playerOrTeamName":"LuddehZ","leaguePoints":331,"rank":"I","wins":192,"losses":149,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33543827","playerOrTeamName":"GIA Th3Antonio","leaguePoints":0,"rank":"I","wins":489,"losses":467,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"71981509","playerOrTeamName":"Calebpcrinal","leaguePoints":201,"rank":"I","wins":232,"losses":195,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24763111","playerOrTeamName":"EGN Afm12","leaguePoints":189,"rank":"I","wins":302,"losses":269,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"67077416","playerOrTeamName":"one day pro ","leaguePoints":0,"rank":"I","wins":174,"losses":148,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23633411","playerOrTeamName":"TraitorQer","leaguePoints":50,"rank":"I","wins":198,"losses":167,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"25532701","playerOrTeamName":"UOL Hylissang","leaguePoints":198,"rank":"I","wins":359,"losses":334,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21604393","playerOrTeamName":"Sica","leaguePoints":161,"rank":"I","wins":234,"losses":204,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23278439","playerOrTeamName":"NRV kaas","leaguePoints":212,"rank":"I","wins":221,"losses":190,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19618985","playerOrTeamName":"DJ Richard","leaguePoints":0,"rank":"I","wins":69,"losses":40,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"30737031","playerOrTeamName":"AnArmyOfShadows","leaguePoints":0,"rank":"I","wins":211,"losses":180,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35239421","playerOrTeamName":"Sabr ","leaguePoints":15,"rank":"I","wins":217,"losses":188,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"24731718","playerOrTeamName":"Murii Is Bæ","leaguePoints":226,"rank":"I","wins":266,"losses":179,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"22635849","playerOrTeamName":"Just xani","leaguePoints":304,"rank":"I","wins":578,"losses":553,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95166892","playerOrTeamName":"Better Work","leaguePoints":119,"rank":"I","wins":208,"losses":189,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"98177070","playerOrTeamName":"AP0CALYPSE L9","leaguePoints":202,"rank":"I","wins":89,"losses":27,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20681160","playerOrTeamName":"Face the schmutz","leaguePoints":16,"rank":"I","wins":238,"losses":215,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23970012","playerOrTeamName":"Wintermelon Wolf","leaguePoints":163,"rank":"I","wins":300,"losses":275,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"21467202","playerOrTeamName":"Single eBoy","leaguePoints":222,"rank":"I","wins":488,"losses":446,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20361113","playerOrTeamName":"Sharishanya","leaguePoints":202,"rank":"I","wins":317,"losses":292,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"89037252","playerOrTeamName":"Chocolatechip2","leaguePoints":59,"rank":"I","wins":166,"losses":136,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"83587310","playerOrTeamName":"Kérmys","leaguePoints":91,"rank":"I","wins":130,"losses":95,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"165708","playerOrTeamName":"IIllll111IIIlll","leaguePoints":19,"rank":"I","wins":466,"losses":441,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"41127438","playerOrTeamName":"S210U","leaguePoints":151,"rank":"I","wins":107,"losses":75,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35673903","playerOrTeamName":"Branquiolo","leaguePoints":26,"rank":"I","wins":114,"losses":83,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85816819","playerOrTeamName":"ı Korean","leaguePoints":0,"rank":"I","wins":445,"losses":417,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"69868138","playerOrTeamName":"P1noyz","leaguePoints":28,"rank":"I","wins":169,"losses":133,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"25593287","playerOrTeamName":"Hey Its Meight","leaguePoints":195,"rank":"I","wins":135,"losses":101,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25234828","playerOrTeamName":" GLOWlNG","leaguePoints":191,"rank":"I","wins":219,"losses":180,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28017300","playerOrTeamName":"Maroc3000","leaguePoints":70,"rank":"I","wins":108,"losses":73,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23123230","playerOrTeamName":"Death The Kîd","leaguePoints":46,"rank":"I","wins":353,"losses":320,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"29108174","playerOrTeamName":"Phurion","leaguePoints":11,"rank":"I","wins":353,"losses":326,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"55776940","playerOrTeamName":"mumus100","leaguePoints":219,"rank":"I","wins":207,"losses":167,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"76857427","playerOrTeamName":"Salty d0g","leaguePoints":48,"rank":"I","wins":379,"losses":349,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46687094","playerOrTeamName":"Almost Yuga","leaguePoints":95,"rank":"I","wins":123,"losses":84,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"25908425","playerOrTeamName":"Magoy","leaguePoints":16,"rank":"I","wins":210,"losses":188,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22666434","playerOrTeamName":"Tyríon Lannister","leaguePoints":134,"rank":"I","wins":446,"losses":406,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"42277340","playerOrTeamName":"Accziz","leaguePoints":185,"rank":"I","wins":215,"losses":182,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21743792","playerOrTeamName":"I make pancakes","leaguePoints":304,"rank":"I","wins":116,"losses":73,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"32668481","playerOrTeamName":"PRST Deus","leaguePoints":17,"rank":"I","wins":303,"losses":279,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"54367179","playerOrTeamName":"MRDS bucu","leaguePoints":49,"rank":"I","wins":488,"losses":466,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"33484086","playerOrTeamName":"LeChase","leaguePoints":60,"rank":"I","wins":245,"losses":218,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"26631960","playerOrTeamName":"Feedley","leaguePoints":32,"rank":"I","wins":232,"losses":203,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"75259264","playerOrTeamName":"Ø C E A N","leaguePoints":9,"rank":"I","wins":320,"losses":289,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37682461","playerOrTeamName":"StenBosse","leaguePoints":163,"rank":"I","wins":191,"losses":157,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"34980265","playerOrTeamName":"KPI Aarôn","leaguePoints":90,"rank":"I","wins":270,"losses":241,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"41882049","playerOrTeamName":"VP Doxy","leaguePoints":104,"rank":"I","wins":448,"losses":429,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19921474","playerOrTeamName":"Nekro LFT","leaguePoints":155,"rank":"I","wins":332,"losses":299,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22194526","playerOrTeamName":"fullnoob","leaguePoints":0,"rank":"I","wins":184,"losses":118,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"92918086","playerOrTeamName":"Hedonistens Pet","leaguePoints":161,"rank":"I","wins":169,"losses":115,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"82347795","playerOrTeamName":"yung alpaca","leaguePoints":265,"rank":"I","wins":209,"losses":166,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21529523","playerOrTeamName":"ROG Broua PàM","leaguePoints":228,"rank":"I","wins":320,"losses":280,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20395020","playerOrTeamName":"cospect","leaguePoints":7,"rank":"I","wins":354,"losses":324,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19670314","playerOrTeamName":"Tabasko","leaguePoints":380,"rank":"I","wins":384,"losses":343,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42035133","playerOrTeamName":"BTR TraYtoN","leaguePoints":209,"rank":"I","wins":507,"losses":465,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42836792","playerOrTeamName":"UnSousMarinCaché","leaguePoints":116,"rank":"I","wins":171,"losses":142,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"94007625","playerOrTeamName":"WildNata","leaguePoints":54,"rank":"I","wins":352,"losses":325,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21726747","playerOrTeamName":"jactrollZ","leaguePoints":220,"rank":"I","wins":749,"losses":710,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21386229","playerOrTeamName":"Maïti","leaguePoints":90,"rank":"I","wins":181,"losses":146,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28178524","playerOrTeamName":"PJSezzeR","leaguePoints":33,"rank":"I","wins":240,"losses":218,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88430538","playerOrTeamName":"I was 5","leaguePoints":216,"rank":"I","wins":159,"losses":126,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19671824","playerOrTeamName":"Kim Kardashyan","leaguePoints":40,"rank":"I","wins":122,"losses":98,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28946246","playerOrTeamName":"Kamon","leaguePoints":69,"rank":"I","wins":192,"losses":163,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24207682","playerOrTeamName":"Brown Sugarr","leaguePoints":38,"rank":"I","wins":206,"losses":181,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28892717","playerOrTeamName":"dejan1","leaguePoints":52,"rank":"I","wins":146,"losses":111,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21394155","playerOrTeamName":"SH4RKR1PP3R155","leaguePoints":281,"rank":"I","wins":564,"losses":518,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"207166","playerOrTeamName":"keni","leaguePoints":159,"rank":"I","wins":242,"losses":209,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30013688","playerOrTeamName":"SONA A U T I S M","leaguePoints":21,"rank":"I","wins":113,"losses":87,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19662872","playerOrTeamName":"Z Z B 4 T","leaguePoints":275,"rank":"I","wins":431,"losses":396,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33869467","playerOrTeamName":"Tuikku","leaguePoints":165,"rank":"I","wins":66,"losses":31,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"22325769","playerOrTeamName":"Bye Moonmen","leaguePoints":0,"rank":"I","wins":120,"losses":86,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22624613","playerOrTeamName":"Damgos the beast","leaguePoints":128,"rank":"I","wins":271,"losses":240,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43655729","playerOrTeamName":"kerber0s","leaguePoints":17,"rank":"I","wins":647,"losses":622,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19236549","playerOrTeamName":"Shitoo","leaguePoints":84,"rank":"I","wins":225,"losses":191,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"342745","playerOrTeamName":"WL Gr0dka","leaguePoints":47,"rank":"I","wins":231,"losses":201,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"21159627","playerOrTeamName":"Vorser","leaguePoints":132,"rank":"I","wins":143,"losses":112,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20625475","playerOrTeamName":"TH FastDragon","leaguePoints":73,"rank":"I","wins":195,"losses":163,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19149907","playerOrTeamName":"xumäS","leaguePoints":119,"rank":"I","wins":292,"losses":262,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"62577494","playerOrTeamName":"Azitor","leaguePoints":215,"rank":"I","wins":264,"losses":216,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33654217","playerOrTeamName":"ƒax","leaguePoints":223,"rank":"I","wins":145,"losses":94,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"65218006","playerOrTeamName":"MRDS Mystiques","leaguePoints":55,"rank":"I","wins":210,"losses":184,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46896954","playerOrTeamName":"KroMAX","leaguePoints":15,"rank":"I","wins":294,"losses":258,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30689130","playerOrTeamName":"Hüret","leaguePoints":0,"rank":"I","wins":259,"losses":229,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"32255169","playerOrTeamName":"Isdemacia","leaguePoints":28,"rank":"I","wins":177,"losses":145,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22052813","playerOrTeamName":"oh no its kubYD","leaguePoints":264,"rank":"I","wins":558,"losses":525,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"38604561","playerOrTeamName":"Zetzuan","leaguePoints":291,"rank":"I","wins":122,"losses":82,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20101413","playerOrTeamName":"FB Thaldrin","leaguePoints":328,"rank":"I","wins":362,"losses":323,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"22492437","playerOrTeamName":"hi im mate","leaguePoints":240,"rank":"I","wins":120,"losses":86,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"82777176","playerOrTeamName":"DoctorPwnz","leaguePoints":84,"rank":"I","wins":357,"losses":314,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20050662","playerOrTeamName":"DUAL SIM","leaguePoints":299,"rank":"I","wins":250,"losses":207,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20848665","playerOrTeamName":"GoIdenTo4st","leaguePoints":7,"rank":"I","wins":162,"losses":126,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"70027578","playerOrTeamName":"Hahster","leaguePoints":0,"rank":"I","wins":178,"losses":138,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"21097399","playerOrTeamName":"CaVe Fred","leaguePoints":33,"rank":"I","wins":266,"losses":229,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"56967369","playerOrTeamName":"qlp Rudolf","leaguePoints":32,"rank":"I","wins":156,"losses":119,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"49600871","playerOrTeamName":"NoseyNoodle","leaguePoints":250,"rank":"I","wins":117,"losses":66,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31083248","playerOrTeamName":"SEN Counter","leaguePoints":101,"rank":"I","wins":262,"losses":238,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35433650","playerOrTeamName":"Svikter","leaguePoints":46,"rank":"I","wins":374,"losses":349,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27493865","playerOrTeamName":"CuIImann","leaguePoints":150,"rank":"I","wins":379,"losses":340,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"39947383","playerOrTeamName":"LCL reject","leaguePoints":98,"rank":"I","wins":420,"losses":389,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20908687","playerOrTeamName":"GIA Joo","leaguePoints":155,"rank":"I","wins":362,"losses":336,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"49276837","playerOrTeamName":"EZ Hades","leaguePoints":118,"rank":"I","wins":301,"losses":262,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23266654","playerOrTeamName":"Impersonator","leaguePoints":122,"rank":"I","wins":266,"losses":223,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94679404","playerOrTeamName":"Shiganarí","leaguePoints":70,"rank":"I","wins":192,"losses":138,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27690482","playerOrTeamName":"Hentai","leaguePoints":17,"rank":"I","wins":100,"losses":68,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"31171458","playerOrTeamName":"uCaesar","leaguePoints":0,"rank":"I","wins":141,"losses":98,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19510290","playerOrTeamName":"Odd Nordstoga","leaguePoints":12,"rank":"I","wins":75,"losses":37,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"34532500","playerOrTeamName":"RBT ItGox","leaguePoints":98,"rank":"I","wins":429,"losses":390,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"23221834","playerOrTeamName":"Sander Frost","leaguePoints":45,"rank":"I","wins":343,"losses":316,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22940942","playerOrTeamName":"JSA Marker","leaguePoints":151,"rank":"I","wins":253,"losses":218,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"27280935","playerOrTeamName":"Stabatouille","leaguePoints":0,"rank":"I","wins":180,"losses":156,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23876654","playerOrTeamName":"1 Rexxx","leaguePoints":0,"rank":"I","wins":256,"losses":231,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"79987074","playerOrTeamName":"bleached anus","leaguePoints":30,"rank":"I","wins":277,"losses":243,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23037450","playerOrTeamName":"M e r f L","leaguePoints":76,"rank":"I","wins":272,"losses":245,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"81567054","playerOrTeamName":"Above others","leaguePoints":62,"rank":"I","wins":178,"losses":141,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20410008","playerOrTeamName":"Samanan","leaguePoints":109,"rank":"I","wins":267,"losses":240,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"56677331","playerOrTeamName":"Albetrayber","leaguePoints":353,"rank":"I","wins":184,"losses":140,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20006991","playerOrTeamName":"KIYF Carbono","leaguePoints":130,"rank":"I","wins":221,"losses":193,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"71709078","playerOrTeamName":"215121823","leaguePoints":88,"rank":"I","wins":213,"losses":163,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35168725","playerOrTeamName":"Seaz","leaguePoints":27,"rank":"I","wins":301,"losses":261,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22169727","playerOrTeamName":"Y Kooshi","leaguePoints":82,"rank":"I","wins":241,"losses":193,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20828788","playerOrTeamName":"FNC Jesiz","leaguePoints":359,"rank":"I","wins":246,"losses":209,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29653552","playerOrTeamName":"eMz Deádly","leaguePoints":22,"rank":"I","wins":177,"losses":152,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20412771","playerOrTeamName":"Général Campagne","leaguePoints":171,"rank":"I","wins":316,"losses":281,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86709891","playerOrTeamName":"DimiIl","leaguePoints":33,"rank":"I","wins":234,"losses":196,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"21377022","playerOrTeamName":"Scarface L9","leaguePoints":133,"rank":"I","wins":108,"losses":73,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20052937","playerOrTeamName":"RiverFlowsInMe","leaguePoints":37,"rank":"I","wins":215,"losses":193,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"25496468","playerOrTeamName":"jacksonsu","leaguePoints":158,"rank":"I","wins":288,"losses":256,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"48317098","playerOrTeamName":"AddicT DVichen","leaguePoints":59,"rank":"I","wins":196,"losses":168,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42135084","playerOrTeamName":"MeLikePanda","leaguePoints":92,"rank":"I","wins":354,"losses":326,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"40407544","playerOrTeamName":"arC xTyLk","leaguePoints":305,"rank":"I","wins":470,"losses":433,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"41518246","playerOrTeamName":"PLASTMASOVII MIR","leaguePoints":34,"rank":"I","wins":195,"losses":171,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19099982","playerOrTeamName":"von is gone","leaguePoints":275,"rank":"I","wins":297,"losses":262,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"35218748","playerOrTeamName":"Namex IV","leaguePoints":17,"rank":"I","wins":165,"losses":139,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"40623309","playerOrTeamName":"NÆW ÆRA","leaguePoints":156,"rank":"I","wins":196,"losses":160,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27865763","playerOrTeamName":"GO Tonerre","leaguePoints":328,"rank":"I","wins":238,"losses":206,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"42747522","playerOrTeamName":"Yugazue","leaguePoints":76,"rank":"I","wins":201,"losses":166,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23836045","playerOrTeamName":"DreAmZyY","leaguePoints":0,"rank":"I","wins":184,"losses":157,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"65186979","playerOrTeamName":"TF Only","leaguePoints":12,"rank":"I","wins":310,"losses":269,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23402049","playerOrTeamName":"Justplaythegame","leaguePoints":149,"rank":"I","wins":499,"losses":470,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29939816","playerOrTeamName":"ranGerzx","leaguePoints":26,"rank":"I","wins":86,"losses":28,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"77977380","playerOrTeamName":"StaffaDylanz","leaguePoints":29,"rank":"I","wins":224,"losses":200,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"50717028","playerOrTeamName":"HawHawNeverLucky","leaguePoints":0,"rank":"I","wins":88,"losses":60,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20110023","playerOrTeamName":"Navi Zvene","leaguePoints":352,"rank":"I","wins":400,"losses":357,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"56977194","playerOrTeamName":"Punisher 143","leaguePoints":252,"rank":"I","wins":339,"losses":302,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25150293","playerOrTeamName":"TH Miniduke","leaguePoints":0,"rank":"I","wins":613,"losses":589,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19673273","playerOrTeamName":"crashtalk","leaguePoints":152,"rank":"I","wins":167,"losses":141,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"97816836","playerOrTeamName":"Growing Pains","leaguePoints":257,"rank":"I","wins":221,"losses":106,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"53568345","playerOrTeamName":"luckyhugeman","leaguePoints":63,"rank":"I","wins":202,"losses":165,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"71907807","playerOrTeamName":"Son Of Master","leaguePoints":48,"rank":"I","wins":361,"losses":321,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20864588","playerOrTeamName":"Meleks","leaguePoints":103,"rank":"I","wins":143,"losses":117,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19529511","playerOrTeamName":"Suirotas","leaguePoints":352,"rank":"I","wins":422,"losses":384,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"39621089","playerOrTeamName":"ChalIenger Ahri","leaguePoints":27,"rank":"I","wins":537,"losses":504,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"90777156","playerOrTeamName":"Naneun Euphoria","leaguePoints":0,"rank":"I","wins":126,"losses":94,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"28900040","playerOrTeamName":"ßLACK HOLE SUN","leaguePoints":94,"rank":"I","wins":218,"losses":192,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"145711","playerOrTeamName":"eK Andàrion","leaguePoints":98,"rank":"I","wins":377,"losses":339,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"24682901","playerOrTeamName":"KiraSeiei","leaguePoints":211,"rank":"I","wins":195,"losses":157,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86357662","playerOrTeamName":"HolyPhoenîx","leaguePoints":227,"rank":"I","wins":105,"losses":66,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"96417081","playerOrTeamName":"Freezy smurfer","leaguePoints":111,"rank":"I","wins":172,"losses":134,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20239695","playerOrTeamName":"Die Limo","leaguePoints":44,"rank":"I","wins":205,"losses":179,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46797945","playerOrTeamName":"KPI Aizhon","leaguePoints":107,"rank":"I","wins":148,"losses":115,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"40492701","playerOrTeamName":"Viggo","leaguePoints":220,"rank":"I","wins":228,"losses":192,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27099531","playerOrTeamName":"polymenakos","leaguePoints":36,"rank":"I","wins":574,"losses":547,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30822111","playerOrTeamName":"Xixauxas","leaguePoints":45,"rank":"I","wins":521,"losses":492,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"63327379","playerOrTeamName":"Shine EU","leaguePoints":15,"rank":"I","wins":239,"losses":209,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94418821","playerOrTeamName":"PSG B1anc","leaguePoints":114,"rank":"I","wins":342,"losses":268,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19920657","playerOrTeamName":"flaeKKer","leaguePoints":304,"rank":"I","wins":338,"losses":293,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29938680","playerOrTeamName":"Zeelebh","leaguePoints":91,"rank":"I","wins":342,"losses":314,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28396893","playerOrTeamName":"Don Bond","leaguePoints":160,"rank":"I","wins":248,"losses":220,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35074507","playerOrTeamName":"BTR Katare","leaguePoints":307,"rank":"I","wins":173,"losses":133,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"37750478","playerOrTeamName":"zachodni wiatr","leaguePoints":32,"rank":"I","wins":100,"losses":30,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"19372857","playerOrTeamName":"Airwaks","leaguePoints":38,"rank":"I","wins":189,"losses":161,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21774730","playerOrTeamName":"S0R3X155","leaguePoints":49,"rank":"I","wins":323,"losses":293,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19331430","playerOrTeamName":"Laursensen","leaguePoints":246,"rank":"I","wins":268,"losses":237,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37617929","playerOrTeamName":"DSP Taxer","leaguePoints":104,"rank":"I","wins":112,"losses":84,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"87418748","playerOrTeamName":"MySubsAreTheBEST","leaguePoints":307,"rank":"I","wins":224,"losses":186,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"20881158","playerOrTeamName":"SurpriseMFz","leaguePoints":160,"rank":"I","wins":472,"losses":449,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30711344","playerOrTeamName":"Adm no feels ","leaguePoints":98,"rank":"I","wins":201,"losses":174,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44512660","playerOrTeamName":"TH Rayito","leaguePoints":0,"rank":"I","wins":283,"losses":250,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"25259336","playerOrTeamName":"TeS U K","leaguePoints":17,"rank":"I","wins":588,"losses":561,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20076993","playerOrTeamName":"Syväsalmi","leaguePoints":143,"rank":"I","wins":430,"losses":391,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"51626956","playerOrTeamName":"Zergstingg","leaguePoints":229,"rank":"I","wins":259,"losses":224,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"58727186","playerOrTeamName":"xPeke fanboyy","leaguePoints":63,"rank":"I","wins":298,"losses":259,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"51797501","playerOrTeamName":"Plepsson","leaguePoints":188,"rank":"I","wins":172,"losses":137,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"32509170","playerOrTeamName":"Ready 2 Rumble","leaguePoints":39,"rank":"I","wins":114,"losses":77,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42256924","playerOrTeamName":"Caśper","leaguePoints":155,"rank":"I","wins":345,"losses":322,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72178319","playerOrTeamName":"MTC TA V3","leaguePoints":316,"rank":"I","wins":145,"losses":110,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31054322","playerOrTeamName":"Røy Mustang ","leaguePoints":181,"rank":"I","wins":341,"losses":314,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"29041498","playerOrTeamName":"Nice Guy Ben","leaguePoints":20,"rank":"I","wins":463,"losses":402,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20110160","playerOrTeamName":"G2 ZV3N","leaguePoints":299,"rank":"I","wins":268,"losses":222,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"97808617","playerOrTeamName":"Froschdealer XDD","leaguePoints":0,"rank":"I","wins":101,"losses":59,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24751264","playerOrTeamName":"Kitoru","leaguePoints":100,"rank":"I","wins":156,"losses":108,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31096976","playerOrTeamName":"garbageplayer1","leaguePoints":0,"rank":"I","wins":286,"losses":259,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"90828578","playerOrTeamName":"315363573","leaguePoints":92,"rank":"I","wins":254,"losses":212,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21309412","playerOrTeamName":"Prettyy","leaguePoints":315,"rank":"I","wins":131,"losses":96,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"71687538","playerOrTeamName":"Æggehoved","leaguePoints":31,"rank":"I","wins":533,"losses":527,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"23627306","playerOrTeamName":"G2V Send0o","leaguePoints":267,"rank":"I","wins":140,"losses":109,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"244732","playerOrTeamName":"Kìnzu","leaguePoints":48,"rank":"I","wins":461,"losses":441,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"19764420","playerOrTeamName":"InDívídu","leaguePoints":31,"rank":"I","wins":259,"losses":233,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"90670340","playerOrTeamName":"Vxin Leous","leaguePoints":59,"rank":"I","wins":144,"losses":105,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37266963","playerOrTeamName":"Poke Peel Win","leaguePoints":142,"rank":"I","wins":351,"losses":316,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"80019719","playerOrTeamName":"TeS ClaP","leaguePoints":0,"rank":"I","wins":357,"losses":326,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"93647556","playerOrTeamName":"Nameless Kïng","leaguePoints":239,"rank":"I","wins":285,"losses":232,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"62587601","playerOrTeamName":"Lumble","leaguePoints":39,"rank":"I","wins":473,"losses":442,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"79480804","playerOrTeamName":"OG BulletProof","leaguePoints":0,"rank":"I","wins":141,"losses":87,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"50997777","playerOrTeamName":"GGS Tiara","leaguePoints":28,"rank":"I","wins":149,"losses":114,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"93606884","playerOrTeamName":"Phantom Macan","leaguePoints":0,"rank":"I","wins":375,"losses":343,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"63591179","playerOrTeamName":"Monkey D Käseee","leaguePoints":0,"rank":"I","wins":409,"losses":371,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"20831311","playerOrTeamName":"Unknown Bäguette","leaguePoints":82,"rank":"I","wins":517,"losses":490,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"29472194","playerOrTeamName":"Dangot","leaguePoints":37,"rank":"I","wins":223,"losses":179,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"28879047","playerOrTeamName":"Son of Targamas","leaguePoints":19,"rank":"I","wins":160,"losses":125,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"67867479","playerOrTeamName":"Snake in water","leaguePoints":101,"rank":"I","wins":253,"losses":218,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30530144","playerOrTeamName":"iRoxxzor","leaguePoints":97,"rank":"I","wins":108,"losses":77,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":true},{"playerOrTeamId":"22519742","playerOrTeamName":"SpArkS InB","leaguePoints":207,"rank":"I","wins":274,"losses":233,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"84326864","playerOrTeamName":"Sir Likkrit","leaguePoints":174,"rank":"I","wins":382,"losses":355,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86787804","playerOrTeamName":"TrashylsTrash","leaguePoints":329,"rank":"I","wins":135,"losses":87,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"54687088","playerOrTeamName":"Liquidice8","leaguePoints":16,"rank":"I","wins":125,"losses":90,"veteran":false,"inactive":false,"freshBlood":true,"hotStreak":false},{"playerOrTeamId":"32601771","playerOrTeamName":"Oserv Vince","leaguePoints":72,"rank":"I","wins":192,"losses":158,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28327267","playerOrTeamName":"SmøK3r","leaguePoints":331,"rank":"I","wins":141,"losses":99,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false}]}
@@ -0,0 +1 @@
1
+ [{"leagueName":"Vladimir's Ravagers","tier":"BRONZE","queueType":"RANKED_SOLO_5x5","rank":"I","playerOrTeamId":"30743211","playerOrTeamName":"Riot intinig","leaguePoints":40,"wins":11,"losses":14,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false}]
@@ -0,0 +1 @@
1
+ [{"name":"Vladimir's Ravagers","tier":"BRONZE","queue":"RANKED_SOLO_5x5","entries":[{"playerOrTeamId":"33410079","playerOrTeamName":"Itsmeg3ma","leaguePoints":81,"rank":"II","wins":73,"losses":68,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30361143","playerOrTeamName":"Kvothlegend","leaguePoints":100,"rank":"IV","wins":11,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false,"miniSeries":{"target":2,"wins":1,"losses":0,"progress":"WNN"}},{"playerOrTeamId":"90946870","playerOrTeamName":"WaterJS","leaguePoints":19,"rank":"III","wins":35,"losses":57,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42854703","playerOrTeamName":"Riot kokanôôdles","leaguePoints":66,"rank":"III","wins":17,"losses":34,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"76861051","playerOrTeamName":"UltraPudim","leaguePoints":56,"rank":"III","wins":14,"losses":20,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"80538660","playerOrTeamName":"makotosa50","leaguePoints":63,"rank":"V","wins":10,"losses":22,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88447267","playerOrTeamName":"Lucays","leaguePoints":45,"rank":"IV","wins":40,"losses":34,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"73960774","playerOrTeamName":"Dav3stroyer","leaguePoints":61,"rank":"I","wins":8,"losses":10,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20518890","playerOrTeamName":"Arukhan","leaguePoints":0,"rank":"V","wins":4,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85858871","playerOrTeamName":"eblis63","leaguePoints":37,"rank":"I","wins":23,"losses":19,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"90768000","playerOrTeamName":"HelloMoutherFker","leaguePoints":95,"rank":"III","wins":7,"losses":12,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94417645","playerOrTeamName":"RagnekUK","leaguePoints":0,"rank":"IV","wins":5,"losses":5,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72517460","playerOrTeamName":"Kuki0334","leaguePoints":1,"rank":"II","wins":8,"losses":10,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88439883","playerOrTeamName":"Ranma69","leaguePoints":78,"rank":"IV","wins":54,"losses":87,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"92658505","playerOrTeamName":"Chachki Schnee","leaguePoints":83,"rank":"IV","wins":47,"losses":68,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85658189","playerOrTeamName":"aAstalynelidorn","leaguePoints":28,"rank":"I","wins":4,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"79371466","playerOrTeamName":"TornadoRaider","leaguePoints":7,"rank":"II","wins":74,"losses":53,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"79730643","playerOrTeamName":"M4dLucifer","leaguePoints":34,"rank":"III","wins":17,"losses":11,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"56664537","playerOrTeamName":"BardÒz","leaguePoints":46,"rank":"I","wins":11,"losses":18,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"52183333","playerOrTeamName":"checkaboum","leaguePoints":28,"rank":"III","wins":5,"losses":6,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"93267625","playerOrTeamName":"M3X0R","leaguePoints":0,"rank":"II","wins":67,"losses":56,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"56664377","playerOrTeamName":"xFruNico","leaguePoints":18,"rank":"II","wins":8,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85311055","playerOrTeamName":"RISE SON OF IRAN","leaguePoints":64,"rank":"V","wins":12,"losses":15,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30148160","playerOrTeamName":"Zagor007","leaguePoints":17,"rank":"III","wins":7,"losses":20,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"81077130","playerOrTeamName":"Nima solo","leaguePoints":75,"rank":"IV","wins":15,"losses":17,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"27402643","playerOrTeamName":"Bratvä","leaguePoints":100,"rank":"II","wins":17,"losses":18,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true,"miniSeries":{"target":2,"wins":1,"losses":0,"progress":"WNN"}},{"playerOrTeamId":"41867768","playerOrTeamName":"Riot Isa","leaguePoints":89,"rank":"III","wins":9,"losses":6,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"65452602","playerOrTeamName":"The Codex94","leaguePoints":44,"rank":"II","wins":8,"losses":17,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27333839","playerOrTeamName":"Steeelbird","leaguePoints":40,"rank":"I","wins":13,"losses":8,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"81471557","playerOrTeamName":"SalarAbodani","leaguePoints":68,"rank":"V","wins":47,"losses":95,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44274243","playerOrTeamName":"Riot Whiski","leaguePoints":0,"rank":"V","wins":3,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"73307593","playerOrTeamName":"MicroBr3w","leaguePoints":19,"rank":"I","wins":6,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"79549953","playerOrTeamName":"Skinnyminx","leaguePoints":0,"rank":"II","wins":20,"losses":20,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"32843418","playerOrTeamName":"rainbow flame","leaguePoints":54,"rank":"III","wins":28,"losses":39,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"60257691","playerOrTeamName":"Snnupy X","leaguePoints":0,"rank":"I","wins":11,"losses":18,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70293014","playerOrTeamName":"Soundwave7","leaguePoints":40,"rank":"III","wins":23,"losses":26,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"82631315","playerOrTeamName":"proximacentaur1","leaguePoints":0,"rank":"V","wins":57,"losses":98,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"81127169","playerOrTeamName":"HajPouya85","leaguePoints":29,"rank":"IV","wins":6,"losses":5,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"45961900","playerOrTeamName":"ArcaneLustre","leaguePoints":25,"rank":"II","wins":7,"losses":12,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20512028","playerOrTeamName":"DazzeI","leaguePoints":28,"rank":"II","wins":7,"losses":4,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33657850","playerOrTeamName":"zop345","leaguePoints":38,"rank":"IV","wins":7,"losses":7,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"77727593","playerOrTeamName":"Azuminka","leaguePoints":23,"rank":"III","wins":7,"losses":23,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27394729","playerOrTeamName":"GNSaNKa","leaguePoints":100,"rank":"IV","wins":143,"losses":139,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true,"miniSeries":{"target":2,"wins":1,"losses":0,"progress":"WNN"}},{"playerOrTeamId":"35731239","playerOrTeamName":"DeathSpringer","leaguePoints":0,"rank":"IV","wins":20,"losses":23,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72137301","playerOrTeamName":"Shoooteer","leaguePoints":97,"rank":"III","wins":55,"losses":54,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88300547","playerOrTeamName":"Zampaktoda","leaguePoints":65,"rank":"V","wins":23,"losses":31,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"91906846","playerOrTeamName":"Cardenas","leaguePoints":0,"rank":"IV","wins":23,"losses":32,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"45838434","playerOrTeamName":"Odemix","leaguePoints":66,"rank":"II","wins":10,"losses":15,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"80617943","playerOrTeamName":"morsim","leaguePoints":75,"rank":"V","wins":22,"losses":22,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"91100009","playerOrTeamName":"BeunhaasZz","leaguePoints":71,"rank":"II","wins":7,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"51418752","playerOrTeamName":"HAZEMN1","leaguePoints":97,"rank":"III","wins":27,"losses":32,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true,"miniSeries":{"target":2,"wins":1,"losses":1,"progress":"WLN"}},{"playerOrTeamId":"49521741","playerOrTeamName":"SoyRuboh","leaguePoints":75,"rank":"II","wins":51,"losses":51,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44716992","playerOrTeamName":"SteWND","leaguePoints":0,"rank":"V","wins":19,"losses":24,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"38857593","playerOrTeamName":"Letertis","leaguePoints":52,"rank":"II","wins":9,"losses":7,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27938937","playerOrTeamName":"philippio","leaguePoints":52,"rank":"II","wins":10,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"84069522","playerOrTeamName":"Riot Yitzy","leaguePoints":66,"rank":"I","wins":33,"losses":29,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"25940632","playerOrTeamName":"DBCobta","leaguePoints":100,"rank":"III","wins":16,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true,"miniSeries":{"target":2,"wins":0,"losses":0,"progress":"NNN"}},{"playerOrTeamId":"92347731","playerOrTeamName":"OLDERITE","leaguePoints":0,"rank":"I","wins":5,"losses":8,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"75277794","playerOrTeamName":"TheShadow0fDeath","leaguePoints":14,"rank":"IV","wins":122,"losses":144,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"60638957","playerOrTeamName":"simyleshd","leaguePoints":0,"rank":"IV","wins":10,"losses":19,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"75037146","playerOrTeamName":"Dhiadi","leaguePoints":44,"rank":"III","wins":5,"losses":14,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21207214","playerOrTeamName":"Meneertje Danny","leaguePoints":0,"rank":"III","wins":2,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"75332531","playerOrTeamName":"Kasa1278","leaguePoints":47,"rank":"III","wins":53,"losses":53,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"77180024","playerOrTeamName":"mcmarcusman","leaguePoints":0,"rank":"IV","wins":3,"losses":7,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31541076","playerOrTeamName":"mdngow","leaguePoints":76,"rank":"I","wins":18,"losses":18,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"58394808","playerOrTeamName":"EwtrEmMan","leaguePoints":35,"rank":"II","wins":19,"losses":34,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"84339758","playerOrTeamName":"YT LoLRecordz","leaguePoints":41,"rank":"I","wins":10,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"80268604","playerOrTeamName":"DontFollowtheSun","leaguePoints":35,"rank":"I","wins":63,"losses":62,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35001247","playerOrTeamName":"Kîsa","leaguePoints":67,"rank":"I","wins":22,"losses":21,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"93537952","playerOrTeamName":"BadWilli","leaguePoints":51,"rank":"V","wins":10,"losses":12,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"89858342","playerOrTeamName":"1snipez2","leaguePoints":17,"rank":"III","wins":177,"losses":190,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"65138149","playerOrTeamName":"LastOfTheUchiha","leaguePoints":0,"rank":"V","wins":28,"losses":59,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30743211","playerOrTeamName":"Riot intinig","leaguePoints":40,"rank":"I","wins":11,"losses":14,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"49687005","playerOrTeamName":"Dogucan","leaguePoints":53,"rank":"III","wins":45,"losses":60,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43796313","playerOrTeamName":"Muffin294","leaguePoints":0,"rank":"III","wins":21,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"91968429","playerOrTeamName":"xXBananenwaffelX","leaguePoints":0,"rank":"IV","wins":15,"losses":37,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"34574567","playerOrTeamName":"iOnly Press QWER","leaguePoints":0,"rank":"I","wins":5,"losses":6,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"80397629","playerOrTeamName":"4RMOR","leaguePoints":29,"rank":"V","wins":16,"losses":14,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"82731192","playerOrTeamName":"ZarraJagzz","leaguePoints":49,"rank":"V","wins":15,"losses":21,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"27692376","playerOrTeamName":"leonelwolf","leaguePoints":47,"rank":"III","wins":29,"losses":26,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20383798","playerOrTeamName":"crashzajuve","leaguePoints":4,"rank":"II","wins":30,"losses":32,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"71187855","playerOrTeamName":"Takimus","leaguePoints":27,"rank":"V","wins":6,"losses":6,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"78137997","playerOrTeamName":"dkseb31","leaguePoints":50,"rank":"IV","wins":24,"losses":36,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"40528892","playerOrTeamName":"magicvens","leaguePoints":0,"rank":"IV","wins":84,"losses":155,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"93177873","playerOrTeamName":"BlackShuriken","leaguePoints":100,"rank":"IV","wins":31,"losses":62,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false,"miniSeries":{"target":2,"wins":1,"losses":0,"progress":"WNN"}},{"playerOrTeamId":"79646992","playerOrTeamName":"HuntingDad","leaguePoints":42,"rank":"I","wins":106,"losses":118,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35196175","playerOrTeamName":"combin4tion","leaguePoints":0,"rank":"IV","wins":6,"losses":5,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"367773","playerOrTeamName":"Ananas Johannes","leaguePoints":70,"rank":"III","wins":16,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33559153","playerOrTeamName":"Nädir","leaguePoints":75,"rank":"IV","wins":135,"losses":173,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"21257724","playerOrTeamName":"aMan Called Hero","leaguePoints":67,"rank":"IV","wins":10,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"37850168","playerOrTeamName":"DaMarkDaMark","leaguePoints":100,"rank":"I","wins":22,"losses":14,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true,"miniSeries":{"target":3,"wins":1,"losses":0,"progress":"WNNNN"}},{"playerOrTeamId":"57009580","playerOrTeamName":"Liverpool2001","leaguePoints":17,"rank":"III","wins":71,"losses":94,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"35169502","playerOrTeamName":"ricardo98286","leaguePoints":69,"rank":"II","wins":12,"losses":17,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"79690638","playerOrTeamName":"omar4mike","leaguePoints":0,"rank":"II","wins":66,"losses":53,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"44178927","playerOrTeamName":"darknight721","leaguePoints":22,"rank":"V","wins":6,"losses":6,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72193349","playerOrTeamName":"Schoggibaer","leaguePoints":26,"rank":"II","wins":21,"losses":22,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"61370706","playerOrTeamName":"Jorgeb11","leaguePoints":12,"rank":"II","wins":7,"losses":5,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22209741","playerOrTeamName":"Batucada","leaguePoints":75,"rank":"III","wins":54,"losses":39,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"46367163","playerOrTeamName":"PapEnWors","leaguePoints":70,"rank":"III","wins":9,"losses":5,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36616937","playerOrTeamName":"Rootto","leaguePoints":7,"rank":"II","wins":149,"losses":141,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"30142764","playerOrTeamName":"CrazyPantZZ","leaguePoints":26,"rank":"III","wins":42,"losses":50,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44472289","playerOrTeamName":"U p","leaguePoints":0,"rank":"V","wins":3,"losses":8,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"80720837","playerOrTeamName":" JD Liciouz ","leaguePoints":94,"rank":"III","wins":14,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88348554","playerOrTeamName":"brunozeus68","leaguePoints":51,"rank":"III","wins":6,"losses":24,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"43024144","playerOrTeamName":"vitusuarez","leaguePoints":20,"rank":"IV","wins":12,"losses":28,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86078046","playerOrTeamName":"LegacySenpai","leaguePoints":50,"rank":"IV","wins":52,"losses":73,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"45862534","playerOrTeamName":"MémoTheKiller","leaguePoints":18,"rank":"IV","wins":114,"losses":153,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"94440872","playerOrTeamName":"tempname9715","leaguePoints":0,"rank":"III","wins":0,"losses":12,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"48898827","playerOrTeamName":"xXTheZoneXx","leaguePoints":0,"rank":"II","wins":2,"losses":8,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"92750256","playerOrTeamName":"LordNicholas","leaguePoints":0,"rank":"III","wins":25,"losses":39,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"80408471","playerOrTeamName":"Shacoselle","leaguePoints":4,"rank":"III","wins":18,"losses":19,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"79709320","playerOrTeamName":"SKT T1 SwagGelo","leaguePoints":26,"rank":"III","wins":13,"losses":7,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"70026969","playerOrTeamName":"Eololee","leaguePoints":22,"rank":"II","wins":185,"losses":191,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"70027703","playerOrTeamName":"yilmazkoker","leaguePoints":40,"rank":"IV","wins":11,"losses":20,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31219624","playerOrTeamName":"Ulderigo","leaguePoints":35,"rank":"IV","wins":8,"losses":13,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"36186847","playerOrTeamName":"MR Alwayslose","leaguePoints":34,"rank":"II","wins":13,"losses":20,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"86661254","playerOrTeamName":"LTCxGuusZ","leaguePoints":34,"rank":"III","wins":4,"losses":13,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24205290","playerOrTeamName":"GaibaSs","leaguePoints":8,"rank":"III","wins":19,"losses":31,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"52685192","playerOrTeamName":"GinTheShinigami","leaguePoints":0,"rank":"II","wins":13,"losses":21,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"80089994","playerOrTeamName":"Biggi123","leaguePoints":0,"rank":"II","wins":18,"losses":15,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"77847810","playerOrTeamName":"MrD0m1","leaguePoints":0,"rank":"II","wins":17,"losses":15,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22332581","playerOrTeamName":"Lerida","leaguePoints":21,"rank":"II","wins":21,"losses":28,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"65810708","playerOrTeamName":"killler4321","leaguePoints":25,"rank":"IV","wins":15,"losses":19,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"52462843","playerOrTeamName":"Geminize Daker","leaguePoints":55,"rank":"I","wins":9,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"42929136","playerOrTeamName":"Orozco","leaguePoints":0,"rank":"III","wins":18,"losses":21,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"60732628","playerOrTeamName":"Nîsaya","leaguePoints":0,"rank":"I","wins":3,"losses":11,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"31288601","playerOrTeamName":"atmae","leaguePoints":0,"rank":"II","wins":7,"losses":3,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"95507156","playerOrTeamName":"QuickOos","leaguePoints":75,"rank":"II","wins":6,"losses":12,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"78018530","playerOrTeamName":"owner jimmy","leaguePoints":4,"rank":"II","wins":28,"losses":29,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"61639662","playerOrTeamName":"relic1234","leaguePoints":0,"rank":"V","wins":6,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"68836852","playerOrTeamName":"evilflo","leaguePoints":0,"rank":"V","wins":18,"losses":31,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"76719447","playerOrTeamName":"Darckdluffy","leaguePoints":65,"rank":"II","wins":11,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"77179910","playerOrTeamName":"FatherKledCrilly","leaguePoints":9,"rank":"III","wins":3,"losses":11,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"57067123","playerOrTeamName":"xxXFitalizeXxx","leaguePoints":79,"rank":"V","wins":10,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"22151562","playerOrTeamName":"xCallously","leaguePoints":58,"rank":"II","wins":74,"losses":62,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"51985471","playerOrTeamName":"TalesOfBerseria","leaguePoints":0,"rank":"III","wins":22,"losses":21,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"20295089","playerOrTeamName":"Padros94","leaguePoints":52,"rank":"V","wins":56,"losses":78,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"53282925","playerOrTeamName":"Otakuburakku","leaguePoints":38,"rank":"II","wins":44,"losses":51,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"68358179","playerOrTeamName":"xLeyynOo","leaguePoints":0,"rank":"III","wins":4,"losses":6,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"33279042","playerOrTeamName":"FictionAmaterasu","leaguePoints":63,"rank":"IV","wins":52,"losses":53,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"44969609","playerOrTeamName":"SkorpioX87","leaguePoints":71,"rank":"III","wins":15,"losses":13,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"51984663","playerOrTeamName":"ThunderNaTSu","leaguePoints":22,"rank":"V","wins":7,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"24416177","playerOrTeamName":"Ajaxfan","leaguePoints":24,"rank":"II","wins":4,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"85008141","playerOrTeamName":"miketyson15","leaguePoints":67,"rank":"V","wins":65,"losses":87,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"56904070","playerOrTeamName":"LeoVaca","leaguePoints":100,"rank":"II","wins":26,"losses":30,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":true,"miniSeries":{"target":2,"wins":0,"losses":0,"progress":"NNN"}},{"playerOrTeamId":"94788593","playerOrTeamName":"DontDoDucks","leaguePoints":0,"rank":"III","wins":21,"losses":27,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"28078142","playerOrTeamName":"PainW","leaguePoints":0,"rank":"IV","wins":4,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"82347471","playerOrTeamName":"robbanthebaws1","leaguePoints":73,"rank":"IV","wins":15,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72029764","playerOrTeamName":"BNS BonyNoScope","leaguePoints":52,"rank":"V","wins":13,"losses":18,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"87007273","playerOrTeamName":"neibenj33470","leaguePoints":63,"rank":"II","wins":49,"losses":67,"veteran":true,"inactive":false,"freshBlood":false,"hotStreak":true},{"playerOrTeamId":"26458795","playerOrTeamName":"BlindedPK","leaguePoints":75,"rank":"III","wins":10,"losses":9,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"32087820","playerOrTeamName":"imjennhag","leaguePoints":28,"rank":"V","wins":52,"losses":57,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"79267612","playerOrTeamName":"Zerf Zerfa","leaguePoints":0,"rank":"III","wins":13,"losses":16,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"23335281","playerOrTeamName":"PhanatíX","leaguePoints":65,"rank":"II","wins":15,"losses":20,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72169037","playerOrTeamName":"Thrásh","leaguePoints":28,"rank":"II","wins":5,"losses":14,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"78688402","playerOrTeamName":"r4gn4rd","leaguePoints":50,"rank":"V","wins":27,"losses":36,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"92722344","playerOrTeamName":"xinzhang1993","leaguePoints":35,"rank":"I","wins":15,"losses":17,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"91567160","playerOrTeamName":"Bumin Bilal","leaguePoints":0,"rank":"I","wins":29,"losses":22,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"88107746","playerOrTeamName":"just 2 it ","leaguePoints":84,"rank":"II","wins":25,"losses":45,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false,"miniSeries":{"target":2,"wins":1,"losses":1,"progress":"WLN"}},{"playerOrTeamId":"67527883","playerOrTeamName":"Lexsuse","leaguePoints":58,"rank":"V","wins":37,"losses":39,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"76017452","playerOrTeamName":"Dale Ranked","leaguePoints":83,"rank":"II","wins":33,"losses":30,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false,"miniSeries":{"target":2,"wins":1,"losses":1,"progress":"WLN"}},{"playerOrTeamId":"30827272","playerOrTeamName":"ScholesPT","leaguePoints":64,"rank":"II","wins":8,"losses":10,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"72781665","playerOrTeamName":"fenatic neon","leaguePoints":53,"rank":"III","wins":21,"losses":21,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false},{"playerOrTeamId":"32918639","playerOrTeamName":"Now Flush","leaguePoints":45,"rank":"IV","wins":17,"losses":20,"veteran":false,"inactive":false,"freshBlood":false,"hotStreak":false}]}]
@@ -0,0 +1 @@
1
+ {"name":"EU West","slug":"euw","locales":["en_GB","fr_FR","it_IT","es_ES","de_DE"],"hostname":"prod.euw1.lol.riotgames.com","region_tag":"eu","services":[{"name":"Game","slug":"game","status":"online","incidents":[{"id":4365,"active":true,"created_at":"2017-05-15T19:39:34.590Z","updates":[{"id":"591a03f6f76f3d01008927e0","author":"","content":"On 17/05/17, starting at 03:30 UK Time (02:30 UTC), ranked queues will be disabled in preparation for patch 7.10. At 05:00 UK Time (04:00 UTC), the servers will be shut down and all games currently in progress will end in a draw and stats will not be recorded. We estimate the battlegrounds will be unavailable for 3 hours.","severity":"info","created_at":"2017-05-15T19:39:34.590Z","updated_at":"2017-05-15T19:39:34.590Z","translations":[{"locale":"fr_FR","heading":"7.10","content":"Le 17/05/17 à partir de 04:30 heure de l'hexagone (02:30 UTC), les parties classées seront désactivées pour préparer le patch 7.10. À 06:00 (04:00 UTC), les serveurs seront fermés, toutes les parties en cours prendront fin sur un match nul et les statistiques ne seront pas prises en compte. Nous estimons l'indisponibilité des champs de justice à 3 heures."},{"locale":"it_IT","heading":"7.10","content":"Dalle 04:30 italiane (02:30 UTC) del 17/05/17, le code classificate verranno disabilitate in preparazione per la patch 7.10. Alle 06:00 italiane (04:00 UTC) del 17/05/17, i server andranno offline e tutte le partite in corso finiranno in un pareggio e le statistiche non verranno registrate. Le nostre arene dovrebbero essere offline per circa 3 ore."},{"locale":"es_ES","heading":"7.10","content":"El 17/05/17, desde las 04:30 horario peninsular (02:30 UTC), las colas de clasificatorias estarán desactivadas en preparación para la versión 7.10. A las 06:00 horario peninsular (04:00 UTC), los servidores se deshabilitarán, las partidas que estén en juego acabarán con empate y las estadísticas no serán registradas. Los campos de batalla estarán desactivados durante unas 3 horas."},{"locale":"de_DE","heading":"7.10","content":"Am 17/05/17, um 04:30 Uhr deutscher Zeit (02:30 UTC), werden die Ranglistenwarteschlangen in Vorbereitung auf den Patch 7.10 deaktiviert. Um 06:00 Uhr deutscher Zeit (04:00 UTC), werden die Server heruntergefahren und alle laufenden Spiele werden in einem Unentschieden enden, wobei keine Statistiken aufgezeichnet werden. Wir gehen davon aus, dass die Richtfelder für etwa 3 Stunden nicht verfügbar sein werden."}]}]}]},{"name":"Store","slug":"store","status":"online","incidents":[]},{"name":"Website","slug":"website","status":"online","incidents":[]},{"name":"Client","slug":"client","status":"online","incidents":[]},{"name":"League client update","slug":"league client update","status":"online","incidents":[]}]}
@@ -0,0 +1 @@
1
+ {"summonerId":100012,"pages":[{"id":34059355,"name":"ad critique","current":false,"masteries":[{"id":6343,"rank":1},{"id":6131,"rank":5},{"id":6122,"rank":1},{"id":6331,"rank":5},{"id":6111,"rank":5},{"id":6141,"rank":1},{"id":6312,"rank":5},{"id":6322,"rank":1},{"id":6161,"rank":1},{"id":6151,"rank":5}]},{"id":34059356,"name":"ad vitesse","current":false,"masteries":[{"id":6343,"rank":1},{"id":6131,"rank":5},{"id":6122,"rank":1},{"id":6331,"rank":5},{"id":6111,"rank":5},{"id":6141,"rank":1},{"id":6312,"rank":5},{"id":6322,"rank":1},{"id":6162,"rank":1},{"id":6151,"rank":5}]},{"id":34059357,"name":"cast AP","current":false,"masteries":[{"id":6343,"rank":1},{"id":6131,"rank":5},{"id":6114,"rank":5},{"id":6122,"rank":1},{"id":6331,"rank":5},{"id":6312,"rank":5},{"id":6142,"rank":1},{"id":6322,"rank":1},{"id":6154,"rank":5},{"id":6164,"rank":1}]},{"id":34059358,"name":"Burst AP","current":false,"masteries":[{"id":6343,"rank":1},{"id":6114,"rank":5},{"id":6122,"rank":1},{"id":6331,"rank":5},{"id":6312,"rank":5},{"id":6142,"rank":1},{"id":6322,"rank":1},{"id":6351,"rank":5},{"id":6134,"rank":5},{"id":6362,"rank":1}]},{"id":34059359,"name":"tank","current":false,"masteries":[{"id":6121,"rank":1},{"id":6223,"rank":1},{"id":6114,"rank":5},{"id":6242,"rank":1},{"id":6232,"rank":3},{"id":6312,"rank":5},{"id":6263,"rank":1},{"id":6322,"rank":1},{"id":6212,"rank":5},{"id":6231,"rank":2},{"id":6252,"rank":5}]},{"id":34059360,"name":"support agressif","current":false,"masteries":[{"id":6342,"rank":1},{"id":6121,"rank":1},{"id":6311,"rank":5},{"id":6131,"rank":5},{"id":6114,"rank":5},{"id":6331,"rank":5},{"id":6142,"rank":1},{"id":6322,"rank":1},{"id":6154,"rank":5},{"id":6164,"rank":1}]},{"id":34059361,"name":"support deffensif","current":false,"masteries":[{"id":6342,"rank":1},{"id":6241,"rank":1},{"id":6311,"rank":5},{"id":6221,"rank":1},{"id":6211,"rank":5},{"id":6322,"rank":1},{"id":6332,"rank":5},{"id":6231,"rank":5},{"id":6363,"rank":1},{"id":6352,"rank":5}]},{"id":34059362,"name":"jungle bruiser","current":false,"masteries":[{"id":6121,"rank":1},{"id":6343,"rank":1},{"id":6311,"rank":5},{"id":6114,"rank":5},{"id":6331,"rank":5},{"id":6321,"rank":1},{"id":6142,"rank":1},{"id":6351,"rank":5},{"id":6134,"rank":5},{"id":6362,"rank":1}]},{"id":34059363,"name":"jungle mage","current":false,"masteries":[{"id":6121,"rank":1},{"id":6343,"rank":1},{"id":6311,"rank":5},{"id":6131,"rank":5},{"id":6114,"rank":5},{"id":6331,"rank":5},{"id":6321,"rank":1},{"id":6142,"rank":1},{"id":6154,"rank":5},{"id":6164,"rank":1}]},{"id":34059364,"name":"AP DE CHEZ AP","current":true,"masteries":[{"id":6121,"rank":1},{"id":6114,"rank":5},{"id":6311,"rank":5},{"id":6343,"rank":1},{"id":6331,"rank":5},{"id":6142,"rank":1},{"id":6322,"rank":1},{"id":6351,"rank":5},{"id":6134,"rank":5},{"id":6362,"rank":1}]}]}
@@ -0,0 +1 @@
1
+ {"gameId":2972702365,"platformId":"EUW1","gameCreation":1481654475333,"gameDuration":1514,"queueId":0,"mapId":11,"seasonId":8,"gameVersion":"6.24.168.1268","gameMode":"CLASSIC","gameType":"CUSTOM_GAME","teams":[{"teamId":100,"win":"Win","firstBlood":true,"firstTower":true,"firstInhibitor":true,"firstBaron":true,"firstDragon":true,"firstRiftHerald":false,"towerKills":9,"inhibitorKills":1,"baronKills":1,"dragonKills":3,"vilemawKills":0,"riftHeraldKills":0,"dominionVictoryScore":0,"bans":[{"championId":121,"pickTurn":1},{"championId":41,"pickTurn":3},{"championId":78,"pickTurn":5}]},{"teamId":200,"win":"Fail","firstBlood":false,"firstTower":false,"firstInhibitor":false,"firstBaron":false,"firstDragon":false,"firstRiftHerald":false,"towerKills":2,"inhibitorKills":0,"baronKills":0,"dragonKills":0,"vilemawKills":0,"riftHeraldKills":0,"dominionVictoryScore":0,"bans":[{"championId":7,"pickTurn":2},{"championId":134,"pickTurn":4},{"championId":55,"pickTurn":6}]}],"participants":[{"participantId":1,"teamId":100,"championId":57,"spell1Id":4,"spell2Id":12,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6122,"rank":1},{"masteryId":6134,"rank":5},{"masteryId":6143,"rank":1},{"masteryId":6211,"rank":5},{"masteryId":6223,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6251,"rank":5},{"masteryId":6262,"rank":1}],"runes":[{"runeId":5247,"rank":9},{"runeId":5290,"rank":9},{"runeId":5318,"rank":9},{"runeId":5357,"rank":3}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":1,"win":true,"item0":1056,"item1":3211,"item2":1028,"item3":3068,"item4":3025,"item5":3111,"item6":3340,"kills":1,"deaths":2,"assists":11,"largestKillingSpree":0,"largestMultiKill":1,"killingSprees":0,"longestTimeSpentLiving":1079,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":112612,"magicDamageDealt":89519,"physicalDamageDealt":23093,"trueDamageDealt":0,"largestCriticalStrike":0,"totalDamageDealtToChampions":13447,"magicDamageDealtToChampions":11117,"physicalDamageDealtToChampions":2330,"trueDamageDealtToChampions":0,"totalHeal":3602,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":15042,"magicalDamageTaken":6334,"physicalDamageTaken":7035,"trueDamageTaken":1672,"goldEarned":10313,"goldSpent":9360,"turretKills":2,"inhibitorKills":0,"totalMinionsKilled":192,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"totalTimeCrowdControlDealt":533,"champLevel":15,"visionWardsBoughtInGame":0,"sightWardsBoughtInGame":0,"wardsPlaced":9,"wardsKilled":4,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":true,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":1,"creepsPerMinDeltas":{"10-20":8.0,"0-10":7.300000000000001},"xpPerMinDeltas":{"10-20":511.3,"0-10":468.9},"goldPerMinDeltas":{"10-20":373.1,"0-10":340.5},"csDiffPerMinDeltas":{"10-20":0.5,"0-10":1.1000000000000005},"xpDiffPerMinDeltas":{"10-20":70.30000000000001,"0-10":75.60000000000002},"damageTakenPerMinDeltas":{"10-20":635.8,"0-10":160.89999999999998},"damageTakenDiffPerMinDeltas":{"10-20":-216.5,"0-10":-311.2},"role":"SOLO","lane":"TOP"}},{"participantId":2,"teamId":100,"championId":64,"spell1Id":4,"spell2Id":11,"masteries":[{"masteryId":6111,"rank":5},{"masteryId":6123,"rank":1},{"masteryId":6134,"rank":5},{"masteryId":6142,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6323,"rank":1},{"masteryId":6331,"rank":5},{"masteryId":6341,"rank":1},{"masteryId":6351,"rank":5},{"masteryId":6362,"rank":1}],"runes":[{"runeId":5245,"rank":9},{"runeId":5290,"rank":3},{"runeId":5295,"rank":6},{"runeId":5317,"rank":9},{"runeId":5337,"rank":3}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":2,"win":true,"item0":3142,"item1":3143,"item2":3117,"item3":3211,"item4":3067,"item5":1408,"item6":3340,"kills":12,"deaths":1,"assists":10,"largestKillingSpree":11,"largestMultiKill":2,"killingSprees":1,"longestTimeSpentLiving":524,"doubleKills":1,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":155666,"magicDamageDealt":20587,"physicalDamageDealt":125239,"trueDamageDealt":9840,"largestCriticalStrike":0,"totalDamageDealtToChampions":19731,"magicDamageDealtToChampions":2673,"physicalDamageDealtToChampions":16970,"trueDamageDealtToChampions":88,"totalHeal":5771,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":19710,"magicalDamageTaken":5817,"physicalDamageTaken":13218,"trueDamageTaken":674,"goldEarned":12679,"goldSpent":11700,"turretKills":2,"inhibitorKills":1,"totalMinionsKilled":20,"neutralMinionsKilled":103,"neutralMinionsKilledTeamJungle":44,"neutralMinionsKilledEnemyJungle":59,"totalTimeCrowdControlDealt":744,"champLevel":14,"visionWardsBoughtInGame":3,"sightWardsBoughtInGame":0,"wardsPlaced":21,"wardsKilled":1,"firstBloodKill":true,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":true,"firstInhibitorKill":true,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":2,"creepsPerMinDeltas":{"10-20":1.0,"0-10":0.4},"xpPerMinDeltas":{"10-20":599.4,"0-10":344.1},"goldPerMinDeltas":{"10-20":584.0,"0-10":300.1},"csDiffPerMinDeltas":{"10-20":0.9,"0-10":0.30000000000000004},"xpDiffPerMinDeltas":{"10-20":260.29999999999995,"0-10":50.5},"damageTakenPerMinDeltas":{"10-20":807.4,"0-10":640.0},"damageTakenDiffPerMinDeltas":{"10-20":-64.5,"0-10":146.2},"role":"NONE","lane":"JUNGLE"}},{"participantId":3,"teamId":100,"championId":13,"spell1Id":4,"spell2Id":6,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6121,"rank":1},{"masteryId":6131,"rank":5},{"masteryId":6142,"rank":1},{"masteryId":6211,"rank":5},{"masteryId":6221,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6251,"rank":5},{"masteryId":6262,"rank":1}],"runes":[{"runeId":5273,"rank":9},{"runeId":5289,"rank":3},{"runeId":5296,"rank":6},{"runeId":5316,"rank":9},{"runeId":5365,"rank":3}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":3,"win":true,"item0":3070,"item1":3111,"item2":0,"item3":3001,"item4":3027,"item5":0,"item6":3363,"kills":3,"deaths":1,"assists":5,"largestKillingSpree":2,"largestMultiKill":1,"killingSprees":1,"longestTimeSpentLiving":1209,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":108566,"magicDamageDealt":96136,"physicalDamageDealt":12430,"trueDamageDealt":0,"largestCriticalStrike":699,"totalDamageDealtToChampions":8751,"magicDamageDealtToChampions":8159,"physicalDamageDealtToChampions":592,"trueDamageDealtToChampions":0,"totalHeal":1403,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":7212,"magicalDamageTaken":2709,"physicalDamageTaken":3306,"trueDamageTaken":1196,"goldEarned":10076,"goldSpent":8125,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":162,"neutralMinionsKilled":4,"neutralMinionsKilledTeamJungle":2,"neutralMinionsKilledEnemyJungle":2,"totalTimeCrowdControlDealt":11,"champLevel":14,"visionWardsBoughtInGame":7,"sightWardsBoughtInGame":0,"wardsPlaced":17,"wardsKilled":3,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":3,"creepsPerMinDeltas":{"10-20":7.5,"0-10":7.5},"xpPerMinDeltas":{"10-20":506.9,"0-10":438.29999999999995},"goldPerMinDeltas":{"10-20":426.6,"0-10":268.8},"csDiffPerMinDeltas":{"10-20":-1.8000000000000003,"0-10":-1.6999999999999997},"xpDiffPerMinDeltas":{"10-20":-2.400000000000034,"0-10":-31.0},"damageTakenPerMinDeltas":{"10-20":216.89999999999998,"0-10":171.8},"damageTakenDiffPerMinDeltas":{"10-20":-200.20000000000005,"0-10":-35.29999999999999},"role":"SOLO","lane":"MIDDLE"}},{"participantId":4,"teamId":100,"championId":202,"spell1Id":4,"spell2Id":7,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6121,"rank":1},{"masteryId":6134,"rank":5},{"masteryId":6143,"rank":1},{"masteryId":6151,"rank":5},{"masteryId":6164,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6331,"rank":5},{"masteryId":6343,"rank":1}],"runes":[{"runeId":5245,"rank":9},{"runeId":5275,"rank":4},{"runeId":5289,"rank":5},{"runeId":5317,"rank":9},{"runeId":5335,"rank":3}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":4,"win":true,"item0":3508,"item1":3094,"item2":3140,"item3":3009,"item4":1037,"item5":1055,"item6":3363,"kills":8,"deaths":1,"assists":4,"largestKillingSpree":4,"largestMultiKill":2,"killingSprees":2,"longestTimeSpentLiving":873,"doubleKills":1,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":155523,"magicDamageDealt":3953,"physicalDamageDealt":151289,"trueDamageDealt":280,"largestCriticalStrike":839,"totalDamageDealtToChampions":18355,"magicDamageDealtToChampions":2753,"physicalDamageDealtToChampions":15602,"trueDamageDealtToChampions":0,"totalHeal":1067,"totalUnitsHealed":2,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":5048,"magicalDamageTaken":1870,"physicalDamageTaken":3135,"trueDamageTaken":42,"goldEarned":12279,"goldSpent":9900,"turretKills":4,"inhibitorKills":0,"totalMinionsKilled":232,"neutralMinionsKilled":2,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":2,"totalTimeCrowdControlDealt":56,"champLevel":13,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":0,"wardsPlaced":8,"wardsKilled":1,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":4,"creepsPerMinDeltas":{"10-20":11.6,"0-10":8.2},"xpPerMinDeltas":{"10-20":481.5,"0-10":327.1},"goldPerMinDeltas":{"10-20":533.2,"0-10":330.8},"csDiffPerMinDeltas":{"10-20":0.5499999999999998,"0-10":-0.5499999999999998},"xpDiffPerMinDeltas":{"10-20":12.55000000000004,"0-10":26.85000000000005},"damageTakenPerMinDeltas":{"10-20":263.3,"0-10":129.4},"damageTakenDiffPerMinDeltas":{"10-20":-251.64999999999992,"0-10":-113.49999999999999},"role":"DUO_CARRY","lane":"BOTTOM"}},{"participantId":5,"teamId":100,"championId":43,"spell1Id":3,"spell2Id":4,"masteries":[{"masteryId":6211,"rank":5},{"masteryId":6223,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6332,"rank":5},{"masteryId":6341,"rank":1},{"masteryId":6352,"rank":5},{"masteryId":6363,"rank":1}],"runes":[{"runeId":5273,"rank":9},{"runeId":5297,"rank":9},{"runeId":5315,"rank":9},{"runeId":5347,"rank":2},{"runeId":5357,"rank":1}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":5,"win":true,"item0":0,"item1":3107,"item2":2301,"item3":0,"item4":3158,"item5":1033,"item6":3364,"kills":0,"deaths":1,"assists":15,"largestKillingSpree":0,"largestMultiKill":0,"killingSprees":0,"longestTimeSpentLiving":906,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":23658,"magicDamageDealt":15121,"physicalDamageDealt":8536,"trueDamageDealt":0,"largestCriticalStrike":0,"totalDamageDealtToChampions":6211,"magicDamageDealtToChampions":5187,"physicalDamageDealtToChampions":1024,"trueDamageDealtToChampions":0,"totalHeal":1383,"totalUnitsHealed":4,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":7019,"magicalDamageTaken":3137,"physicalDamageTaken":3031,"trueDamageTaken":849,"goldEarned":7653,"goldSpent":6600,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":11,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"totalTimeCrowdControlDealt":163,"champLevel":12,"visionWardsBoughtInGame":8,"sightWardsBoughtInGame":0,"wardsPlaced":29,"wardsKilled":6,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":5,"creepsPerMinDeltas":{"10-20":0.4,"0-10":0.30000000000000004},"xpPerMinDeltas":{"10-20":340.9,"0-10":310.6},"goldPerMinDeltas":{"10-20":292.70000000000005,"0-10":182.0},"csDiffPerMinDeltas":{"10-20":0.5499999999999998,"0-10":-0.5499999999999998},"xpDiffPerMinDeltas":{"10-20":12.55000000000004,"0-10":26.85000000000005},"damageTakenPerMinDeltas":{"10-20":262.6,"0-10":223.6},"damageTakenDiffPerMinDeltas":{"10-20":-251.64999999999992,"0-10":-113.49999999999999},"role":"DUO_SUPPORT","lane":"BOTTOM"}},{"participantId":6,"teamId":200,"championId":48,"spell1Id":4,"spell2Id":12,"masteries":[{"masteryId":6111,"rank":5},{"masteryId":6122,"rank":1},{"masteryId":6131,"rank":5},{"masteryId":6143,"rank":1},{"masteryId":6211,"rank":5},{"masteryId":6223,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6251,"rank":5},{"masteryId":6261,"rank":1}],"runes":[{"runeId":5245,"rank":6},{"runeId":5247,"rank":3},{"runeId":5296,"rank":9},{"runeId":5316,"rank":9},{"runeId":5349,"rank":3}],"highestAchievedSeasonTier":"MASTER","stats":{"participantId":6,"win":false,"item0":3748,"item1":3111,"item2":2033,"item3":3211,"item4":3123,"item5":0,"item6":3340,"kills":1,"deaths":5,"assists":1,"largestKillingSpree":0,"largestMultiKill":1,"killingSprees":0,"longestTimeSpentLiving":392,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":83510,"magicDamageDealt":1358,"physicalDamageDealt":82151,"trueDamageDealt":0,"largestCriticalStrike":0,"totalDamageDealtToChampions":5334,"magicDamageDealtToChampions":1358,"physicalDamageDealtToChampions":3975,"trueDamageDealtToChampions":0,"totalHeal":5810,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":24544,"magicalDamageTaken":11479,"physicalDamageTaken":13025,"trueDamageTaken":40,"goldEarned":7407,"goldSpent":7250,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":162,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"totalTimeCrowdControlDealt":254,"champLevel":13,"visionWardsBoughtInGame":2,"sightWardsBoughtInGame":0,"wardsPlaced":12,"wardsKilled":2,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":6,"creepsPerMinDeltas":{"10-20":7.5,"0-10":6.199999999999999},"xpPerMinDeltas":{"10-20":441.0,"0-10":393.29999999999995},"goldPerMinDeltas":{"10-20":325.5,"0-10":226.8},"csDiffPerMinDeltas":{"10-20":-0.5,"0-10":-1.1000000000000005},"xpDiffPerMinDeltas":{"10-20":-70.30000000000001,"0-10":-75.60000000000002},"damageTakenPerMinDeltas":{"10-20":852.3,"0-10":472.09999999999997},"damageTakenDiffPerMinDeltas":{"10-20":216.5,"0-10":311.2},"role":"SOLO","lane":"TOP"}},{"participantId":7,"teamId":200,"championId":60,"spell1Id":4,"spell2Id":11,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6121,"rank":1},{"masteryId":6134,"rank":5},{"masteryId":6142,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6321,"rank":1},{"masteryId":6331,"rank":5},{"masteryId":6341,"rank":1},{"masteryId":6351,"rank":5},{"masteryId":6362,"rank":1}],"runes":[{"runeId":5247,"rank":9},{"runeId":5289,"rank":3},{"runeId":5296,"rank":6},{"runeId":5315,"rank":5},{"runeId":5317,"rank":4},{"runeId":5357,"rank":3}],"highestAchievedSeasonTier":"DIAMOND","stats":{"participantId":7,"win":false,"item0":1414,"item1":2031,"item2":2055,"item3":3116,"item4":3111,"item5":0,"item6":3364,"kills":3,"deaths":7,"assists":2,"largestKillingSpree":0,"largestMultiKill":1,"killingSprees":0,"longestTimeSpentLiving":579,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":76421,"magicDamageDealt":52030,"physicalDamageDealt":19567,"trueDamageDealt":4824,"largestCriticalStrike":0,"totalDamageDealtToChampions":8046,"magicDamageDealtToChampions":6672,"physicalDamageDealtToChampions":906,"trueDamageDealtToChampions":468,"totalHeal":5598,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":19533,"magicalDamageTaken":4795,"physicalDamageTaken":14690,"trueDamageTaken":48,"goldEarned":7266,"goldSpent":6850,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":10,"neutralMinionsKilled":74,"neutralMinionsKilledTeamJungle":57,"neutralMinionsKilledEnemyJungle":17,"totalTimeCrowdControlDealt":182,"champLevel":12,"visionWardsBoughtInGame":5,"sightWardsBoughtInGame":0,"wardsPlaced":5,"wardsKilled":5,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":7,"creepsPerMinDeltas":{"10-20":0.1,"0-10":0.1},"xpPerMinDeltas":{"10-20":339.1,"0-10":293.6},"goldPerMinDeltas":{"10-20":264.4,"0-10":241.6},"csDiffPerMinDeltas":{"10-20":-0.9,"0-10":-0.30000000000000004},"xpDiffPerMinDeltas":{"10-20":-260.29999999999995,"0-10":-50.5},"damageTakenPerMinDeltas":{"10-20":871.9,"0-10":493.79999999999995},"damageTakenDiffPerMinDeltas":{"10-20":64.5,"0-10":-146.2},"role":"NONE","lane":"JUNGLE"}},{"participantId":8,"teamId":200,"championId":103,"spell1Id":4,"spell2Id":14,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6122,"rank":1},{"masteryId":6131,"rank":1},{"masteryId":6134,"rank":4},{"masteryId":6142,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6331,"rank":4},{"masteryId":6332,"rank":1},{"masteryId":6343,"rank":1},{"masteryId":6351,"rank":5},{"masteryId":6362,"rank":1}],"runes":[{"runeId":5273,"rank":9},{"runeId":5296,"rank":6},{"runeId":5298,"rank":3},{"runeId":5316,"rank":9},{"runeId":5357,"rank":3}],"highestAchievedSeasonTier":"MASTER","stats":{"participantId":8,"win":false,"item0":1056,"item1":2031,"item2":3020,"item3":3165,"item4":3001,"item5":1026,"item6":3340,"kills":2,"deaths":1,"assists":2,"largestKillingSpree":2,"largestMultiKill":1,"killingSprees":1,"longestTimeSpentLiving":782,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":108759,"magicDamageDealt":59980,"physicalDamageDealt":15251,"trueDamageDealt":33527,"largestCriticalStrike":0,"totalDamageDealtToChampions":11463,"magicDamageDealtToChampions":7595,"physicalDamageDealtToChampions":602,"trueDamageDealtToChampions":3265,"totalHeal":2577,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":8700,"magicalDamageTaken":4265,"physicalDamageTaken":4435,"trueDamageTaken":0,"goldEarned":9156,"goldSpent":8975,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":226,"neutralMinionsKilled":2,"neutralMinionsKilledTeamJungle":1,"neutralMinionsKilledEnemyJungle":1,"totalTimeCrowdControlDealt":28,"champLevel":14,"visionWardsBoughtInGame":3,"sightWardsBoughtInGame":0,"wardsPlaced":10,"wardsKilled":2,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":8,"creepsPerMinDeltas":{"10-20":9.3,"0-10":9.2},"xpPerMinDeltas":{"10-20":509.3,"0-10":469.29999999999995},"goldPerMinDeltas":{"10-20":374.20000000000005,"0-10":284.3},"csDiffPerMinDeltas":{"10-20":1.8000000000000003,"0-10":1.6999999999999997},"xpDiffPerMinDeltas":{"10-20":2.400000000000034,"0-10":31.0},"damageTakenPerMinDeltas":{"10-20":417.1,"0-10":207.1},"damageTakenDiffPerMinDeltas":{"10-20":200.20000000000005,"0-10":35.29999999999999},"role":"SOLO","lane":"MIDDLE"}},{"participantId":9,"teamId":200,"championId":51,"spell1Id":7,"spell2Id":4,"masteries":[{"masteryId":6111,"rank":5},{"masteryId":6121,"rank":1},{"masteryId":6131,"rank":5},{"masteryId":6141,"rank":1},{"masteryId":6151,"rank":5},{"masteryId":6161,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6331,"rank":5},{"masteryId":6343,"rank":1}],"runes":[{"runeId":5245,"rank":9},{"runeId":5289,"rank":9},{"runeId":5317,"rank":9},{"runeId":5337,"rank":3}],"highestAchievedSeasonTier":"DIAMOND","stats":{"participantId":9,"win":false,"item0":1055,"item1":3006,"item2":3085,"item3":3031,"item4":2015,"item5":1042,"item6":3363,"kills":0,"deaths":6,"assists":3,"largestKillingSpree":0,"largestMultiKill":0,"killingSprees":0,"longestTimeSpentLiving":525,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":124947,"magicDamageDealt":413,"physicalDamageDealt":123000,"trueDamageDealt":1534,"largestCriticalStrike":1015,"totalDamageDealtToChampions":7726,"magicDamageDealtToChampions":191,"physicalDamageDealtToChampions":6833,"trueDamageDealtToChampions":702,"totalHeal":971,"totalUnitsHealed":2,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":14459,"magicalDamageTaken":3999,"physicalDamageTaken":10460,"trueDamageTaken":0,"goldEarned":9030,"goldSpent":8975,"turretKills":1,"inhibitorKills":0,"totalMinionsKilled":206,"neutralMinionsKilled":19,"neutralMinionsKilledTeamJungle":6,"neutralMinionsKilledEnemyJungle":13,"totalTimeCrowdControlDealt":152,"champLevel":12,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":0,"wardsPlaced":8,"wardsKilled":4,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":9,"creepsPerMinDeltas":{"10-20":9.3,"0-10":8.5},"xpPerMinDeltas":{"10-20":483.5,"0-10":311.29999999999995},"goldPerMinDeltas":{"10-20":403.4,"0-10":273.8},"csDiffPerMinDeltas":{"10-20":-0.5499999999999998,"0-10":0.5499999999999998},"xpDiffPerMinDeltas":{"10-20":-12.55000000000004,"0-10":-26.85000000000005},"damageTakenPerMinDeltas":{"10-20":610.6,"0-10":280.4},"damageTakenDiffPerMinDeltas":{"10-20":251.64999999999992,"0-10":113.49999999999999},"role":"DUO_CARRY","lane":"BOTTOM"}},{"participantId":10,"teamId":200,"championId":412,"spell1Id":4,"spell2Id":3,"masteries":[{"masteryId":6211,"rank":5},{"masteryId":6221,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6251,"rank":5},{"masteryId":6262,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6332,"rank":5},{"masteryId":6342,"rank":1}],"runes":[{"runeId":5245,"rank":9},{"runeId":5290,"rank":3},{"runeId":5295,"rank":6},{"runeId":5315,"rank":5},{"runeId":5317,"rank":4},{"runeId":5347,"rank":2},{"runeId":5351,"rank":1}],"highestAchievedSeasonTier":"MASTER","stats":{"participantId":10,"win":false,"item0":2045,"item1":2055,"item2":3801,"item3":3302,"item4":3117,"item5":3114,"item6":3364,"kills":0,"deaths":5,"assists":4,"largestKillingSpree":0,"largestMultiKill":0,"killingSprees":0,"longestTimeSpentLiving":637,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":14307,"magicDamageDealt":9264,"physicalDamageDealt":5042,"trueDamageDealt":0,"largestCriticalStrike":0,"totalDamageDealtToChampions":3073,"magicDamageDealtToChampions":2625,"physicalDamageDealtToChampions":447,"trueDamageDealtToChampions":0,"totalHeal":809,"totalUnitsHealed":3,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":16156,"magicalDamageTaken":6480,"physicalDamageTaken":9675,"trueDamageTaken":0,"goldEarned":5577,"goldSpent":5300,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":31,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"totalTimeCrowdControlDealt":89,"champLevel":10,"visionWardsBoughtInGame":8,"sightWardsBoughtInGame":0,"wardsPlaced":26,"wardsKilled":6,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":10,"creepsPerMinDeltas":{"10-20":1.6,"0-10":1.1},"xpPerMinDeltas":{"10-20":313.8,"0-10":272.7},"goldPerMinDeltas":{"10-20":237.9,"0-10":153.10000000000002},"csDiffPerMinDeltas":{"10-20":-0.5499999999999998,"0-10":0.5499999999999998},"xpDiffPerMinDeltas":{"10-20":-12.55000000000004,"0-10":-26.85000000000005},"damageTakenPerMinDeltas":{"10-20":418.6,"0-10":299.6},"damageTakenDiffPerMinDeltas":{"10-20":251.64999999999992,"0-10":113.49999999999999},"role":"DUO_SUPPORT","lane":"BOTTOM"}}],"participantIdentities":[{"participantId":1,"player":{"summonerName":"Kikis","profileIcon":603}},{"participantId":2,"player":{"summonerName":"Broxah","profileIcon":1424}},{"participantId":3,"player":{"summonerName":"FNC NlSQY","profileIcon":563}},{"participantId":4,"player":{"summonerName":"Dana 60 gs babay","profileIcon":2074}},{"participantId":5,"player":{"summonerName":"FNC Klaj","profileIcon":1023}},{"participantId":6,"player":{"summonerName":"MLG Glebo HLTV","profileIcon":566}},{"participantId":7,"player":{"summonerName":"KROPLA DESZCZU","profileIcon":548}},{"participantId":8,"player":{"summonerName":"Roison","profileIcon":1410}},{"participantId":9,"player":{"summonerName":"SheIsMyMorphine","profileIcon":1448}},{"participantId":10,"player":{"summonerName":"Pyrka","profileIcon":21}}]}
@@ -0,0 +1 @@
1
+ {"gameId":2972702365,"platformId":"EUW1","gameCreation":1481654475333,"gameDuration":1514,"queueId":0,"mapId":11,"seasonId":8,"gameVersion":"6.24.168.1268","gameMode":"CLASSIC","gameType":"CUSTOM_GAME","teams":[{"teamId":100,"win":"Win","firstBlood":true,"firstTower":true,"firstInhibitor":true,"firstBaron":true,"firstDragon":true,"firstRiftHerald":false,"towerKills":9,"inhibitorKills":1,"baronKills":1,"dragonKills":3,"vilemawKills":0,"riftHeraldKills":0,"dominionVictoryScore":0,"bans":[{"championId":121,"pickTurn":1},{"championId":41,"pickTurn":3},{"championId":78,"pickTurn":5}]},{"teamId":200,"win":"Fail","firstBlood":false,"firstTower":false,"firstInhibitor":false,"firstBaron":false,"firstDragon":false,"firstRiftHerald":false,"towerKills":2,"inhibitorKills":0,"baronKills":0,"dragonKills":0,"vilemawKills":0,"riftHeraldKills":0,"dominionVictoryScore":0,"bans":[{"championId":7,"pickTurn":2},{"championId":134,"pickTurn":4},{"championId":55,"pickTurn":6}]}],"participants":[{"participantId":1,"teamId":100,"championId":57,"spell1Id":4,"spell2Id":12,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6122,"rank":1},{"masteryId":6134,"rank":5},{"masteryId":6143,"rank":1},{"masteryId":6211,"rank":5},{"masteryId":6223,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6251,"rank":5},{"masteryId":6262,"rank":1}],"runes":[{"runeId":5247,"rank":9},{"runeId":5290,"rank":9},{"runeId":5318,"rank":9},{"runeId":5357,"rank":3}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":1,"win":true,"item0":1056,"item1":3211,"item2":1028,"item3":3068,"item4":3025,"item5":3111,"item6":3340,"kills":1,"deaths":2,"assists":11,"largestKillingSpree":0,"largestMultiKill":1,"killingSprees":0,"longestTimeSpentLiving":1079,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":112612,"magicDamageDealt":89519,"physicalDamageDealt":23093,"trueDamageDealt":0,"largestCriticalStrike":0,"totalDamageDealtToChampions":13447,"magicDamageDealtToChampions":11117,"physicalDamageDealtToChampions":2330,"trueDamageDealtToChampions":0,"totalHeal":3602,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":15042,"magicalDamageTaken":6334,"physicalDamageTaken":7035,"trueDamageTaken":1672,"goldEarned":10313,"goldSpent":9360,"turretKills":2,"inhibitorKills":0,"totalMinionsKilled":192,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"totalTimeCrowdControlDealt":533,"champLevel":15,"visionWardsBoughtInGame":0,"sightWardsBoughtInGame":0,"wardsPlaced":9,"wardsKilled":4,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":true,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":1,"creepsPerMinDeltas":{"10-20":8.0,"0-10":7.300000000000001},"xpPerMinDeltas":{"10-20":511.3,"0-10":468.9},"goldPerMinDeltas":{"10-20":373.1,"0-10":340.5},"csDiffPerMinDeltas":{"10-20":0.5,"0-10":1.1000000000000005},"xpDiffPerMinDeltas":{"10-20":70.30000000000001,"0-10":75.60000000000002},"damageTakenPerMinDeltas":{"10-20":635.8,"0-10":160.89999999999998},"damageTakenDiffPerMinDeltas":{"10-20":-216.5,"0-10":-311.2},"role":"SOLO","lane":"TOP"}},{"participantId":2,"teamId":100,"championId":64,"spell1Id":4,"spell2Id":11,"masteries":[{"masteryId":6111,"rank":5},{"masteryId":6123,"rank":1},{"masteryId":6134,"rank":5},{"masteryId":6142,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6323,"rank":1},{"masteryId":6331,"rank":5},{"masteryId":6341,"rank":1},{"masteryId":6351,"rank":5},{"masteryId":6362,"rank":1}],"runes":[{"runeId":5245,"rank":9},{"runeId":5290,"rank":3},{"runeId":5295,"rank":6},{"runeId":5317,"rank":9},{"runeId":5337,"rank":3}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":2,"win":true,"item0":3142,"item1":3143,"item2":3117,"item3":3211,"item4":3067,"item5":1408,"item6":3340,"kills":12,"deaths":1,"assists":10,"largestKillingSpree":11,"largestMultiKill":2,"killingSprees":1,"longestTimeSpentLiving":524,"doubleKills":1,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":155666,"magicDamageDealt":20587,"physicalDamageDealt":125239,"trueDamageDealt":9840,"largestCriticalStrike":0,"totalDamageDealtToChampions":19731,"magicDamageDealtToChampions":2673,"physicalDamageDealtToChampions":16970,"trueDamageDealtToChampions":88,"totalHeal":5771,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":19710,"magicalDamageTaken":5817,"physicalDamageTaken":13218,"trueDamageTaken":674,"goldEarned":12679,"goldSpent":11700,"turretKills":2,"inhibitorKills":1,"totalMinionsKilled":20,"neutralMinionsKilled":103,"neutralMinionsKilledTeamJungle":44,"neutralMinionsKilledEnemyJungle":59,"totalTimeCrowdControlDealt":744,"champLevel":14,"visionWardsBoughtInGame":3,"sightWardsBoughtInGame":0,"wardsPlaced":21,"wardsKilled":1,"firstBloodKill":true,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":true,"firstInhibitorKill":true,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":2,"creepsPerMinDeltas":{"10-20":1.0,"0-10":0.4},"xpPerMinDeltas":{"10-20":599.4,"0-10":344.1},"goldPerMinDeltas":{"10-20":584.0,"0-10":300.1},"csDiffPerMinDeltas":{"10-20":0.9,"0-10":0.30000000000000004},"xpDiffPerMinDeltas":{"10-20":260.29999999999995,"0-10":50.5},"damageTakenPerMinDeltas":{"10-20":807.4,"0-10":640.0},"damageTakenDiffPerMinDeltas":{"10-20":-64.5,"0-10":146.2},"role":"NONE","lane":"JUNGLE"}},{"participantId":3,"teamId":100,"championId":13,"spell1Id":4,"spell2Id":6,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6121,"rank":1},{"masteryId":6131,"rank":5},{"masteryId":6142,"rank":1},{"masteryId":6211,"rank":5},{"masteryId":6221,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6251,"rank":5},{"masteryId":6262,"rank":1}],"runes":[{"runeId":5273,"rank":9},{"runeId":5289,"rank":3},{"runeId":5296,"rank":6},{"runeId":5316,"rank":9},{"runeId":5365,"rank":3}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":3,"win":true,"item0":3070,"item1":3111,"item2":0,"item3":3001,"item4":3027,"item5":0,"item6":3363,"kills":3,"deaths":1,"assists":5,"largestKillingSpree":2,"largestMultiKill":1,"killingSprees":1,"longestTimeSpentLiving":1209,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":108566,"magicDamageDealt":96136,"physicalDamageDealt":12430,"trueDamageDealt":0,"largestCriticalStrike":699,"totalDamageDealtToChampions":8751,"magicDamageDealtToChampions":8159,"physicalDamageDealtToChampions":592,"trueDamageDealtToChampions":0,"totalHeal":1403,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":7212,"magicalDamageTaken":2709,"physicalDamageTaken":3306,"trueDamageTaken":1196,"goldEarned":10076,"goldSpent":8125,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":162,"neutralMinionsKilled":4,"neutralMinionsKilledTeamJungle":2,"neutralMinionsKilledEnemyJungle":2,"totalTimeCrowdControlDealt":11,"champLevel":14,"visionWardsBoughtInGame":7,"sightWardsBoughtInGame":0,"wardsPlaced":17,"wardsKilled":3,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":3,"creepsPerMinDeltas":{"10-20":7.5,"0-10":7.5},"xpPerMinDeltas":{"10-20":506.9,"0-10":438.29999999999995},"goldPerMinDeltas":{"10-20":426.6,"0-10":268.8},"csDiffPerMinDeltas":{"10-20":-1.8000000000000003,"0-10":-1.6999999999999997},"xpDiffPerMinDeltas":{"10-20":-2.400000000000034,"0-10":-31.0},"damageTakenPerMinDeltas":{"10-20":216.89999999999998,"0-10":171.8},"damageTakenDiffPerMinDeltas":{"10-20":-200.20000000000005,"0-10":-35.29999999999999},"role":"SOLO","lane":"MIDDLE"}},{"participantId":4,"teamId":100,"championId":202,"spell1Id":4,"spell2Id":7,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6121,"rank":1},{"masteryId":6134,"rank":5},{"masteryId":6143,"rank":1},{"masteryId":6151,"rank":5},{"masteryId":6164,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6331,"rank":5},{"masteryId":6343,"rank":1}],"runes":[{"runeId":5245,"rank":9},{"runeId":5275,"rank":4},{"runeId":5289,"rank":5},{"runeId":5317,"rank":9},{"runeId":5335,"rank":3}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":4,"win":true,"item0":3508,"item1":3094,"item2":3140,"item3":3009,"item4":1037,"item5":1055,"item6":3363,"kills":8,"deaths":1,"assists":4,"largestKillingSpree":4,"largestMultiKill":2,"killingSprees":2,"longestTimeSpentLiving":873,"doubleKills":1,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":155523,"magicDamageDealt":3953,"physicalDamageDealt":151289,"trueDamageDealt":280,"largestCriticalStrike":839,"totalDamageDealtToChampions":18355,"magicDamageDealtToChampions":2753,"physicalDamageDealtToChampions":15602,"trueDamageDealtToChampions":0,"totalHeal":1067,"totalUnitsHealed":2,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":5048,"magicalDamageTaken":1870,"physicalDamageTaken":3135,"trueDamageTaken":42,"goldEarned":12279,"goldSpent":9900,"turretKills":4,"inhibitorKills":0,"totalMinionsKilled":232,"neutralMinionsKilled":2,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":2,"totalTimeCrowdControlDealt":56,"champLevel":13,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":0,"wardsPlaced":8,"wardsKilled":1,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":4,"creepsPerMinDeltas":{"10-20":11.6,"0-10":8.2},"xpPerMinDeltas":{"10-20":481.5,"0-10":327.1},"goldPerMinDeltas":{"10-20":533.2,"0-10":330.8},"csDiffPerMinDeltas":{"10-20":0.5499999999999998,"0-10":-0.5499999999999998},"xpDiffPerMinDeltas":{"10-20":12.55000000000004,"0-10":26.85000000000005},"damageTakenPerMinDeltas":{"10-20":263.3,"0-10":129.4},"damageTakenDiffPerMinDeltas":{"10-20":-251.64999999999992,"0-10":-113.49999999999999},"role":"DUO_CARRY","lane":"BOTTOM"}},{"participantId":5,"teamId":100,"championId":43,"spell1Id":3,"spell2Id":4,"masteries":[{"masteryId":6211,"rank":5},{"masteryId":6223,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6332,"rank":5},{"masteryId":6341,"rank":1},{"masteryId":6352,"rank":5},{"masteryId":6363,"rank":1}],"runes":[{"runeId":5273,"rank":9},{"runeId":5297,"rank":9},{"runeId":5315,"rank":9},{"runeId":5347,"rank":2},{"runeId":5357,"rank":1}],"highestAchievedSeasonTier":"CHALLENGER","stats":{"participantId":5,"win":true,"item0":0,"item1":3107,"item2":2301,"item3":0,"item4":3158,"item5":1033,"item6":3364,"kills":0,"deaths":1,"assists":15,"largestKillingSpree":0,"largestMultiKill":0,"killingSprees":0,"longestTimeSpentLiving":906,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":23658,"magicDamageDealt":15121,"physicalDamageDealt":8536,"trueDamageDealt":0,"largestCriticalStrike":0,"totalDamageDealtToChampions":6211,"magicDamageDealtToChampions":5187,"physicalDamageDealtToChampions":1024,"trueDamageDealtToChampions":0,"totalHeal":1383,"totalUnitsHealed":4,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":7019,"magicalDamageTaken":3137,"physicalDamageTaken":3031,"trueDamageTaken":849,"goldEarned":7653,"goldSpent":6600,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":11,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"totalTimeCrowdControlDealt":163,"champLevel":12,"visionWardsBoughtInGame":8,"sightWardsBoughtInGame":0,"wardsPlaced":29,"wardsKilled":6,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":true,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":5,"creepsPerMinDeltas":{"10-20":0.4,"0-10":0.30000000000000004},"xpPerMinDeltas":{"10-20":340.9,"0-10":310.6},"goldPerMinDeltas":{"10-20":292.70000000000005,"0-10":182.0},"csDiffPerMinDeltas":{"10-20":0.5499999999999998,"0-10":-0.5499999999999998},"xpDiffPerMinDeltas":{"10-20":12.55000000000004,"0-10":26.85000000000005},"damageTakenPerMinDeltas":{"10-20":262.6,"0-10":223.6},"damageTakenDiffPerMinDeltas":{"10-20":-251.64999999999992,"0-10":-113.49999999999999},"role":"DUO_SUPPORT","lane":"BOTTOM"}},{"participantId":6,"teamId":200,"championId":48,"spell1Id":4,"spell2Id":12,"masteries":[{"masteryId":6111,"rank":5},{"masteryId":6122,"rank":1},{"masteryId":6131,"rank":5},{"masteryId":6143,"rank":1},{"masteryId":6211,"rank":5},{"masteryId":6223,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6251,"rank":5},{"masteryId":6261,"rank":1}],"runes":[{"runeId":5245,"rank":6},{"runeId":5247,"rank":3},{"runeId":5296,"rank":9},{"runeId":5316,"rank":9},{"runeId":5349,"rank":3}],"highestAchievedSeasonTier":"MASTER","stats":{"participantId":6,"win":false,"item0":3748,"item1":3111,"item2":2033,"item3":3211,"item4":3123,"item5":0,"item6":3340,"kills":1,"deaths":5,"assists":1,"largestKillingSpree":0,"largestMultiKill":1,"killingSprees":0,"longestTimeSpentLiving":392,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":83510,"magicDamageDealt":1358,"physicalDamageDealt":82151,"trueDamageDealt":0,"largestCriticalStrike":0,"totalDamageDealtToChampions":5334,"magicDamageDealtToChampions":1358,"physicalDamageDealtToChampions":3975,"trueDamageDealtToChampions":0,"totalHeal":5810,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":24544,"magicalDamageTaken":11479,"physicalDamageTaken":13025,"trueDamageTaken":40,"goldEarned":7407,"goldSpent":7250,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":162,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"totalTimeCrowdControlDealt":254,"champLevel":13,"visionWardsBoughtInGame":2,"sightWardsBoughtInGame":0,"wardsPlaced":12,"wardsKilled":2,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":6,"creepsPerMinDeltas":{"10-20":7.5,"0-10":6.199999999999999},"xpPerMinDeltas":{"10-20":441.0,"0-10":393.29999999999995},"goldPerMinDeltas":{"10-20":325.5,"0-10":226.8},"csDiffPerMinDeltas":{"10-20":-0.5,"0-10":-1.1000000000000005},"xpDiffPerMinDeltas":{"10-20":-70.30000000000001,"0-10":-75.60000000000002},"damageTakenPerMinDeltas":{"10-20":852.3,"0-10":472.09999999999997},"damageTakenDiffPerMinDeltas":{"10-20":216.5,"0-10":311.2},"role":"SOLO","lane":"TOP"}},{"participantId":7,"teamId":200,"championId":60,"spell1Id":4,"spell2Id":11,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6121,"rank":1},{"masteryId":6134,"rank":5},{"masteryId":6142,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6321,"rank":1},{"masteryId":6331,"rank":5},{"masteryId":6341,"rank":1},{"masteryId":6351,"rank":5},{"masteryId":6362,"rank":1}],"runes":[{"runeId":5247,"rank":9},{"runeId":5289,"rank":3},{"runeId":5296,"rank":6},{"runeId":5315,"rank":5},{"runeId":5317,"rank":4},{"runeId":5357,"rank":3}],"highestAchievedSeasonTier":"DIAMOND","stats":{"participantId":7,"win":false,"item0":1414,"item1":2031,"item2":2055,"item3":3116,"item4":3111,"item5":0,"item6":3364,"kills":3,"deaths":7,"assists":2,"largestKillingSpree":0,"largestMultiKill":1,"killingSprees":0,"longestTimeSpentLiving":579,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":76421,"magicDamageDealt":52030,"physicalDamageDealt":19567,"trueDamageDealt":4824,"largestCriticalStrike":0,"totalDamageDealtToChampions":8046,"magicDamageDealtToChampions":6672,"physicalDamageDealtToChampions":906,"trueDamageDealtToChampions":468,"totalHeal":5598,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":19533,"magicalDamageTaken":4795,"physicalDamageTaken":14690,"trueDamageTaken":48,"goldEarned":7266,"goldSpent":6850,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":10,"neutralMinionsKilled":74,"neutralMinionsKilledTeamJungle":57,"neutralMinionsKilledEnemyJungle":17,"totalTimeCrowdControlDealt":182,"champLevel":12,"visionWardsBoughtInGame":5,"sightWardsBoughtInGame":0,"wardsPlaced":5,"wardsKilled":5,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":7,"creepsPerMinDeltas":{"10-20":0.1,"0-10":0.1},"xpPerMinDeltas":{"10-20":339.1,"0-10":293.6},"goldPerMinDeltas":{"10-20":264.4,"0-10":241.6},"csDiffPerMinDeltas":{"10-20":-0.9,"0-10":-0.30000000000000004},"xpDiffPerMinDeltas":{"10-20":-260.29999999999995,"0-10":-50.5},"damageTakenPerMinDeltas":{"10-20":871.9,"0-10":493.79999999999995},"damageTakenDiffPerMinDeltas":{"10-20":64.5,"0-10":-146.2},"role":"NONE","lane":"JUNGLE"}},{"participantId":8,"teamId":200,"championId":103,"spell1Id":4,"spell2Id":14,"masteries":[{"masteryId":6114,"rank":5},{"masteryId":6122,"rank":1},{"masteryId":6131,"rank":1},{"masteryId":6134,"rank":4},{"masteryId":6142,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6331,"rank":4},{"masteryId":6332,"rank":1},{"masteryId":6343,"rank":1},{"masteryId":6351,"rank":5},{"masteryId":6362,"rank":1}],"runes":[{"runeId":5273,"rank":9},{"runeId":5296,"rank":6},{"runeId":5298,"rank":3},{"runeId":5316,"rank":9},{"runeId":5357,"rank":3}],"highestAchievedSeasonTier":"MASTER","stats":{"participantId":8,"win":false,"item0":1056,"item1":2031,"item2":3020,"item3":3165,"item4":3001,"item5":1026,"item6":3340,"kills":2,"deaths":1,"assists":2,"largestKillingSpree":2,"largestMultiKill":1,"killingSprees":1,"longestTimeSpentLiving":782,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":108759,"magicDamageDealt":59980,"physicalDamageDealt":15251,"trueDamageDealt":33527,"largestCriticalStrike":0,"totalDamageDealtToChampions":11463,"magicDamageDealtToChampions":7595,"physicalDamageDealtToChampions":602,"trueDamageDealtToChampions":3265,"totalHeal":2577,"totalUnitsHealed":1,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":8700,"magicalDamageTaken":4265,"physicalDamageTaken":4435,"trueDamageTaken":0,"goldEarned":9156,"goldSpent":8975,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":226,"neutralMinionsKilled":2,"neutralMinionsKilledTeamJungle":1,"neutralMinionsKilledEnemyJungle":1,"totalTimeCrowdControlDealt":28,"champLevel":14,"visionWardsBoughtInGame":3,"sightWardsBoughtInGame":0,"wardsPlaced":10,"wardsKilled":2,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":8,"creepsPerMinDeltas":{"10-20":9.3,"0-10":9.2},"xpPerMinDeltas":{"10-20":509.3,"0-10":469.29999999999995},"goldPerMinDeltas":{"10-20":374.20000000000005,"0-10":284.3},"csDiffPerMinDeltas":{"10-20":1.8000000000000003,"0-10":1.6999999999999997},"xpDiffPerMinDeltas":{"10-20":2.400000000000034,"0-10":31.0},"damageTakenPerMinDeltas":{"10-20":417.1,"0-10":207.1},"damageTakenDiffPerMinDeltas":{"10-20":200.20000000000005,"0-10":35.29999999999999},"role":"SOLO","lane":"MIDDLE"}},{"participantId":9,"teamId":200,"championId":51,"spell1Id":7,"spell2Id":4,"masteries":[{"masteryId":6111,"rank":5},{"masteryId":6121,"rank":1},{"masteryId":6131,"rank":5},{"masteryId":6141,"rank":1},{"masteryId":6151,"rank":5},{"masteryId":6161,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6331,"rank":5},{"masteryId":6343,"rank":1}],"runes":[{"runeId":5245,"rank":9},{"runeId":5289,"rank":9},{"runeId":5317,"rank":9},{"runeId":5337,"rank":3}],"highestAchievedSeasonTier":"DIAMOND","stats":{"participantId":9,"win":false,"item0":1055,"item1":3006,"item2":3085,"item3":3031,"item4":2015,"item5":1042,"item6":3363,"kills":0,"deaths":6,"assists":3,"largestKillingSpree":0,"largestMultiKill":0,"killingSprees":0,"longestTimeSpentLiving":525,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":124947,"magicDamageDealt":413,"physicalDamageDealt":123000,"trueDamageDealt":1534,"largestCriticalStrike":1015,"totalDamageDealtToChampions":7726,"magicDamageDealtToChampions":191,"physicalDamageDealtToChampions":6833,"trueDamageDealtToChampions":702,"totalHeal":971,"totalUnitsHealed":2,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":14459,"magicalDamageTaken":3999,"physicalDamageTaken":10460,"trueDamageTaken":0,"goldEarned":9030,"goldSpent":8975,"turretKills":1,"inhibitorKills":0,"totalMinionsKilled":206,"neutralMinionsKilled":19,"neutralMinionsKilledTeamJungle":6,"neutralMinionsKilledEnemyJungle":13,"totalTimeCrowdControlDealt":152,"champLevel":12,"visionWardsBoughtInGame":1,"sightWardsBoughtInGame":0,"wardsPlaced":8,"wardsKilled":4,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":9,"creepsPerMinDeltas":{"10-20":9.3,"0-10":8.5},"xpPerMinDeltas":{"10-20":483.5,"0-10":311.29999999999995},"goldPerMinDeltas":{"10-20":403.4,"0-10":273.8},"csDiffPerMinDeltas":{"10-20":-0.5499999999999998,"0-10":0.5499999999999998},"xpDiffPerMinDeltas":{"10-20":-12.55000000000004,"0-10":-26.85000000000005},"damageTakenPerMinDeltas":{"10-20":610.6,"0-10":280.4},"damageTakenDiffPerMinDeltas":{"10-20":251.64999999999992,"0-10":113.49999999999999},"role":"DUO_CARRY","lane":"BOTTOM"}},{"participantId":10,"teamId":200,"championId":412,"spell1Id":4,"spell2Id":3,"masteries":[{"masteryId":6211,"rank":5},{"masteryId":6221,"rank":1},{"masteryId":6231,"rank":5},{"masteryId":6241,"rank":1},{"masteryId":6251,"rank":5},{"masteryId":6262,"rank":1},{"masteryId":6312,"rank":5},{"masteryId":6322,"rank":1},{"masteryId":6332,"rank":5},{"masteryId":6342,"rank":1}],"runes":[{"runeId":5245,"rank":9},{"runeId":5290,"rank":3},{"runeId":5295,"rank":6},{"runeId":5315,"rank":5},{"runeId":5317,"rank":4},{"runeId":5347,"rank":2},{"runeId":5351,"rank":1}],"highestAchievedSeasonTier":"MASTER","stats":{"participantId":10,"win":false,"item0":2045,"item1":2055,"item2":3801,"item3":3302,"item4":3117,"item5":3114,"item6":3364,"kills":0,"deaths":5,"assists":4,"largestKillingSpree":0,"largestMultiKill":0,"killingSprees":0,"longestTimeSpentLiving":637,"doubleKills":0,"tripleKills":0,"quadraKills":0,"pentaKills":0,"unrealKills":0,"totalDamageDealt":14307,"magicDamageDealt":9264,"physicalDamageDealt":5042,"trueDamageDealt":0,"largestCriticalStrike":0,"totalDamageDealtToChampions":3073,"magicDamageDealtToChampions":2625,"physicalDamageDealtToChampions":447,"trueDamageDealtToChampions":0,"totalHeal":809,"totalUnitsHealed":3,"damageSelfMitigated":0,"damageDealtToObjectives":0,"damageDealtToTurrets":0,"visionScore":0,"timeCCingOthers":0,"totalDamageTaken":16156,"magicalDamageTaken":6480,"physicalDamageTaken":9675,"trueDamageTaken":0,"goldEarned":5577,"goldSpent":5300,"turretKills":0,"inhibitorKills":0,"totalMinionsKilled":31,"neutralMinionsKilled":0,"neutralMinionsKilledTeamJungle":0,"neutralMinionsKilledEnemyJungle":0,"totalTimeCrowdControlDealt":89,"champLevel":10,"visionWardsBoughtInGame":8,"sightWardsBoughtInGame":0,"wardsPlaced":26,"wardsKilled":6,"firstBloodKill":false,"firstBloodAssist":false,"firstTowerKill":false,"firstTowerAssist":false,"firstInhibitorKill":false,"firstInhibitorAssist":false,"combatPlayerScore":0,"objectivePlayerScore":0,"totalPlayerScore":0,"totalScoreRank":0},"timeline":{"participantId":10,"creepsPerMinDeltas":{"10-20":1.6,"0-10":1.1},"xpPerMinDeltas":{"10-20":313.8,"0-10":272.7},"goldPerMinDeltas":{"10-20":237.9,"0-10":153.10000000000002},"csDiffPerMinDeltas":{"10-20":-0.5499999999999998,"0-10":0.5499999999999998},"xpDiffPerMinDeltas":{"10-20":-12.55000000000004,"0-10":-26.85000000000005},"damageTakenPerMinDeltas":{"10-20":418.6,"0-10":299.6},"damageTakenDiffPerMinDeltas":{"10-20":251.64999999999992,"0-10":113.49999999999999},"role":"DUO_SUPPORT","lane":"BOTTOM"}}],"participantIdentities":[{"participantId":1},{"participantId":2},{"participantId":3},{"participantId":4},{"participantId":5},{"participantId":6},{"participantId":7},{"participantId":8},{"participantId":9},{"participantId":10}]}
@@ -0,0 +1 @@
1
+ {"matches":[{"platformId":"EUW1","gameId":3185083402,"champion":41,"queue":420,"season":8,"timestamp":1494888385722,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3184692827,"champion":60,"queue":0,"season":8,"timestamp":1494881999945,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3184652546,"champion":60,"queue":0,"season":8,"timestamp":1494878962107,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3184652015,"champion":60,"queue":0,"season":8,"timestamp":1494875667971,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3184772187,"champion":64,"queue":420,"season":8,"timestamp":1494871012420,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3184673600,"champion":114,"queue":420,"season":8,"timestamp":1494868332986,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3184101351,"champion":114,"queue":420,"season":8,"timestamp":1494851759999,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3184039602,"champion":114,"queue":420,"season":8,"timestamp":1494849918307,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3183878862,"champion":4,"queue":420,"season":8,"timestamp":1494807966896,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3183868620,"champion":5,"queue":420,"season":8,"timestamp":1494805667573,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3183876056,"champion":412,"queue":610,"season":8,"timestamp":1494804584364,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":3183875342,"champion":412,"queue":610,"season":8,"timestamp":1494803790404,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":3183874708,"champion":412,"queue":610,"season":8,"timestamp":1494802949703,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":3183853468,"champion":107,"queue":420,"season":8,"timestamp":1494800755359,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3183814158,"champion":64,"queue":420,"season":8,"timestamp":1494797442606,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3183511601,"champion":238,"queue":420,"season":8,"timestamp":1494781445331,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3183407264,"champion":238,"queue":420,"season":8,"timestamp":1494778042415,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3183339181,"champion":238,"queue":420,"season":8,"timestamp":1494775693663,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3183306511,"champion":412,"queue":420,"season":8,"timestamp":1494773237191,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3183235120,"champion":41,"queue":420,"season":8,"timestamp":1494770284775,"role":"SOLO","lane":"TOP"}],"startIndex":0,"endIndex":20,"totalGames":20}
@@ -0,0 +1 @@
1
+ {"matches":[{"platformId":"EUW1","gameId":3185083402,"champion":41,"queue":420,"season":8,"timestamp":1494888385722,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3184772187,"champion":64,"queue":420,"season":8,"timestamp":1494871012420,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3184673600,"champion":114,"queue":420,"season":8,"timestamp":1494868332986,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3184101351,"champion":114,"queue":420,"season":8,"timestamp":1494851759999,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3184039602,"champion":114,"queue":420,"season":8,"timestamp":1494849918307,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3183878862,"champion":4,"queue":420,"season":8,"timestamp":1494807966896,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3183868620,"champion":5,"queue":420,"season":8,"timestamp":1494805667573,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3183853468,"champion":107,"queue":420,"season":8,"timestamp":1494800755359,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3183814158,"champion":64,"queue":420,"season":8,"timestamp":1494797442606,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3183511601,"champion":238,"queue":420,"season":8,"timestamp":1494781445331,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3183407264,"champion":238,"queue":420,"season":8,"timestamp":1494778042415,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3183339181,"champion":238,"queue":420,"season":8,"timestamp":1494775693663,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3183306511,"champion":412,"queue":420,"season":8,"timestamp":1494773237191,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3183235120,"champion":41,"queue":420,"season":8,"timestamp":1494770284775,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3183185097,"champion":114,"queue":420,"season":8,"timestamp":1494767824906,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3183156952,"champion":114,"queue":420,"season":8,"timestamp":1494766104089,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3183088246,"champion":114,"queue":420,"season":8,"timestamp":1494763335981,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3183081451,"champion":240,"queue":420,"season":8,"timestamp":1494761277105,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3182744415,"champion":114,"queue":420,"season":8,"timestamp":1494755542146,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3182468049,"champion":114,"queue":420,"season":8,"timestamp":1494721435146,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3182451771,"champion":103,"queue":420,"season":8,"timestamp":1494718035587,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3182415552,"champion":114,"queue":420,"season":8,"timestamp":1494716148376,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3182390849,"champion":114,"queue":420,"season":8,"timestamp":1494713896400,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3182333459,"champion":41,"queue":420,"season":8,"timestamp":1494711732575,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3182284673,"champion":64,"queue":420,"season":8,"timestamp":1494709476102,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3182247501,"champion":57,"queue":420,"season":8,"timestamp":1494707616944,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3182130334,"champion":61,"queue":420,"season":8,"timestamp":1494703473313,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3182120448,"champion":103,"queue":420,"season":8,"timestamp":1494701355576,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3182094533,"champion":103,"queue":420,"season":8,"timestamp":1494699364808,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3182038384,"champion":103,"queue":420,"season":8,"timestamp":1494697695147,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3182031457,"champion":60,"queue":420,"season":8,"timestamp":1494695806134,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3181982591,"champion":126,"queue":420,"season":8,"timestamp":1494693507477,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3181936048,"champion":33,"queue":420,"season":8,"timestamp":1494691837159,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3181885773,"champion":114,"queue":420,"season":8,"timestamp":1494689182987,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3181835972,"champion":238,"queue":420,"season":8,"timestamp":1494686750660,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3181805705,"champion":114,"queue":420,"season":8,"timestamp":1494684525690,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3181747081,"champion":412,"queue":420,"season":8,"timestamp":1494682069697,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3181699407,"champion":76,"queue":420,"season":8,"timestamp":1494680341040,"role":"DUO_SUPPORT","lane":"TOP"},{"platformId":"EUW1","gameId":3181672642,"champion":11,"queue":420,"season":8,"timestamp":1494678196103,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3181579139,"champion":105,"queue":420,"season":8,"timestamp":1494674024292,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3181592337,"champion":64,"queue":420,"season":8,"timestamp":1494672171476,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3181061174,"champion":26,"queue":420,"season":8,"timestamp":1494637791607,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3181036571,"champion":80,"queue":420,"season":8,"timestamp":1494635040828,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3181024537,"champion":134,"queue":420,"season":8,"timestamp":1494632962621,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3181010938,"champion":43,"queue":420,"season":8,"timestamp":1494631273880,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3180946366,"champion":121,"queue":420,"season":8,"timestamp":1494629440393,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3180851563,"champion":114,"queue":420,"season":8,"timestamp":1494622799222,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3180760320,"champion":58,"queue":420,"season":8,"timestamp":1494620272536,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3180270786,"champion":107,"queue":420,"season":8,"timestamp":1494593307695,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3180216141,"champion":427,"queue":420,"season":8,"timestamp":1494591489683,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3180199013,"champion":101,"queue":420,"season":8,"timestamp":1494588769714,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3180185057,"champion":134,"queue":420,"season":8,"timestamp":1494585859242,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3180149087,"champion":114,"queue":420,"season":8,"timestamp":1494582788194,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3179997948,"champion":121,"queue":420,"season":8,"timestamp":1494545131416,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3179848938,"champion":11,"queue":420,"season":8,"timestamp":1494540972162,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3179843809,"champion":114,"queue":420,"season":8,"timestamp":1494538877527,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3179619872,"champion":72,"queue":420,"season":8,"timestamp":1494537074682,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3179322793,"champion":64,"queue":420,"season":8,"timestamp":1494524769963,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3179294505,"champion":64,"queue":420,"season":8,"timestamp":1494523001318,"role":"DUO_SUPPORT","lane":"TOP"},{"platformId":"EUW1","gameId":3179228751,"champion":64,"queue":420,"season":8,"timestamp":1494521162679,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3178811462,"champion":64,"queue":420,"season":8,"timestamp":1494456576721,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3178777011,"champion":58,"queue":420,"season":8,"timestamp":1494454232173,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3178718410,"champion":114,"queue":420,"season":8,"timestamp":1494450765365,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3178705068,"champion":92,"queue":420,"season":8,"timestamp":1494449380507,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3178560961,"champion":114,"queue":420,"season":8,"timestamp":1494440389285,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3178514383,"champion":114,"queue":420,"season":8,"timestamp":1494438690128,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3178434327,"champion":126,"queue":420,"season":8,"timestamp":1494436226283,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3177777048,"champion":92,"queue":420,"season":8,"timestamp":1494418272749,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3177802663,"champion":114,"queue":420,"season":8,"timestamp":1494416843335,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3177767853,"champion":24,"queue":420,"season":8,"timestamp":1494414233274,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3177746151,"champion":114,"queue":420,"season":8,"timestamp":1494412529782,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3177733041,"champion":114,"queue":420,"season":8,"timestamp":1494410107473,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3177621674,"champion":240,"queue":420,"season":8,"timestamp":1494371897355,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3177566817,"champion":51,"queue":420,"season":8,"timestamp":1494369067588,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3177581164,"champion":81,"queue":420,"season":8,"timestamp":1494367209224,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3177513625,"champion":64,"queue":420,"season":8,"timestamp":1494364037891,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3177272035,"champion":103,"queue":420,"season":8,"timestamp":1494351713179,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3177234253,"champion":103,"queue":420,"season":8,"timestamp":1494350106432,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3177194242,"champion":28,"queue":420,"season":8,"timestamp":1494347532561,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3177118379,"champion":121,"queue":420,"season":8,"timestamp":1494345559075,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3177112065,"champion":107,"queue":420,"season":8,"timestamp":1494343875153,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3177065137,"champion":63,"queue":420,"season":8,"timestamp":1494341756829,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3176403499,"champion":64,"queue":420,"season":8,"timestamp":1494285699311,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3176358655,"champion":107,"queue":420,"season":8,"timestamp":1494283270724,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3176355072,"champion":72,"queue":420,"season":8,"timestamp":1494281587855,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3176318895,"champion":240,"queue":420,"season":8,"timestamp":1494279337600,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3176281216,"champion":64,"queue":420,"season":8,"timestamp":1494276912834,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3176261837,"champion":64,"queue":420,"season":8,"timestamp":1494274811557,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3176069373,"champion":92,"queue":420,"season":8,"timestamp":1494268128585,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3176011176,"champion":114,"queue":420,"season":8,"timestamp":1494264236089,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3175648718,"champion":79,"queue":420,"season":8,"timestamp":1494246354540,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3175645710,"champion":121,"queue":420,"season":8,"timestamp":1494245214652,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3175589108,"champion":63,"queue":420,"season":8,"timestamp":1494242240713,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3175583970,"champion":240,"queue":420,"season":8,"timestamp":1494239570127,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3175571029,"champion":121,"queue":420,"season":8,"timestamp":1494237860622,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3175349657,"champion":81,"queue":420,"season":8,"timestamp":1494194302588,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3175250182,"champion":58,"queue":420,"season":8,"timestamp":1494191789366,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3175077298,"champion":60,"queue":420,"season":8,"timestamp":1494188737927,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3174686803,"champion":51,"queue":420,"season":8,"timestamp":1494181380868,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3174654187,"champion":114,"queue":420,"season":8,"timestamp":1494179268092,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3174550048,"champion":114,"queue":420,"season":8,"timestamp":1494176491539,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3174517457,"champion":114,"queue":420,"season":8,"timestamp":1494174355794,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3174458045,"champion":114,"queue":420,"season":8,"timestamp":1494172373229,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3174427624,"champion":114,"queue":420,"season":8,"timestamp":1494170704445,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3174402947,"champion":64,"queue":420,"season":8,"timestamp":1494169665598,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":3174309281,"champion":64,"queue":420,"season":8,"timestamp":1494167135600,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3174037678,"champion":114,"queue":420,"season":8,"timestamp":1494153392561,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3174029010,"champion":60,"queue":420,"season":8,"timestamp":1494151039204,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3174008166,"champion":64,"queue":420,"season":8,"timestamp":1494150306322,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3173894141,"champion":64,"queue":420,"season":8,"timestamp":1494121658800,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3173881362,"champion":103,"queue":420,"season":8,"timestamp":1494119207075,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3173847560,"champion":85,"queue":420,"season":8,"timestamp":1494116913918,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3173861834,"champion":64,"queue":420,"season":8,"timestamp":1494114500541,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3172914850,"champion":64,"queue":420,"season":8,"timestamp":1494088840252,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3172841952,"champion":114,"queue":420,"season":8,"timestamp":1494086334387,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3172457982,"champion":24,"queue":420,"season":8,"timestamp":1494070549667,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3172192912,"champion":54,"queue":420,"season":8,"timestamp":1494028219474,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3172153550,"champion":114,"queue":420,"season":8,"timestamp":1494025228986,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3172102774,"champion":114,"queue":420,"season":8,"timestamp":1494022710076,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3171355399,"champion":28,"queue":420,"season":8,"timestamp":1494008740894,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3171312986,"champion":103,"queue":420,"season":8,"timestamp":1494006693616,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3171253320,"champion":114,"queue":420,"season":8,"timestamp":1494004810141,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3170884025,"champion":63,"queue":420,"season":8,"timestamp":1493988313847,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3170846296,"champion":114,"queue":420,"season":8,"timestamp":1493986113723,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3170850936,"champion":27,"queue":420,"season":8,"timestamp":1493984411343,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3170760080,"champion":114,"queue":420,"season":8,"timestamp":1493979757542,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3170755890,"champion":126,"queue":420,"season":8,"timestamp":1493977592923,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3170480579,"champion":114,"queue":420,"season":8,"timestamp":1493931039498,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3169738946,"champion":114,"queue":420,"season":8,"timestamp":1493917048000,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3169648526,"champion":105,"queue":420,"season":8,"timestamp":1493910790502,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3169642425,"champion":114,"queue":420,"season":8,"timestamp":1493908726738,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3169585238,"champion":114,"queue":420,"season":8,"timestamp":1493906229989,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3169313863,"champion":114,"queue":420,"season":8,"timestamp":1493850734912,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3169237329,"champion":126,"queue":420,"season":8,"timestamp":1493847232166,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3169231720,"champion":114,"queue":420,"season":8,"timestamp":1493845003994,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3168746153,"champion":114,"queue":420,"season":8,"timestamp":1493837122384,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3168679520,"champion":114,"queue":420,"season":8,"timestamp":1493835128993,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3168630000,"champion":114,"queue":420,"season":8,"timestamp":1493832267702,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3168411534,"champion":114,"queue":420,"season":8,"timestamp":1493814871779,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3168357994,"champion":58,"queue":420,"season":8,"timestamp":1493812972103,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3168288926,"champion":114,"queue":420,"season":8,"timestamp":1493806021791,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3167792570,"champion":114,"queue":420,"season":8,"timestamp":1493763737136,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3167757236,"champion":51,"queue":420,"season":8,"timestamp":1493761456038,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3167528452,"champion":114,"queue":420,"season":8,"timestamp":1493749575098,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3166557579,"champion":29,"queue":420,"season":8,"timestamp":1493673797389,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3166560645,"champion":114,"queue":420,"season":8,"timestamp":1493671531814,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3165178241,"champion":103,"queue":420,"season":8,"timestamp":1493596835213,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3165170949,"champion":103,"queue":420,"season":8,"timestamp":1493593524395,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3165132999,"champion":64,"queue":420,"season":8,"timestamp":1493590967336,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3165044103,"champion":114,"queue":420,"season":8,"timestamp":1493587899634,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3164994744,"champion":24,"queue":420,"season":8,"timestamp":1493585496079,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3164693283,"champion":24,"queue":9,"season":8,"timestamp":1493570191497,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3164452517,"champion":79,"queue":420,"season":8,"timestamp":1493558577238,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3164396154,"champion":103,"queue":420,"season":8,"timestamp":1493556439465,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3164179309,"champion":114,"queue":420,"season":8,"timestamp":1493551121624,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3164145510,"champion":114,"queue":420,"season":8,"timestamp":1493549232667,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163955769,"champion":114,"queue":420,"season":8,"timestamp":1493544888825,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163698852,"champion":114,"queue":420,"season":8,"timestamp":1493509602828,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163693465,"champion":85,"queue":420,"season":8,"timestamp":1493507122186,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163617937,"champion":114,"queue":420,"season":8,"timestamp":1493504664416,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163569891,"champion":79,"queue":420,"season":8,"timestamp":1493502208784,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3163571223,"champion":114,"queue":420,"season":8,"timestamp":1493499733064,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163493751,"champion":114,"queue":420,"season":8,"timestamp":1493497581284,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163436518,"champion":80,"queue":420,"season":8,"timestamp":1493495596990,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163339811,"champion":114,"queue":420,"season":8,"timestamp":1493490953593,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163331140,"champion":103,"queue":420,"season":8,"timestamp":1493488267396,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3163274227,"champion":24,"queue":420,"season":8,"timestamp":1493485977464,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3163216496,"champion":114,"queue":420,"season":8,"timestamp":1493483566207,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163170377,"champion":24,"queue":420,"season":8,"timestamp":1493481854313,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163163725,"champion":58,"queue":420,"season":8,"timestamp":1493479985381,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163115588,"champion":114,"queue":420,"season":8,"timestamp":1493477606466,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3163068093,"champion":117,"queue":420,"season":8,"timestamp":1493475587322,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3163019773,"champion":64,"queue":420,"season":8,"timestamp":1493473189709,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3163004590,"champion":24,"queue":420,"season":8,"timestamp":1493471603970,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3162608172,"champion":64,"queue":420,"season":8,"timestamp":1493462378646,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3162573032,"champion":126,"queue":440,"season":8,"timestamp":1493459905511,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3162296673,"champion":114,"queue":420,"season":8,"timestamp":1493424623013,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3162273229,"champion":58,"queue":420,"season":8,"timestamp":1493422376766,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3162229143,"champion":114,"queue":420,"season":8,"timestamp":1493420422701,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3162174799,"champion":114,"queue":420,"season":8,"timestamp":1493415648741,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3162068284,"champion":114,"queue":420,"season":8,"timestamp":1493411292818,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3161989102,"champion":114,"queue":420,"season":8,"timestamp":1493408811950,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3161888988,"champion":102,"queue":420,"season":8,"timestamp":1493403435006,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3161877343,"champion":114,"queue":420,"season":8,"timestamp":1493402725911,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3161817503,"champion":105,"queue":420,"season":8,"timestamp":1493399717836,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3161528564,"champion":114,"queue":420,"season":8,"timestamp":1493383942985,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3161524475,"champion":114,"queue":420,"season":8,"timestamp":1493382141932,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3160673192,"champion":114,"queue":420,"season":8,"timestamp":1493316391334,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3160614722,"champion":114,"queue":420,"season":8,"timestamp":1493314014137,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3160535318,"champion":114,"queue":420,"season":8,"timestamp":1493310916238,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3160495208,"champion":51,"queue":420,"season":8,"timestamp":1493308120506,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3160470717,"champion":121,"queue":420,"season":8,"timestamp":1493306388903,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3160424313,"champion":114,"queue":420,"season":8,"timestamp":1493304364509,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3160105186,"champion":114,"queue":420,"season":8,"timestamp":1493246720267,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3160081419,"champion":28,"queue":420,"season":8,"timestamp":1493244513317,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3160001905,"champion":114,"queue":420,"season":8,"timestamp":1493240928563,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3159822895,"champion":114,"queue":420,"season":8,"timestamp":1493238056560,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3159499809,"champion":64,"queue":420,"season":8,"timestamp":1493234529865,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3159480471,"champion":54,"queue":420,"season":8,"timestamp":1493232067100,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3159422639,"champion":64,"queue":420,"season":8,"timestamp":1493229980894,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3159100999,"champion":126,"queue":420,"season":8,"timestamp":1493210832203,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3159056193,"champion":114,"queue":420,"season":8,"timestamp":1493208628304,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3159061887,"champion":114,"queue":420,"season":8,"timestamp":1493206653502,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3159026714,"champion":81,"queue":420,"season":8,"timestamp":1493203859098,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3159001949,"champion":64,"queue":420,"season":8,"timestamp":1493199870491,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3158886505,"champion":114,"queue":420,"season":8,"timestamp":1493166301780,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3158884436,"champion":24,"queue":420,"season":8,"timestamp":1493164220381,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3158890831,"champion":53,"queue":420,"season":8,"timestamp":1493161570805,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3158846972,"champion":114,"queue":420,"season":8,"timestamp":1493159662691,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3158843169,"champion":64,"queue":420,"season":8,"timestamp":1493157898089,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3158777127,"champion":114,"queue":420,"season":8,"timestamp":1493155209084,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3158433271,"champion":114,"queue":420,"season":8,"timestamp":1493143718193,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3157910361,"champion":114,"queue":420,"season":8,"timestamp":1493131174519,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3157262593,"champion":114,"queue":420,"season":8,"timestamp":1493056726597,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3157204865,"champion":79,"queue":420,"season":8,"timestamp":1493054562861,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3156577063,"champion":24,"queue":420,"season":8,"timestamp":1493039002386,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3156551599,"champion":114,"queue":420,"season":8,"timestamp":1493036066183,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3156315166,"champion":114,"queue":420,"season":8,"timestamp":1492987479774,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3156310550,"champion":114,"queue":420,"season":8,"timestamp":1492985082937,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3156253424,"champion":114,"queue":420,"season":8,"timestamp":1492982207267,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3156206357,"champion":114,"queue":420,"season":8,"timestamp":1492979976545,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3156156351,"champion":81,"queue":420,"season":8,"timestamp":1492976993637,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3156038310,"champion":114,"queue":420,"season":8,"timestamp":1492972039782,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3155979799,"champion":114,"queue":420,"season":8,"timestamp":1492969604320,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3155909738,"champion":81,"queue":420,"season":8,"timestamp":1492966926620,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3155858129,"champion":114,"queue":420,"season":8,"timestamp":1492963876489,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3155795774,"champion":58,"queue":420,"season":8,"timestamp":1492960823078,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3155611210,"champion":114,"queue":420,"season":8,"timestamp":1492952214862,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3155250508,"champion":114,"queue":420,"season":8,"timestamp":1492945965395,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3154886499,"champion":114,"queue":420,"season":8,"timestamp":1492908979448,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3154881910,"champion":114,"queue":420,"season":8,"timestamp":1492905885222,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3154826735,"champion":8,"queue":420,"season":8,"timestamp":1492903370614,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3154759549,"champion":79,"queue":420,"season":8,"timestamp":1492900642906,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3154753464,"champion":114,"queue":420,"season":8,"timestamp":1492898783610,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3154713803,"champion":114,"queue":420,"season":8,"timestamp":1492896112819,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3154644122,"champion":51,"queue":420,"season":8,"timestamp":1492893637200,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3154582460,"champion":64,"queue":420,"season":8,"timestamp":1492890697296,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3154456024,"champion":64,"queue":420,"season":8,"timestamp":1492886347539,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3154470578,"champion":103,"queue":420,"season":8,"timestamp":1492884800446,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3154404362,"champion":131,"queue":420,"season":8,"timestamp":1492883075132,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3154355692,"champion":114,"queue":420,"season":8,"timestamp":1492880409349,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3154178368,"champion":102,"queue":420,"season":8,"timestamp":1492872719942,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3154113308,"champion":412,"queue":420,"season":8,"timestamp":1492868839338,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3153917795,"champion":81,"queue":420,"season":8,"timestamp":1492867218761,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3153669785,"champion":114,"queue":420,"season":8,"timestamp":1492864977852,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3153542527,"champion":114,"queue":420,"season":8,"timestamp":1492859046489,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3152886586,"champion":114,"queue":420,"season":8,"timestamp":1492799088690,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3152817805,"champion":114,"queue":420,"season":8,"timestamp":1492796524617,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3152077267,"champion":64,"queue":420,"season":8,"timestamp":1492777502899,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3152061758,"champion":114,"queue":420,"season":8,"timestamp":1492775087011,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3151829195,"champion":105,"queue":420,"season":8,"timestamp":1492733726098,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3151816169,"champion":114,"queue":420,"season":8,"timestamp":1492731507478,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3151811321,"champion":64,"queue":420,"season":8,"timestamp":1492728861074,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3151757780,"champion":64,"queue":420,"season":8,"timestamp":1492727346365,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3151698911,"champion":51,"queue":420,"season":8,"timestamp":1492724130097,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3151650018,"champion":114,"queue":420,"season":8,"timestamp":1492721386571,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3151291224,"champion":240,"queue":420,"season":8,"timestamp":1492702896080,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3150914008,"champion":114,"queue":420,"season":8,"timestamp":1492700579754,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3150796889,"champion":114,"queue":420,"season":8,"timestamp":1492698385402,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3150810909,"champion":107,"queue":420,"season":8,"timestamp":1492696482079,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3150397155,"champion":103,"queue":420,"season":8,"timestamp":1492641015678,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3150330355,"champion":19,"queue":420,"season":8,"timestamp":1492638879698,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3150323620,"champion":64,"queue":420,"season":8,"timestamp":1492636720694,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3150198624,"champion":43,"queue":420,"season":8,"timestamp":1492632554863,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3150127347,"champion":103,"queue":420,"season":8,"timestamp":1492629561739,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3149601856,"champion":121,"queue":420,"season":8,"timestamp":1492622753157,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3149272016,"champion":121,"queue":420,"season":8,"timestamp":1492602999038,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3149198140,"champion":114,"queue":420,"season":8,"timestamp":1492600860312,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3149215738,"champion":121,"queue":420,"season":8,"timestamp":1492599451907,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3149213077,"champion":64,"queue":420,"season":8,"timestamp":1492597713717,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3148657684,"champion":40,"queue":420,"season":8,"timestamp":1492561358190,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3148654215,"champion":64,"queue":420,"season":8,"timestamp":1492558602198,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3148627807,"champion":121,"queue":420,"season":8,"timestamp":1492555412014,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3148282109,"champion":114,"queue":420,"season":8,"timestamp":1492535891991,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3148243793,"champion":68,"queue":420,"season":8,"timestamp":1492533743064,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3148187899,"champion":64,"queue":420,"season":8,"timestamp":1492531978230,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3148181207,"champion":64,"queue":420,"season":8,"timestamp":1492530045118,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3148115493,"champion":114,"queue":420,"season":8,"timestamp":1492528213354,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3148077578,"champion":114,"queue":420,"season":8,"timestamp":1492525776143,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3146493625,"champion":114,"queue":420,"season":8,"timestamp":1492424658992,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3146428479,"champion":121,"queue":420,"season":8,"timestamp":1492422181603,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3145726736,"champion":121,"queue":420,"season":8,"timestamp":1492374770459,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":3145084661,"champion":64,"queue":420,"season":8,"timestamp":1492335046563,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3145081498,"champion":103,"queue":420,"season":8,"timestamp":1492332765885,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3144989592,"champion":64,"queue":420,"season":8,"timestamp":1492329908297,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3144988220,"champion":69,"queue":420,"season":8,"timestamp":1492327907667,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3144554952,"champion":39,"queue":420,"season":8,"timestamp":1492293610209,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3144445500,"champion":236,"queue":420,"season":8,"timestamp":1492290930288,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3144387245,"champion":103,"queue":420,"season":8,"timestamp":1492288563768,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3144328534,"champion":39,"queue":420,"season":8,"timestamp":1492286026032,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3144260200,"champion":103,"queue":420,"season":8,"timestamp":1492283354255,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3144263534,"champion":103,"queue":420,"season":8,"timestamp":1492281473691,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3144227043,"champion":103,"queue":420,"season":8,"timestamp":1492279238711,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3144201091,"champion":103,"queue":420,"season":8,"timestamp":1492276895741,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3144154393,"champion":64,"queue":420,"season":8,"timestamp":1492274669159,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3144088209,"champion":58,"queue":420,"season":8,"timestamp":1492272491298,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3144060405,"champion":103,"queue":420,"season":8,"timestamp":1492270394350,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3144020610,"champion":103,"queue":420,"season":8,"timestamp":1492267096659,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3143992439,"champion":69,"queue":420,"season":8,"timestamp":1492265011620,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3143934099,"champion":8,"queue":420,"season":8,"timestamp":1492262572399,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3143888252,"champion":69,"queue":420,"season":8,"timestamp":1492260694050,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3143776622,"champion":24,"queue":420,"season":8,"timestamp":1492252484745,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3143611455,"champion":51,"queue":420,"season":8,"timestamp":1492217364427,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3143517458,"champion":43,"queue":420,"season":8,"timestamp":1492214470090,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3143551429,"champion":105,"queue":420,"season":8,"timestamp":1492212069194,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3143348890,"champion":64,"queue":420,"season":8,"timestamp":1492210347287,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3143146853,"champion":64,"queue":420,"season":8,"timestamp":1492206284682,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3142338333,"champion":43,"queue":420,"season":8,"timestamp":1492162292330,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3142215104,"champion":24,"queue":420,"season":8,"timestamp":1492128299810,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3142120093,"champion":114,"queue":420,"season":8,"timestamp":1492126074702,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3142094743,"champion":20,"queue":420,"season":8,"timestamp":1492123411402,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3141950345,"champion":32,"queue":420,"season":8,"timestamp":1492121875702,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3141750199,"champion":103,"queue":420,"season":8,"timestamp":1492118818813,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3141647149,"champion":24,"queue":420,"season":8,"timestamp":1492115602087,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3141453973,"champion":54,"queue":420,"season":8,"timestamp":1492106281023,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3141407870,"champion":114,"queue":420,"season":8,"timestamp":1492104279595,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3141143829,"champion":64,"queue":420,"season":8,"timestamp":1492087238448,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3141094271,"champion":121,"queue":420,"season":8,"timestamp":1492083837184,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3140854391,"champion":114,"queue":420,"season":8,"timestamp":1492040299269,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3140817677,"champion":114,"queue":420,"season":8,"timestamp":1492037171264,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3140698111,"champion":114,"queue":420,"season":8,"timestamp":1492033956931,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3140691366,"champion":24,"queue":420,"season":8,"timestamp":1492031897987,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3140514810,"champion":121,"queue":420,"season":8,"timestamp":1492030309205,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3140100898,"champion":114,"queue":420,"season":8,"timestamp":1492017963036,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3139784506,"champion":64,"queue":420,"season":8,"timestamp":1492000885240,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3139714450,"champion":114,"queue":420,"season":8,"timestamp":1491996896809,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3139678507,"champion":50,"queue":420,"season":8,"timestamp":1491994414187,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3139449065,"champion":64,"queue":420,"season":8,"timestamp":1491950440263,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3138759886,"champion":24,"queue":420,"season":8,"timestamp":1491934009742,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3138442568,"champion":105,"queue":420,"season":8,"timestamp":1491914149877,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3138108371,"champion":64,"queue":420,"season":8,"timestamp":1491864117965,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3138101186,"champion":64,"queue":420,"season":8,"timestamp":1491861407546,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3137005992,"champion":114,"queue":420,"season":8,"timestamp":1491826040900,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3137001261,"champion":121,"queue":420,"season":8,"timestamp":1491824184637,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3136942888,"champion":114,"queue":420,"season":8,"timestamp":1491820391325,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3136767082,"champion":121,"queue":420,"season":8,"timestamp":1491783938449,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3136765246,"champion":105,"queue":420,"season":8,"timestamp":1491782468117,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3136751949,"champion":64,"queue":420,"season":8,"timestamp":1491780235086,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3136700694,"champion":114,"queue":420,"season":8,"timestamp":1491775221736,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3136655125,"champion":114,"queue":420,"season":8,"timestamp":1491773478441,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3136595308,"champion":114,"queue":420,"season":8,"timestamp":1491770696190,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3135376278,"champion":114,"queue":420,"season":8,"timestamp":1491727804161,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3135125088,"champion":114,"queue":420,"season":8,"timestamp":1491687463297,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3135065867,"champion":64,"queue":420,"season":8,"timestamp":1491684884797,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3134999695,"champion":121,"queue":420,"season":8,"timestamp":1491683123554,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3135015485,"champion":114,"queue":420,"season":8,"timestamp":1491681972338,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3134938008,"champion":58,"queue":420,"season":8,"timestamp":1491679826878,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3134343071,"champion":5,"queue":420,"season":8,"timestamp":1491665711980,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3134209112,"champion":114,"queue":420,"season":8,"timestamp":1491661400859,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3134088657,"champion":164,"queue":420,"season":8,"timestamp":1491655055434,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3132592800,"champion":114,"queue":420,"season":8,"timestamp":1491561962870,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3132548093,"champion":105,"queue":420,"season":8,"timestamp":1491558780939,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3132536958,"champion":51,"queue":420,"season":8,"timestamp":1491557568995,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3132534441,"champion":114,"queue":420,"season":8,"timestamp":1491555331049,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3132360111,"champion":114,"queue":420,"season":8,"timestamp":1491517425896,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3132363971,"champion":43,"queue":420,"season":8,"timestamp":1491515053229,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3132239948,"champion":114,"queue":420,"season":8,"timestamp":1491510413101,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3132196573,"champion":114,"queue":420,"season":8,"timestamp":1491506890398,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3132135536,"champion":114,"queue":420,"season":8,"timestamp":1491503926433,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3131901920,"champion":114,"queue":420,"season":8,"timestamp":1491490786769,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3131449941,"champion":105,"queue":420,"season":8,"timestamp":1491486717616,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3130568123,"champion":64,"queue":420,"season":8,"timestamp":1491396718700,"role":"DUO_SUPPORT","lane":"TOP"},{"platformId":"EUW1","gameId":3130580661,"champion":121,"queue":440,"season":8,"timestamp":1491393210082,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3130188814,"champion":105,"queue":420,"season":8,"timestamp":1491385250197,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3130386395,"champion":64,"queue":420,"season":8,"timestamp":1491383059419,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3129983891,"champion":114,"queue":420,"season":8,"timestamp":1491345241041,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3129652167,"champion":51,"queue":420,"season":8,"timestamp":1491329336747,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3129475192,"champion":104,"queue":420,"season":8,"timestamp":1491327361015,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3128897608,"champion":64,"queue":420,"season":8,"timestamp":1491301181957,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3128894941,"champion":114,"queue":420,"season":8,"timestamp":1491299109566,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3128900697,"champion":114,"queue":420,"season":8,"timestamp":1491296390867,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3128880640,"champion":58,"queue":420,"season":8,"timestamp":1491294904588,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3128847369,"champion":114,"queue":420,"season":8,"timestamp":1491292352644,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3128761321,"champion":107,"queue":420,"season":8,"timestamp":1491259142982,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3128724961,"champion":121,"queue":420,"season":8,"timestamp":1491256665299,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3128647869,"champion":104,"queue":420,"season":8,"timestamp":1491253557535,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3128603823,"champion":64,"queue":420,"season":8,"timestamp":1491249493770,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3128545269,"champion":121,"queue":420,"season":8,"timestamp":1491247173895,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3128435721,"champion":114,"queue":420,"season":8,"timestamp":1491242142874,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3127842296,"champion":35,"queue":420,"season":8,"timestamp":1491219447871,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3127640408,"champion":114,"queue":420,"season":8,"timestamp":1491210364946,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3127628352,"champion":114,"queue":420,"season":8,"timestamp":1491207855816,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3127655788,"champion":43,"queue":420,"season":8,"timestamp":1491206092949,"role":"SOLO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3127654381,"champion":121,"queue":420,"season":8,"timestamp":1491203397710,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3127625015,"champion":121,"queue":420,"season":8,"timestamp":1491201164132,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3127513597,"champion":117,"queue":440,"season":8,"timestamp":1491169754895,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3127455497,"champion":114,"queue":420,"season":8,"timestamp":1491166669088,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3127408297,"champion":64,"queue":420,"season":8,"timestamp":1491164592591,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3127400669,"champion":29,"queue":440,"season":8,"timestamp":1491162482098,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3127259143,"champion":238,"queue":440,"season":8,"timestamp":1491157439460,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3127230949,"champion":43,"queue":440,"season":8,"timestamp":1491155005601,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3127135546,"champion":121,"queue":440,"season":8,"timestamp":1491150983297,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3127074839,"champion":64,"queue":440,"season":8,"timestamp":1491148186063,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3127024490,"champion":63,"queue":420,"season":8,"timestamp":1491145540974,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3126971293,"champion":58,"queue":420,"season":8,"timestamp":1491142456553,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3126752323,"champion":104,"queue":420,"season":8,"timestamp":1491130547361,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3126022318,"champion":64,"queue":420,"season":8,"timestamp":1491082389630,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3125792438,"champion":114,"queue":420,"season":8,"timestamp":1491071328056,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3125763879,"champion":24,"queue":420,"season":8,"timestamp":1491069199544,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3125596653,"champion":121,"queue":420,"season":8,"timestamp":1491060720338,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3125601033,"champion":114,"queue":420,"season":8,"timestamp":1491059409048,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3125114740,"champion":114,"queue":420,"season":8,"timestamp":1491040930536,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3124698231,"champion":121,"queue":420,"season":8,"timestamp":1491006278088,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3124693012,"champion":121,"queue":420,"season":8,"timestamp":1491002973858,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3124621451,"champion":114,"queue":420,"season":8,"timestamp":1490998084597,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3123966193,"champion":24,"queue":420,"season":8,"timestamp":1490961646787,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3123962149,"champion":114,"queue":420,"season":8,"timestamp":1490959228210,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3123909382,"champion":114,"queue":420,"season":8,"timestamp":1490957507470,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3123889147,"champion":121,"queue":420,"season":8,"timestamp":1490956680136,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3123895451,"champion":114,"queue":420,"season":8,"timestamp":1490954286296,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3123618313,"champion":64,"queue":420,"season":8,"timestamp":1490919194982,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3123614949,"champion":114,"queue":420,"season":8,"timestamp":1490916286121,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3123611669,"champion":43,"queue":440,"season":8,"timestamp":1490914070119,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3123314920,"champion":51,"queue":440,"season":8,"timestamp":1490907178754,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3123144853,"champion":114,"queue":420,"season":8,"timestamp":1490898402341,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3122764084,"champion":104,"queue":420,"season":8,"timestamp":1490871156715,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3122718377,"champion":121,"queue":420,"season":8,"timestamp":1490866349128,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3122571011,"champion":64,"queue":420,"season":8,"timestamp":1490824393194,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3122131409,"champion":114,"queue":420,"season":8,"timestamp":1490810064829,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3121590726,"champion":114,"queue":420,"season":8,"timestamp":1490790405234,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3121561869,"champion":114,"queue":420,"season":8,"timestamp":1490786433362,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3121499159,"champion":102,"queue":420,"season":8,"timestamp":1490783948234,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3121504478,"champion":51,"queue":420,"season":8,"timestamp":1490780939160,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3121308052,"champion":121,"queue":420,"season":8,"timestamp":1490738680017,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3120391120,"champion":64,"queue":440,"season":8,"timestamp":1490705114321,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3120356453,"champion":103,"queue":420,"season":8,"timestamp":1490702780974,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3120058353,"champion":121,"queue":420,"season":8,"timestamp":1490648467329,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3119496314,"champion":114,"queue":420,"season":8,"timestamp":1490614375371,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3119502373,"champion":114,"queue":420,"season":8,"timestamp":1490611890329,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3119449416,"champion":43,"queue":420,"season":8,"timestamp":1490609503339,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3119438199,"champion":114,"queue":420,"season":8,"timestamp":1490607529050,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3119436447,"champion":35,"queue":420,"season":8,"timestamp":1490605653550,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3119434933,"champion":114,"queue":420,"season":8,"timestamp":1490603542499,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3119225560,"champion":103,"queue":420,"season":8,"timestamp":1490568289027,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3119221190,"champion":81,"queue":420,"season":8,"timestamp":1490566015348,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3119048048,"champion":121,"queue":420,"season":8,"timestamp":1490564754804,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3119043265,"champion":60,"queue":420,"season":8,"timestamp":1490562994570,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3118630015,"champion":35,"queue":420,"season":8,"timestamp":1490551497797,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3118601964,"champion":64,"queue":420,"season":8,"timestamp":1490549224107,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3118355001,"champion":121,"queue":420,"season":8,"timestamp":1490537847236,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3118276926,"champion":43,"queue":420,"season":8,"timestamp":1490535519200,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3118105091,"champion":32,"queue":420,"season":8,"timestamp":1490525262516,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3118049462,"champion":64,"queue":420,"season":8,"timestamp":1490522727974,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3117433448,"champion":238,"queue":420,"season":8,"timestamp":1490478521886,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3117358337,"champion":114,"queue":420,"season":8,"timestamp":1490477478143,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3117276932,"champion":3,"queue":420,"season":8,"timestamp":1490474151926,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3117104285,"champion":121,"queue":440,"season":8,"timestamp":1490464803447,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3117053226,"champion":68,"queue":420,"season":8,"timestamp":1490461986743,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3116991114,"champion":64,"queue":420,"season":8,"timestamp":1490458766720,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3116963909,"champion":24,"queue":420,"season":8,"timestamp":1490456873605,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3116885705,"champion":64,"queue":420,"season":8,"timestamp":1490454316328,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3116609702,"champion":114,"queue":420,"season":8,"timestamp":1490439690970,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3116371639,"champion":114,"queue":420,"season":8,"timestamp":1490405676131,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3116097506,"champion":121,"queue":440,"season":8,"timestamp":1490402792077,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3116091479,"champion":64,"queue":440,"season":8,"timestamp":1490399795214,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3115986934,"champion":238,"queue":420,"season":8,"timestamp":1490397654208,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3115980623,"champion":11,"queue":420,"season":8,"timestamp":1490395635857,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3115634994,"champion":60,"queue":420,"season":8,"timestamp":1490380299547,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3115371578,"champion":121,"queue":420,"season":8,"timestamp":1490363020705,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3115316932,"champion":43,"queue":440,"season":8,"timestamp":1490360826994,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3115233147,"champion":114,"queue":420,"season":8,"timestamp":1490350776288,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3115190065,"champion":43,"queue":420,"season":8,"timestamp":1490348409501,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3114859928,"champion":102,"queue":420,"season":8,"timestamp":1490311594114,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3114903963,"champion":24,"queue":420,"season":8,"timestamp":1490308966620,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3114646637,"champion":114,"queue":420,"season":8,"timestamp":1490306349556,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3114420787,"champion":64,"queue":420,"season":8,"timestamp":1490293764308,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3114086450,"champion":58,"queue":420,"season":8,"timestamp":1490274791796,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3112261647,"champion":104,"queue":420,"season":8,"timestamp":1490137384772,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3112157395,"champion":58,"queue":9,"season":8,"timestamp":1490132157745,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":3112119752,"champion":58,"queue":420,"season":8,"timestamp":1490129865577,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3112041548,"champion":114,"queue":420,"season":8,"timestamp":1490125134220,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3111924652,"champion":104,"queue":440,"season":8,"timestamp":1490120699228,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3111292666,"champion":64,"queue":420,"season":8,"timestamp":1490103222541,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3111227710,"champion":64,"queue":420,"season":8,"timestamp":1490100465744,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3111101652,"champion":104,"queue":440,"season":8,"timestamp":1490059399546,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3111048996,"champion":58,"queue":440,"season":8,"timestamp":1490056530659,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3111046609,"champion":58,"queue":440,"season":8,"timestamp":1490054548573,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3111063530,"champion":58,"queue":440,"season":8,"timestamp":1490052568257,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3110771749,"champion":64,"queue":420,"season":8,"timestamp":1490036319327,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3110660173,"champion":64,"queue":420,"season":8,"timestamp":1490033013765,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3110651315,"champion":64,"queue":420,"season":8,"timestamp":1490030422124,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3110569274,"champion":104,"queue":420,"season":8,"timestamp":1490027010177,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3110554080,"champion":35,"queue":420,"season":8,"timestamp":1490025220630,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3110497588,"champion":35,"queue":420,"season":8,"timestamp":1490023017272,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3110504483,"champion":81,"queue":420,"season":8,"timestamp":1490021904907,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3110377801,"champion":5,"queue":420,"season":8,"timestamp":1490018869743,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3109710925,"champion":164,"queue":420,"season":8,"timestamp":1489957211720,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3109648441,"champion":24,"queue":420,"season":8,"timestamp":1489956376630,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3109661344,"champion":104,"queue":420,"season":8,"timestamp":1489954665223,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3109612256,"champion":24,"queue":420,"season":8,"timestamp":1489952361058,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3109552793,"champion":35,"queue":420,"season":8,"timestamp":1489949994086,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3109482909,"champion":35,"queue":420,"season":8,"timestamp":1489947428934,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3109380067,"champion":90,"queue":420,"season":8,"timestamp":1489944146269,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3109327131,"champion":90,"queue":420,"season":8,"timestamp":1489940982835,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3109266906,"champion":24,"queue":420,"season":8,"timestamp":1489938545076,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3109208721,"champion":39,"queue":420,"season":8,"timestamp":1489936600031,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3109168192,"champion":24,"queue":420,"season":8,"timestamp":1489934182830,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3109128830,"champion":24,"queue":420,"season":8,"timestamp":1489931746672,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3108940738,"champion":79,"queue":420,"season":8,"timestamp":1489918772259,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3108726637,"champion":104,"queue":420,"season":8,"timestamp":1489916597744,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3108732281,"champion":54,"queue":420,"season":8,"timestamp":1489913483865,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3108079361,"champion":121,"queue":440,"season":8,"timestamp":1489869605214,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3107953272,"champion":51,"queue":440,"season":8,"timestamp":1489862142119,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3107922818,"champion":114,"queue":440,"season":8,"timestamp":1489859268007,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3107842786,"champion":104,"queue":440,"season":8,"timestamp":1489856280065,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3107803982,"champion":64,"queue":440,"season":8,"timestamp":1489853876457,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3107631910,"champion":114,"queue":440,"season":8,"timestamp":1489845293514,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3107581216,"champion":114,"queue":440,"season":8,"timestamp":1489842367720,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3106685656,"champion":114,"queue":440,"season":8,"timestamp":1489786101897,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3106622886,"champion":64,"queue":440,"season":8,"timestamp":1489782829621,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3106552660,"champion":58,"queue":440,"season":8,"timestamp":1489779960517,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3105195912,"champion":54,"queue":420,"season":8,"timestamp":1489688977037,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3105136772,"champion":54,"queue":420,"season":8,"timestamp":1489686225320,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3105087203,"champion":51,"queue":420,"season":8,"timestamp":1489683289948,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3104819887,"champion":64,"queue":420,"season":8,"timestamp":1489660959323,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104807927,"champion":104,"queue":420,"season":8,"timestamp":1489659211649,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104824593,"champion":50,"queue":420,"season":8,"timestamp":1489656542541,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3104823198,"champion":107,"queue":420,"season":8,"timestamp":1489654846271,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104802267,"champion":64,"queue":420,"season":8,"timestamp":1489651897618,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104811245,"champion":64,"queue":420,"season":8,"timestamp":1489649381082,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104750161,"champion":104,"queue":420,"season":8,"timestamp":1489645309594,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104758914,"champion":104,"queue":420,"season":8,"timestamp":1489642090392,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104739229,"champion":79,"queue":420,"season":8,"timestamp":1489639493570,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3104738711,"champion":117,"queue":420,"season":8,"timestamp":1489637004864,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3104737845,"champion":64,"queue":420,"season":8,"timestamp":1489633823295,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104755844,"champion":64,"queue":420,"season":8,"timestamp":1489630825922,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3104090742,"champion":122,"queue":440,"season":8,"timestamp":1489602879316,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3103480354,"champion":64,"queue":440,"season":8,"timestamp":1489539806549,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3103486809,"champion":32,"queue":440,"season":8,"timestamp":1489536742772,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3103483162,"champion":101,"queue":440,"season":8,"timestamp":1489534352623,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3102636876,"champion":157,"queue":420,"season":8,"timestamp":1489507962527,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3102600609,"champion":35,"queue":420,"season":8,"timestamp":1489505667347,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3102562709,"champion":64,"queue":420,"season":8,"timestamp":1489502956872,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3102264148,"champion":51,"queue":420,"season":8,"timestamp":1489447817144,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3101972558,"champion":64,"queue":420,"season":8,"timestamp":1489431620350,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3101903682,"champion":114,"queue":420,"season":8,"timestamp":1489429098982,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3101577243,"champion":114,"queue":420,"season":8,"timestamp":1489413570978,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3101563896,"champion":114,"queue":420,"season":8,"timestamp":1489411766318,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3101560534,"champion":114,"queue":420,"season":8,"timestamp":1489409760255,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3101374224,"champion":114,"queue":420,"season":8,"timestamp":1489405520390,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3101361546,"champion":114,"queue":420,"season":8,"timestamp":1489403313456,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3101084557,"champion":64,"queue":420,"season":8,"timestamp":1489367522074,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3101082498,"champion":101,"queue":420,"season":8,"timestamp":1489365336931,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3101019866,"champion":24,"queue":420,"season":8,"timestamp":1489363022440,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3101016525,"champion":20,"queue":420,"season":8,"timestamp":1489360931676,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3101022381,"champion":64,"queue":420,"season":8,"timestamp":1489358768225,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3100977513,"champion":24,"queue":420,"season":8,"timestamp":1489356760265,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3100961679,"champion":85,"queue":420,"season":8,"timestamp":1489354681152,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3099594380,"champion":53,"queue":420,"season":8,"timestamp":1489283014449,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3099591087,"champion":60,"queue":420,"season":8,"timestamp":1489280618448,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3099556751,"champion":64,"queue":420,"season":8,"timestamp":1489278469148,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3099541740,"champion":68,"queue":420,"season":8,"timestamp":1489276189147,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3099486329,"champion":114,"queue":420,"season":8,"timestamp":1489274196600,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3099418704,"champion":114,"queue":420,"season":8,"timestamp":1489271781673,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3099380117,"champion":114,"queue":420,"season":8,"timestamp":1489269483914,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3099319715,"champion":126,"queue":420,"season":8,"timestamp":1489266766749,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3099258837,"champion":54,"queue":420,"season":8,"timestamp":1489263973850,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3099207505,"champion":64,"queue":420,"season":8,"timestamp":1489260731122,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3094377185,"champion":101,"queue":420,"season":8,"timestamp":1488933125468,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3094373086,"champion":101,"queue":420,"season":8,"timestamp":1488930117283,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3094329782,"champion":114,"queue":420,"season":8,"timestamp":1488928213487,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3094136915,"champion":102,"queue":420,"season":8,"timestamp":1488916874837,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3094095729,"champion":43,"queue":420,"season":8,"timestamp":1488914082458,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3093967869,"champion":114,"queue":420,"season":8,"timestamp":1488908650852,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3093970700,"champion":39,"queue":420,"season":8,"timestamp":1488906513531,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3093867616,"champion":35,"queue":420,"season":8,"timestamp":1488902349772,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3093829623,"champion":114,"queue":420,"season":8,"timestamp":1488899876240,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3093805138,"champion":114,"queue":420,"season":8,"timestamp":1488897743226,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3093186712,"champion":43,"queue":420,"season":8,"timestamp":1488849562311,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3093176611,"champion":68,"queue":420,"season":8,"timestamp":1488847973930,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3093174291,"champion":64,"queue":420,"season":8,"timestamp":1488845527562,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3092800655,"champion":121,"queue":420,"season":8,"timestamp":1488826830781,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3092731757,"champion":133,"queue":420,"season":8,"timestamp":1488823975836,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3092191276,"champion":114,"queue":420,"season":8,"timestamp":1488763031543,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3092128788,"champion":23,"queue":420,"season":8,"timestamp":1488760781064,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3092124900,"champion":35,"queue":420,"season":8,"timestamp":1488757173038,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3092039845,"champion":64,"queue":420,"season":8,"timestamp":1488753734017,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3092004646,"champion":114,"queue":420,"season":8,"timestamp":1488750783226,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3091724859,"champion":121,"queue":420,"season":8,"timestamp":1488740437632,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3091569738,"champion":64,"queue":420,"season":8,"timestamp":1488738577073,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3091563479,"champion":114,"queue":420,"season":8,"timestamp":1488736402163,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3091247263,"champion":64,"queue":420,"season":8,"timestamp":1488734580476,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3091095953,"champion":114,"queue":440,"season":8,"timestamp":1488731287835,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3090994358,"champion":126,"queue":440,"season":8,"timestamp":1488727517027,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3090809259,"champion":254,"queue":420,"season":8,"timestamp":1488722585931,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3090557650,"champion":54,"queue":420,"season":8,"timestamp":1488707749564,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3089941532,"champion":110,"queue":420,"season":8,"timestamp":1488655405587,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3089846992,"champion":64,"queue":420,"season":8,"timestamp":1488653741744,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3089832261,"champion":60,"queue":420,"season":8,"timestamp":1488651673619,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3089766118,"champion":120,"queue":420,"season":8,"timestamp":1488649522295,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3089751697,"champion":121,"queue":420,"season":8,"timestamp":1488647705823,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3089495540,"champion":114,"queue":420,"season":8,"timestamp":1488645445954,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3089019276,"champion":114,"queue":420,"season":8,"timestamp":1488636371517,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3088923717,"champion":102,"queue":420,"season":8,"timestamp":1488629832537,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3088819906,"champion":60,"queue":420,"season":8,"timestamp":1488627589758,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3088806346,"champion":64,"queue":420,"season":8,"timestamp":1488625566649,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3088525386,"champion":64,"queue":420,"season":8,"timestamp":1488585167857,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3088502216,"champion":412,"queue":420,"season":8,"timestamp":1488583354603,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3087992259,"champion":54,"queue":420,"season":8,"timestamp":1488564930825,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3087253283,"champion":114,"queue":420,"season":8,"timestamp":1488548859531,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3087188501,"champion":64,"queue":420,"season":8,"timestamp":1488546376988,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3087106749,"champion":43,"queue":420,"season":8,"timestamp":1488538533666,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3087122783,"champion":114,"queue":420,"season":8,"timestamp":1488536115430,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3087057188,"champion":64,"queue":420,"season":8,"timestamp":1488529498655,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3086878284,"champion":102,"queue":420,"season":8,"timestamp":1488493908031,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3086661796,"champion":64,"queue":420,"season":8,"timestamp":1488481432671,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3086604866,"champion":64,"queue":420,"season":8,"timestamp":1488479524318,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3086341592,"champion":60,"queue":420,"season":8,"timestamp":1488463186528,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3086297083,"champion":101,"queue":420,"season":8,"timestamp":1488461240549,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3085890727,"champion":64,"queue":420,"season":8,"timestamp":1488452058325,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3085797626,"champion":114,"queue":420,"season":8,"timestamp":1488449622955,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3085732367,"champion":114,"queue":420,"season":8,"timestamp":1488418029133,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3085689528,"champion":114,"queue":420,"season":8,"timestamp":1488415816354,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3085696493,"champion":64,"queue":420,"season":8,"timestamp":1488413671126,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3085635900,"champion":80,"queue":420,"season":8,"timestamp":1488408365049,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3085315389,"champion":64,"queue":420,"season":8,"timestamp":1488391531021,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3085192143,"champion":114,"queue":420,"season":8,"timestamp":1488385036420,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3085135735,"champion":64,"queue":420,"season":8,"timestamp":1488383005256,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3084352340,"champion":64,"queue":420,"season":8,"timestamp":1488325264331,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3084275409,"champion":64,"queue":420,"season":8,"timestamp":1488322318557,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3083504346,"champion":121,"queue":420,"season":8,"timestamp":1488301247931,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3083453955,"champion":69,"queue":420,"season":8,"timestamp":1488298440673,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3083402233,"champion":103,"queue":420,"season":8,"timestamp":1488295150713,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3083365224,"champion":101,"queue":420,"season":8,"timestamp":1488293060022,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3083042748,"champion":60,"queue":420,"season":8,"timestamp":1488244430935,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3082940406,"champion":238,"queue":420,"season":8,"timestamp":1488242198546,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3082946061,"champion":119,"queue":420,"season":8,"timestamp":1488239348330,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3082820177,"champion":432,"queue":420,"season":8,"timestamp":1488236120537,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3082814203,"champion":114,"queue":420,"season":8,"timestamp":1488233574588,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3082508022,"champion":114,"queue":420,"season":8,"timestamp":1488231050137,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3082101354,"champion":120,"queue":420,"season":8,"timestamp":1488219337824,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3081647233,"champion":114,"queue":420,"season":8,"timestamp":1488202850134,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3081661375,"champion":64,"queue":420,"season":8,"timestamp":1488200182923,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3081362890,"champion":64,"queue":420,"season":8,"timestamp":1488158912369,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3081341104,"champion":104,"queue":420,"season":8,"timestamp":1488156353634,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3081268171,"champion":114,"queue":420,"season":8,"timestamp":1488154220063,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3081150033,"champion":35,"queue":420,"season":8,"timestamp":1488149479835,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3080830916,"champion":39,"queue":420,"season":8,"timestamp":1488135740014,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3080544217,"champion":64,"queue":420,"season":8,"timestamp":1488133476255,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3080305617,"champion":104,"queue":420,"season":8,"timestamp":1488130759438,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3080198789,"champion":114,"queue":420,"season":8,"timestamp":1488128603326,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3079698345,"champion":114,"queue":420,"season":8,"timestamp":1488110630125,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3079693287,"champion":43,"queue":420,"season":8,"timestamp":1488108076133,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3079608656,"champion":78,"queue":420,"season":8,"timestamp":1488105656749,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3079595913,"champion":104,"queue":420,"season":8,"timestamp":1488103712762,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3079491050,"champion":114,"queue":420,"season":8,"timestamp":1488075273357,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3079398061,"champion":114,"queue":420,"season":8,"timestamp":1488072304118,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3079365424,"champion":114,"queue":420,"season":8,"timestamp":1488069923245,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3079361668,"champion":114,"queue":420,"season":8,"timestamp":1488067802256,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3079276765,"champion":114,"queue":420,"season":8,"timestamp":1488065545781,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3078964846,"champion":114,"queue":420,"season":8,"timestamp":1488053785334,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3078390109,"champion":114,"queue":420,"season":8,"timestamp":1488048271566,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3078395276,"champion":114,"queue":420,"season":8,"timestamp":1488046368751,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3078288908,"champion":69,"queue":420,"season":8,"timestamp":1488043994936,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3078273344,"champion":114,"queue":420,"season":8,"timestamp":1488041932934,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3078183385,"champion":114,"queue":420,"season":8,"timestamp":1488038478802,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3077979593,"champion":114,"queue":420,"season":8,"timestamp":1488033587954,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3077953178,"champion":68,"queue":420,"season":8,"timestamp":1488031104347,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3077777189,"champion":121,"queue":420,"season":8,"timestamp":1488024562399,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3077771178,"champion":68,"queue":420,"season":8,"timestamp":1488021471793,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3077666846,"champion":222,"queue":420,"season":8,"timestamp":1488018975234,"role":"SOLO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3077428747,"champion":92,"queue":420,"season":8,"timestamp":1487986694221,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3077424417,"champion":68,"queue":420,"season":8,"timestamp":1487983220154,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3077339253,"champion":114,"queue":420,"season":8,"timestamp":1487980569616,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3077314292,"champion":60,"queue":420,"season":8,"timestamp":1487978151222,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3076409755,"champion":101,"queue":420,"season":8,"timestamp":1487962082696,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3075967871,"champion":64,"queue":420,"season":8,"timestamp":1487944815216,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3075952772,"champion":114,"queue":420,"season":8,"timestamp":1487942084054,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3075895529,"champion":114,"queue":420,"season":8,"timestamp":1487938272129,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3075833913,"champion":43,"queue":420,"season":8,"timestamp":1487931489774,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3075688805,"champion":114,"queue":420,"season":8,"timestamp":1487895025699,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3075664532,"champion":114,"queue":420,"season":8,"timestamp":1487892589848,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3075615732,"champion":114,"queue":420,"season":8,"timestamp":1487889320148,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3074984714,"champion":68,"queue":420,"season":8,"timestamp":1487876328126,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3074926151,"champion":68,"queue":420,"season":8,"timestamp":1487874128734,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3074898940,"champion":17,"queue":420,"season":8,"timestamp":1487872249479,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3074892531,"champion":114,"queue":420,"season":8,"timestamp":1487870511442,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3074833727,"champion":24,"queue":420,"season":8,"timestamp":1487867971286,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3074783729,"champion":121,"queue":420,"season":8,"timestamp":1487865209740,"role":"DUO_SUPPORT","lane":"TOP"},{"platformId":"EUW1","gameId":3074727787,"champion":114,"queue":420,"season":8,"timestamp":1487863306335,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3074012399,"champion":114,"queue":420,"season":8,"timestamp":1487810130901,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3073808009,"champion":254,"queue":420,"season":8,"timestamp":1487807725723,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3073327875,"champion":104,"queue":420,"season":8,"timestamp":1487791110818,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3073303067,"champion":114,"queue":420,"season":8,"timestamp":1487788383587,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3072947269,"champion":40,"queue":420,"season":8,"timestamp":1487771881182,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3072879901,"champion":114,"queue":420,"season":8,"timestamp":1487768569934,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3072880753,"champion":114,"queue":420,"season":8,"timestamp":1487765980635,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3072774333,"champion":114,"queue":420,"season":8,"timestamp":1487761330264,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3072770908,"champion":64,"queue":420,"season":8,"timestamp":1487759201332,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3072414349,"champion":114,"queue":420,"season":8,"timestamp":1487722953345,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3072266437,"champion":114,"queue":420,"season":8,"timestamp":1487719224425,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3071748950,"champion":110,"queue":420,"season":8,"timestamp":1487697539521,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3071724177,"champion":35,"queue":420,"season":8,"timestamp":1487694604781,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3071675620,"champion":114,"queue":420,"season":8,"timestamp":1487692471678,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3071598257,"champion":111,"queue":420,"season":8,"timestamp":1487689896090,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3070900664,"champion":114,"queue":420,"season":8,"timestamp":1487635535189,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3070882717,"champion":114,"queue":420,"season":8,"timestamp":1487633074629,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3070809822,"champion":126,"queue":420,"season":8,"timestamp":1487631208145,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3070503942,"champion":114,"queue":420,"season":8,"timestamp":1487617263260,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3070419973,"champion":114,"queue":420,"season":8,"timestamp":1487614312142,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3070144147,"champion":114,"queue":420,"season":8,"timestamp":1487598860334,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3070039922,"champion":64,"queue":420,"season":8,"timestamp":1487596767944,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3069855605,"champion":114,"queue":420,"season":8,"timestamp":1487590605814,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069850896,"champion":126,"queue":420,"season":8,"timestamp":1487587937504,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069694497,"champion":114,"queue":420,"season":8,"timestamp":1487585037142,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069517660,"champion":23,"queue":420,"season":8,"timestamp":1487553983136,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069515474,"champion":64,"queue":420,"season":8,"timestamp":1487552179976,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3069510893,"champion":114,"queue":420,"season":8,"timestamp":1487549397328,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069444018,"champion":114,"queue":420,"season":8,"timestamp":1487545602246,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069411801,"champion":114,"queue":420,"season":8,"timestamp":1487542419637,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069344054,"champion":126,"queue":420,"season":8,"timestamp":1487540049487,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069302593,"champion":114,"queue":420,"season":8,"timestamp":1487537564001,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3069039728,"champion":64,"queue":420,"season":8,"timestamp":1487527839040,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3068958965,"champion":114,"queue":420,"season":8,"timestamp":1487525564823,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3068872603,"champion":114,"queue":420,"season":8,"timestamp":1487521015114,"role":"DUO_CARRY","lane":"TOP"},{"platformId":"EUW1","gameId":3068778639,"champion":18,"queue":420,"season":8,"timestamp":1487518189346,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3068743736,"champion":114,"queue":420,"season":8,"timestamp":1487515770732,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3068663645,"champion":64,"queue":420,"season":8,"timestamp":1487513872827,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3068497029,"champion":114,"queue":420,"season":8,"timestamp":1487512123004,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3068271024,"champion":114,"queue":420,"season":8,"timestamp":1487508988004,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3068106888,"champion":114,"queue":420,"season":8,"timestamp":1487504747628,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3068097035,"champion":114,"queue":420,"season":8,"timestamp":1487502238995,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3067879913,"champion":51,"queue":420,"season":8,"timestamp":1487466252451,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3067874157,"champion":101,"queue":420,"season":8,"timestamp":1487463876621,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3067804760,"champion":114,"queue":420,"season":8,"timestamp":1487460408129,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3067773840,"champion":81,"queue":420,"season":8,"timestamp":1487458208637,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3067705986,"champion":111,"queue":420,"season":8,"timestamp":1487456119322,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3067665642,"champion":114,"queue":420,"season":8,"timestamp":1487454292933,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3067506440,"champion":120,"queue":420,"season":8,"timestamp":1487448270556,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3067457250,"champion":64,"queue":420,"season":8,"timestamp":1487446339046,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3066992358,"champion":114,"queue":420,"season":8,"timestamp":1487439128374,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3066893836,"champion":101,"queue":420,"season":8,"timestamp":1487436990863,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3066843226,"champion":238,"queue":420,"season":8,"timestamp":1487434914328,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3066758752,"champion":104,"queue":420,"season":8,"timestamp":1487431955720,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3066590386,"champion":64,"queue":420,"season":8,"timestamp":1487424505007,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3066581704,"champion":64,"queue":420,"season":8,"timestamp":1487422595356,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3066535450,"champion":126,"queue":420,"season":8,"timestamp":1487420977982,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3066464244,"champion":114,"queue":420,"season":8,"timestamp":1487417312412,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3066179647,"champion":114,"queue":420,"season":8,"timestamp":1487379990060,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3066174553,"champion":78,"queue":420,"season":8,"timestamp":1487377854534,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3065938149,"champion":114,"queue":420,"season":8,"timestamp":1487374961642,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3065768844,"champion":114,"queue":420,"season":8,"timestamp":1487373120532,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3065772093,"champion":114,"queue":420,"season":8,"timestamp":1487371601156,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3064479250,"champion":53,"queue":420,"season":8,"timestamp":1487329399992,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3064334730,"champion":64,"queue":420,"season":8,"timestamp":1487292654462,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3064331181,"champion":114,"queue":420,"season":8,"timestamp":1487290564629,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3064304386,"champion":114,"queue":420,"season":8,"timestamp":1487288220640,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3064239269,"champion":114,"queue":420,"season":8,"timestamp":1487285762534,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3064250686,"champion":114,"queue":420,"season":8,"timestamp":1487283743166,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3063529069,"champion":114,"queue":420,"season":8,"timestamp":1487269910269,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3063211556,"champion":114,"queue":420,"season":8,"timestamp":1487252361907,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3063145009,"champion":114,"queue":420,"season":8,"timestamp":1487249864257,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3063104539,"champion":114,"queue":420,"season":8,"timestamp":1487245076803,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3063069326,"champion":114,"queue":420,"season":8,"timestamp":1487242153186,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3062575748,"champion":238,"queue":420,"season":8,"timestamp":1487206233229,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3062572677,"champion":238,"queue":420,"season":8,"timestamp":1487204254547,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3062507698,"champion":114,"queue":420,"season":8,"timestamp":1487201782451,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3062520655,"champion":114,"queue":420,"season":8,"timestamp":1487199266534,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3062464926,"champion":238,"queue":420,"season":8,"timestamp":1487197324637,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3062416665,"champion":35,"queue":420,"season":8,"timestamp":1487195173497,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3062203613,"champion":114,"queue":420,"season":8,"timestamp":1487185438254,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3062118543,"champion":64,"queue":420,"season":8,"timestamp":1487182001360,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3061430640,"champion":64,"queue":420,"season":8,"timestamp":1487164227742,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3061391962,"champion":64,"queue":420,"season":8,"timestamp":1487160840240,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3061296197,"champion":64,"queue":420,"season":8,"timestamp":1487151003444,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3060788818,"champion":64,"queue":420,"season":8,"timestamp":1487122140663,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3060786102,"champion":114,"queue":420,"season":8,"timestamp":1487119879750,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3060739468,"champion":114,"queue":420,"season":8,"timestamp":1487116026947,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3060753779,"champion":114,"queue":420,"season":8,"timestamp":1487114279178,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3060733347,"champion":64,"queue":420,"season":8,"timestamp":1487113492520,"role":"DUO","lane":"TOP"},{"platformId":"EUW1","gameId":3060692891,"champion":32,"queue":420,"season":8,"timestamp":1487110588823,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3060063419,"champion":64,"queue":420,"season":8,"timestamp":1487098311116,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3060014906,"champion":114,"queue":420,"season":8,"timestamp":1487096196493,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3059937135,"champion":114,"queue":420,"season":8,"timestamp":1487093985605,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3059549044,"champion":60,"queue":420,"season":8,"timestamp":1487092368195,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3058561861,"champion":64,"queue":420,"season":8,"timestamp":1487021588302,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3058267071,"champion":63,"queue":420,"season":8,"timestamp":1487011573192,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3057884907,"champion":64,"queue":420,"season":8,"timestamp":1486992934427,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3057838283,"champion":64,"queue":420,"season":8,"timestamp":1486990744227,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3057808137,"champion":64,"queue":420,"season":8,"timestamp":1486987014510,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3057803284,"champion":64,"queue":420,"season":8,"timestamp":1486984657388,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3057768619,"champion":114,"queue":420,"season":8,"timestamp":1486982035585,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3057622239,"champion":64,"queue":420,"season":8,"timestamp":1486945266429,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3057576968,"champion":114,"queue":420,"season":8,"timestamp":1486942865755,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3057547160,"champion":64,"queue":420,"season":8,"timestamp":1486939871111,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3057470260,"champion":114,"queue":420,"season":8,"timestamp":1486935937201,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3056350391,"champion":35,"queue":420,"season":8,"timestamp":1486908582360,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3056192192,"champion":114,"queue":440,"season":8,"timestamp":1486900482910,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3055799684,"champion":102,"queue":420,"season":8,"timestamp":1486855133638,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3055791608,"champion":114,"queue":420,"season":8,"timestamp":1486853394594,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3055696609,"champion":104,"queue":420,"season":8,"timestamp":1486850560367,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3055642125,"champion":23,"queue":420,"season":8,"timestamp":1486848021012,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3055556602,"champion":64,"queue":420,"season":8,"timestamp":1486845218488,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3055316769,"champion":114,"queue":420,"season":8,"timestamp":1486841707027,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3055055229,"champion":114,"queue":420,"season":8,"timestamp":1486839496707,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3054995831,"champion":114,"queue":420,"season":8,"timestamp":1486837552803,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3054953945,"champion":114,"queue":420,"season":8,"timestamp":1486835396597,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3054922103,"champion":114,"queue":420,"season":8,"timestamp":1486833204458,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3054862249,"champion":114,"queue":420,"season":8,"timestamp":1486831339560,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3054787715,"champion":102,"queue":420,"season":8,"timestamp":1486828795998,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3054734680,"champion":76,"queue":420,"season":8,"timestamp":1486826586019,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3054658867,"champion":64,"queue":420,"season":8,"timestamp":1486823833125,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3054594165,"champion":238,"queue":420,"season":8,"timestamp":1486821116417,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3054544199,"champion":64,"queue":420,"season":8,"timestamp":1486818960856,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3054467383,"champion":114,"queue":420,"season":8,"timestamp":1486815545934,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3054390549,"champion":154,"queue":420,"season":8,"timestamp":1486810977503,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3054372827,"champion":53,"queue":420,"season":8,"timestamp":1486808649646,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3054315694,"champion":114,"queue":420,"season":8,"timestamp":1486805787512,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3054322944,"champion":35,"queue":420,"season":8,"timestamp":1486804261760,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3054260447,"champion":33,"queue":420,"season":8,"timestamp":1486802404573,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3054162707,"champion":110,"queue":420,"season":8,"timestamp":1486772644816,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3054105934,"champion":53,"queue":420,"season":8,"timestamp":1486770695913,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3054074249,"champion":32,"queue":420,"season":8,"timestamp":1486767964604,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3054026212,"champion":64,"queue":420,"season":8,"timestamp":1486766367832,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3053956467,"champion":104,"queue":420,"season":8,"timestamp":1486764585964,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3053930698,"champion":104,"queue":420,"season":8,"timestamp":1486762054545,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3053824885,"champion":64,"queue":420,"season":8,"timestamp":1486759569591,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3053719453,"champion":111,"queue":420,"season":8,"timestamp":1486757118070,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3053241839,"champion":114,"queue":420,"season":8,"timestamp":1486750171476,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3052862313,"champion":64,"queue":420,"season":8,"timestamp":1486734494859,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3052806273,"champion":114,"queue":420,"season":8,"timestamp":1486732905605,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3052795800,"champion":114,"queue":420,"season":8,"timestamp":1486729747634,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3052719193,"champion":81,"queue":420,"season":8,"timestamp":1486726940331,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3052711949,"champion":32,"queue":420,"season":8,"timestamp":1486723534637,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3052696786,"champion":64,"queue":420,"season":8,"timestamp":1486720659025,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3052582260,"champion":64,"queue":420,"season":8,"timestamp":1486687212015,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3052557024,"champion":32,"queue":420,"season":8,"timestamp":1486684834816,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3052478400,"champion":114,"queue":420,"season":8,"timestamp":1486681777428,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3052145562,"champion":114,"queue":420,"season":8,"timestamp":1486666692658,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3052058120,"champion":133,"queue":420,"season":8,"timestamp":1486663650113,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3051848228,"champion":35,"queue":420,"season":8,"timestamp":1486656157408,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3051045630,"champion":10,"queue":420,"season":8,"timestamp":1486596403907,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3051000170,"champion":76,"queue":420,"season":8,"timestamp":1486594174838,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3051012693,"champion":28,"queue":420,"season":8,"timestamp":1486591911612,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3050962309,"champion":154,"queue":420,"season":8,"timestamp":1486589159018,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3050881856,"champion":32,"queue":420,"season":8,"timestamp":1486586581143,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3050734244,"champion":24,"queue":420,"season":8,"timestamp":1486580504260,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3050703082,"champion":64,"queue":420,"season":8,"timestamp":1486578037799,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3050411035,"champion":412,"queue":420,"season":8,"timestamp":1486561309634,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3050355088,"champion":24,"queue":420,"season":8,"timestamp":1486559068919,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3050300178,"champion":114,"queue":420,"season":8,"timestamp":1486556845964,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3050272051,"champion":114,"queue":420,"season":8,"timestamp":1486551917115,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3050178554,"champion":32,"queue":420,"season":8,"timestamp":1486549259338,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3050215684,"champion":32,"queue":420,"season":8,"timestamp":1486546477710,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3049747266,"champion":114,"queue":420,"season":8,"timestamp":1486514360399,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3049741403,"champion":32,"queue":420,"season":8,"timestamp":1486510798073,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3049697128,"champion":164,"queue":420,"season":8,"timestamp":1486508867667,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3049660827,"champion":114,"queue":420,"season":8,"timestamp":1486505974978,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3049614380,"champion":114,"queue":420,"season":8,"timestamp":1486504121879,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3049582411,"champion":114,"queue":420,"season":8,"timestamp":1486501317751,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3049525439,"champion":114,"queue":420,"season":8,"timestamp":1486499627475,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3049461768,"champion":8,"queue":420,"season":8,"timestamp":1486496409925,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3049402374,"champion":32,"queue":420,"season":8,"timestamp":1486494022352,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3049296165,"champion":134,"queue":420,"season":8,"timestamp":1486489915049,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3049244841,"champion":238,"queue":420,"season":8,"timestamp":1486487284480,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3049175457,"champion":114,"queue":420,"season":8,"timestamp":1486484203292,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3049063583,"champion":104,"queue":420,"season":8,"timestamp":1486480969797,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3048956039,"champion":64,"queue":420,"season":8,"timestamp":1486478302363,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3048487227,"champion":32,"queue":420,"season":8,"timestamp":1486452622811,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3048413976,"champion":111,"queue":420,"season":8,"timestamp":1486426472747,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3048368654,"champion":78,"queue":420,"season":8,"timestamp":1486423839596,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3048344260,"champion":64,"queue":420,"season":8,"timestamp":1486421249390,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3048032210,"champion":81,"queue":420,"season":8,"timestamp":1486405703679,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3047697559,"champion":64,"queue":420,"season":8,"timestamp":1486389536209,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3047683312,"champion":254,"queue":420,"season":8,"timestamp":1486386988707,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3047637653,"champion":35,"queue":420,"season":8,"timestamp":1486385073964,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3047640552,"champion":64,"queue":420,"season":8,"timestamp":1486380800816,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3047587103,"champion":32,"queue":420,"season":8,"timestamp":1486378281381,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3047591463,"champion":64,"queue":420,"season":8,"timestamp":1486373101064,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3047458420,"champion":53,"queue":420,"season":8,"timestamp":1486343590846,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3047454967,"champion":117,"queue":420,"season":8,"timestamp":1486340677923,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3046720573,"champion":35,"queue":420,"season":8,"timestamp":1486320475460,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3046597833,"champion":111,"queue":440,"season":8,"timestamp":1486317464575,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3046561910,"champion":126,"queue":440,"season":8,"timestamp":1486314119847,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3046500512,"champion":126,"queue":440,"season":8,"timestamp":1486311606350,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3046334131,"champion":32,"queue":420,"season":8,"timestamp":1486305841874,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3046273884,"champion":114,"queue":420,"season":8,"timestamp":1486303521697,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3046195630,"champion":64,"queue":420,"season":8,"timestamp":1486300934421,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3046146603,"champion":104,"queue":420,"season":8,"timestamp":1486298801492,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3046076057,"champion":64,"queue":420,"season":8,"timestamp":1486294855854,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3046019965,"champion":64,"queue":420,"season":8,"timestamp":1486292407126,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3046023219,"champion":64,"queue":420,"season":8,"timestamp":1486290122398,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3045715507,"champion":78,"queue":420,"season":8,"timestamp":1486248355608,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3045676861,"champion":114,"queue":420,"season":8,"timestamp":1486246574141,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3045614380,"champion":126,"queue":420,"season":8,"timestamp":1486243534607,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3045536452,"champion":64,"queue":420,"season":8,"timestamp":1486241195358,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3045280001,"champion":64,"queue":420,"season":8,"timestamp":1486237542082,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3044692291,"champion":29,"queue":420,"season":8,"timestamp":1486220068694,"role":"NONE","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3044634959,"champion":35,"queue":420,"season":8,"timestamp":1486218266801,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3044567862,"champion":35,"queue":420,"season":8,"timestamp":1486216114959,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3044529962,"champion":64,"queue":420,"season":8,"timestamp":1486214239463,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3044217499,"champion":126,"queue":420,"season":8,"timestamp":1486171282591,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3044195019,"champion":110,"queue":420,"season":8,"timestamp":1486169085828,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3044138238,"champion":126,"queue":420,"season":8,"timestamp":1486166215084,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3044096130,"champion":64,"queue":420,"season":8,"timestamp":1486162680979,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3043011329,"champion":64,"queue":420,"season":8,"timestamp":1486129803309,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3042936568,"champion":64,"queue":420,"season":8,"timestamp":1486127318127,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3042899961,"champion":111,"queue":420,"season":8,"timestamp":1486125017150,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3042876673,"champion":64,"queue":420,"season":8,"timestamp":1486122488018,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3042840315,"champion":35,"queue":420,"season":8,"timestamp":1486119601193,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3042760592,"champion":412,"queue":420,"season":8,"timestamp":1486085177605,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3042707579,"champion":64,"queue":420,"season":8,"timestamp":1486082497298,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3042695615,"champion":114,"queue":420,"season":8,"timestamp":1486080495404,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3042348950,"champion":64,"queue":420,"season":8,"timestamp":1486062875583,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3042327083,"champion":35,"queue":420,"season":8,"timestamp":1486060162471,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3042301435,"champion":35,"queue":420,"season":8,"timestamp":1486058188484,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3042187497,"champion":24,"queue":420,"season":8,"timestamp":1486054412703,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3042157020,"champion":114,"queue":420,"season":8,"timestamp":1486051891793,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3042088458,"champion":114,"queue":420,"season":8,"timestamp":1486049192688,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3042081376,"champion":35,"queue":420,"season":8,"timestamp":1486046751936,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3041308608,"champion":35,"queue":420,"season":8,"timestamp":1485988439798,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3041039682,"champion":35,"queue":420,"season":8,"timestamp":1485975312943,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3040979912,"champion":121,"queue":420,"season":8,"timestamp":1485972854088,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3040702638,"champion":114,"queue":420,"season":8,"timestamp":1485956062101,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3040666418,"champion":35,"queue":420,"season":8,"timestamp":1485953930003,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3040608283,"champion":64,"queue":420,"season":8,"timestamp":1485949703128,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3040603065,"champion":114,"queue":420,"season":8,"timestamp":1485946052512,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3040474625,"champion":35,"queue":420,"season":8,"timestamp":1485910716381,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3040430106,"champion":35,"queue":420,"season":8,"timestamp":1485908100838,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3040426471,"champion":133,"queue":420,"season":8,"timestamp":1485905903667,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3040357716,"champion":35,"queue":420,"season":8,"timestamp":1485901902446,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3040318928,"champion":64,"queue":420,"season":8,"timestamp":1485899310727,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3039658258,"champion":64,"queue":420,"season":8,"timestamp":1485886431645,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3039610116,"champion":81,"queue":420,"season":8,"timestamp":1485884311956,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3039611013,"champion":64,"queue":420,"season":8,"timestamp":1485882023296,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3039550754,"champion":79,"queue":420,"season":8,"timestamp":1485878925279,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3039514146,"champion":114,"queue":420,"season":8,"timestamp":1485877107778,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3039445622,"champion":114,"queue":420,"season":8,"timestamp":1485874225420,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3039142776,"champion":64,"queue":420,"season":8,"timestamp":1485821813637,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3039099665,"champion":114,"queue":420,"season":8,"timestamp":1485819944478,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3039114097,"champion":64,"queue":420,"season":8,"timestamp":1485817470447,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3039068219,"champion":164,"queue":420,"season":8,"timestamp":1485815247896,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3039041415,"champion":64,"queue":420,"season":8,"timestamp":1485812995357,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3039012434,"champion":64,"queue":420,"season":8,"timestamp":1485810740738,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3038935522,"champion":114,"queue":420,"season":8,"timestamp":1485808877229,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3038875298,"champion":114,"queue":420,"season":8,"timestamp":1485806492772,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3038767911,"champion":64,"queue":420,"season":8,"timestamp":1485802525530,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3038739775,"champion":64,"queue":420,"season":8,"timestamp":1485800669629,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3038027045,"champion":64,"queue":420,"season":8,"timestamp":1485780496590,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3038031635,"champion":64,"queue":420,"season":8,"timestamp":1485777808214,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3037976894,"champion":114,"queue":420,"season":8,"timestamp":1485774712136,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3037954657,"champion":64,"queue":420,"season":8,"timestamp":1485772226101,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3037952980,"champion":114,"queue":420,"season":8,"timestamp":1485770856188,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3037900247,"champion":114,"queue":420,"season":8,"timestamp":1485768061884,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3037853840,"champion":64,"queue":420,"season":8,"timestamp":1485736526370,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3037830713,"champion":412,"queue":420,"season":8,"timestamp":1485733832346,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3037785814,"champion":64,"queue":420,"season":8,"timestamp":1485731591596,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3037739204,"champion":114,"queue":420,"season":8,"timestamp":1485729096004,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3037711643,"champion":64,"queue":420,"season":8,"timestamp":1485726362793,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3037601232,"champion":64,"queue":420,"season":8,"timestamp":1485721177575,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3037582722,"champion":114,"queue":420,"season":8,"timestamp":1485719349496,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3037447020,"champion":114,"queue":420,"season":8,"timestamp":1485715538695,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3037396056,"champion":412,"queue":420,"season":8,"timestamp":1485712960690,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3037341363,"champion":64,"queue":420,"season":8,"timestamp":1485709577078,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3037263259,"champion":114,"queue":420,"season":8,"timestamp":1485707506628,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3036911597,"champion":114,"queue":420,"season":8,"timestamp":1485689767289,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3036696745,"champion":114,"queue":420,"season":8,"timestamp":1485687613736,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3036304663,"champion":64,"queue":420,"season":8,"timestamp":1485651972114,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3036250215,"champion":64,"queue":420,"season":8,"timestamp":1485649738468,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3036221656,"champion":64,"queue":420,"season":8,"timestamp":1485646146021,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3036172887,"champion":114,"queue":420,"season":8,"timestamp":1485643669666,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3036112275,"champion":51,"queue":420,"season":8,"timestamp":1485640889172,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3036082111,"champion":35,"queue":420,"season":8,"timestamp":1485638576161,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3035787118,"champion":64,"queue":420,"season":8,"timestamp":1485626630676,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3035735761,"champion":64,"queue":420,"season":8,"timestamp":1485623618737,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3035673301,"champion":114,"queue":420,"season":8,"timestamp":1485620436126,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3035601330,"champion":114,"queue":420,"season":8,"timestamp":1485617474234,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3035552150,"champion":24,"queue":420,"season":8,"timestamp":1485615208316,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3035491785,"champion":64,"queue":420,"season":8,"timestamp":1485612612224,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3035465293,"champion":92,"queue":420,"season":8,"timestamp":1485611166078,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3035407832,"champion":64,"queue":420,"season":8,"timestamp":1485609036784,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3035341675,"champion":64,"queue":420,"season":8,"timestamp":1485604004433,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3035205147,"champion":114,"queue":420,"season":8,"timestamp":1485601490635,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3034918932,"champion":51,"queue":420,"season":8,"timestamp":1485598901766,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3034895099,"champion":114,"queue":420,"season":8,"timestamp":1485596607795,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3034715961,"champion":64,"queue":420,"season":8,"timestamp":1485565781186,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3034657013,"champion":114,"queue":420,"season":8,"timestamp":1485561440390,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3034598410,"champion":69,"queue":420,"season":8,"timestamp":1485558595798,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3034559090,"champion":24,"queue":420,"season":8,"timestamp":1485556221423,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3034268649,"champion":64,"queue":420,"season":8,"timestamp":1485543808623,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3034219703,"champion":35,"queue":420,"season":8,"timestamp":1485541319352,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3033869990,"champion":35,"queue":420,"season":8,"timestamp":1485523239595,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3033865667,"champion":64,"queue":420,"season":8,"timestamp":1485521316263,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3033819083,"champion":114,"queue":420,"season":8,"timestamp":1485518390113,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3033805401,"champion":64,"queue":420,"season":8,"timestamp":1485515856530,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3033820939,"champion":64,"queue":420,"season":8,"timestamp":1485513282306,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3032880499,"champion":64,"queue":420,"season":8,"timestamp":1485453187318,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3032707173,"champion":64,"queue":420,"season":8,"timestamp":1485446646801,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3032651251,"champion":64,"queue":420,"season":8,"timestamp":1485441880833,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3032323402,"champion":64,"queue":420,"season":8,"timestamp":1485386626855,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3032269232,"champion":35,"queue":420,"season":8,"timestamp":1485384828177,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3032264403,"champion":63,"queue":420,"season":8,"timestamp":1485383011766,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3032216311,"champion":114,"queue":420,"season":8,"timestamp":1485380514975,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3031735885,"champion":64,"queue":420,"season":8,"timestamp":1485375195999,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3031292636,"champion":114,"queue":420,"season":8,"timestamp":1485352839936,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3031226096,"champion":114,"queue":420,"season":8,"timestamp":1485350463543,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3031157369,"champion":114,"queue":420,"season":8,"timestamp":1485346274692,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3031172459,"champion":114,"queue":420,"season":8,"timestamp":1485343100896,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3031139263,"champion":121,"queue":420,"season":8,"timestamp":1485340630914,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3030656760,"champion":114,"queue":420,"season":8,"timestamp":1485307699005,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3030653245,"champion":134,"queue":420,"season":8,"timestamp":1485304538676,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3030587471,"champion":64,"queue":420,"season":8,"timestamp":1485300563110,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3030591663,"champion":121,"queue":420,"season":8,"timestamp":1485298308303,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3030553897,"champion":238,"queue":420,"season":8,"timestamp":1485296104517,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3030496286,"champion":64,"queue":420,"season":8,"timestamp":1485293814535,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3030471631,"champion":64,"queue":420,"season":8,"timestamp":1485291936539,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3030279467,"champion":51,"queue":420,"season":8,"timestamp":1485285015730,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3030251301,"champion":64,"queue":420,"season":8,"timestamp":1485282440736,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3030204479,"champion":64,"queue":420,"season":8,"timestamp":1485280779091,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3030144662,"champion":81,"queue":420,"season":8,"timestamp":1485278264744,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3030103470,"champion":64,"queue":420,"season":8,"timestamp":1485275305671,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3030034484,"champion":64,"queue":420,"season":8,"timestamp":1485272509787,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3029988049,"champion":134,"queue":420,"season":8,"timestamp":1485270500985,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3029381189,"champion":114,"queue":420,"season":8,"timestamp":1485215466184,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3028601899,"champion":114,"queue":420,"season":8,"timestamp":1485177383700,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3028573964,"champion":24,"queue":440,"season":8,"timestamp":1485173997391,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3028488396,"champion":412,"queue":440,"season":8,"timestamp":1485168557106,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3028332679,"champion":114,"queue":420,"season":8,"timestamp":1485124363341,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3028236339,"champion":64,"queue":420,"season":8,"timestamp":1485121403270,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3028118308,"champion":154,"queue":420,"season":8,"timestamp":1485116452838,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3028015742,"champion":64,"queue":420,"season":8,"timestamp":1485111602934,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3027413390,"champion":121,"queue":420,"season":8,"timestamp":1485101692046,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3027312412,"champion":32,"queue":420,"season":8,"timestamp":1485098663618,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3027250952,"champion":64,"queue":420,"season":8,"timestamp":1485096052827,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3027186810,"champion":35,"queue":420,"season":8,"timestamp":1485093132513,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3027113905,"champion":64,"queue":420,"season":8,"timestamp":1485089588896,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3026958517,"champion":114,"queue":420,"season":8,"timestamp":1485083407590,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3026587044,"champion":64,"queue":420,"season":8,"timestamp":1485036683974,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3026545372,"champion":114,"queue":420,"season":8,"timestamp":1485034088321,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3026469510,"champion":43,"queue":420,"season":8,"timestamp":1485032383377,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3026390033,"champion":64,"queue":420,"season":8,"timestamp":1485029881887,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3026382933,"champion":102,"queue":420,"season":8,"timestamp":1485028101290,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3026324335,"champion":35,"queue":420,"season":8,"timestamp":1485025720895,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3026266214,"champion":2,"queue":420,"season":8,"timestamp":1485023395779,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3026187262,"champion":64,"queue":420,"season":8,"timestamp":1485021311003,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3025602431,"champion":114,"queue":420,"season":8,"timestamp":1485009103839,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3025290868,"champion":114,"queue":420,"season":8,"timestamp":1484991035556,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3025039301,"champion":60,"queue":420,"season":8,"timestamp":1484954922179,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3024984392,"champion":64,"queue":420,"season":8,"timestamp":1484950661226,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3024922918,"champion":114,"queue":420,"season":8,"timestamp":1484948062032,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3024818054,"champion":64,"queue":420,"season":8,"timestamp":1484944803873,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3024737397,"champion":64,"queue":420,"season":8,"timestamp":1484942037669,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3024635577,"champion":64,"queue":420,"season":8,"timestamp":1484936306570,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3023895916,"champion":121,"queue":420,"season":8,"timestamp":1484917619431,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3023867070,"champion":36,"queue":420,"season":8,"timestamp":1484913303456,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3023674355,"champion":154,"queue":420,"season":8,"timestamp":1484869315436,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3023609565,"champion":40,"queue":420,"season":8,"timestamp":1484866967605,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3023602529,"champion":24,"queue":420,"season":8,"timestamp":1484864308063,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3023282958,"champion":114,"queue":420,"season":8,"timestamp":1484848322010,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3023216593,"champion":13,"queue":420,"season":8,"timestamp":1484846406816,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3023166539,"champion":121,"queue":420,"season":8,"timestamp":1484843540317,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3022756153,"champion":23,"queue":420,"season":8,"timestamp":1484785245860,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3022760669,"champion":64,"queue":420,"season":8,"timestamp":1484782181610,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3022645548,"champion":114,"queue":420,"season":8,"timestamp":1484779603813,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3022437966,"champion":102,"queue":420,"season":8,"timestamp":1484776881476,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3022280336,"champion":121,"queue":420,"season":8,"timestamp":1484774624080,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3022261880,"champion":63,"queue":420,"season":8,"timestamp":1484772377260,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3022137791,"champion":32,"queue":420,"season":8,"timestamp":1484769094942,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3022064145,"champion":85,"queue":420,"season":8,"timestamp":1484765712203,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3022044352,"champion":121,"queue":420,"season":8,"timestamp":1484763359650,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021699603,"champion":114,"queue":420,"season":8,"timestamp":1484747462136,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3021712812,"champion":24,"queue":420,"season":8,"timestamp":1484745139475,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021648799,"champion":102,"queue":420,"season":8,"timestamp":1484743035984,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021598759,"champion":24,"queue":420,"season":8,"timestamp":1484736977516,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021577052,"champion":154,"queue":420,"season":8,"timestamp":1484734777505,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021512163,"champion":114,"queue":420,"season":8,"timestamp":1484700491865,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3021477584,"champion":64,"queue":440,"season":8,"timestamp":1484697809114,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021471048,"champion":39,"queue":420,"season":8,"timestamp":1484694412543,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3021403826,"champion":121,"queue":420,"season":8,"timestamp":1484691610138,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021347360,"champion":134,"queue":420,"season":8,"timestamp":1484689580154,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3021197637,"champion":154,"queue":420,"season":8,"timestamp":1484682149472,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021135792,"champion":154,"queue":420,"season":8,"timestamp":1484679356301,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3021055893,"champion":81,"queue":420,"season":8,"timestamp":1484676930920,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3020785402,"champion":154,"queue":420,"season":8,"timestamp":1484674139887,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3020619561,"champion":154,"queue":420,"season":8,"timestamp":1484672492696,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3020603293,"champion":154,"queue":420,"season":8,"timestamp":1484670561094,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3020546662,"champion":154,"queue":420,"season":8,"timestamp":1484668857030,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3020505724,"champion":154,"queue":420,"season":8,"timestamp":1484665435291,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3020221438,"champion":238,"queue":440,"season":8,"timestamp":1484610943453,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3020156658,"champion":92,"queue":440,"season":8,"timestamp":1484608295858,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3020085519,"champion":114,"queue":440,"season":8,"timestamp":1484603909372,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3019924207,"champion":7,"queue":420,"season":8,"timestamp":1484596118453,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3019872548,"champion":154,"queue":420,"season":8,"timestamp":1484593303292,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3019717695,"champion":154,"queue":420,"season":8,"timestamp":1484586793393,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3019691749,"champion":79,"queue":420,"season":8,"timestamp":1484584900865,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3019640897,"champion":61,"queue":420,"season":8,"timestamp":1484581839372,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3019593182,"champion":154,"queue":420,"season":8,"timestamp":1484579388787,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3019557291,"champion":51,"queue":420,"season":8,"timestamp":1484577176459,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3019541686,"champion":99,"queue":420,"season":8,"timestamp":1484574627029,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3019486891,"champion":61,"queue":420,"season":8,"timestamp":1484572324390,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3019492849,"champion":1,"queue":420,"season":8,"timestamp":1484570249032,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3019330063,"champion":102,"queue":440,"season":8,"timestamp":1484534915995,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3019309143,"champion":114,"queue":440,"season":8,"timestamp":1484532743396,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3019306842,"champion":114,"queue":440,"season":8,"timestamp":1484529861666,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3019020639,"champion":114,"queue":440,"season":8,"timestamp":1484516761556,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3018747714,"champion":24,"queue":9,"season":8,"timestamp":1484514292698,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":3018307442,"champion":81,"queue":440,"season":8,"timestamp":1484496864522,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3018267379,"champion":53,"queue":440,"season":8,"timestamp":1484494581183,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3018214715,"champion":35,"queue":9,"season":8,"timestamp":1484491947969,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":3018184118,"champion":121,"queue":9,"season":8,"timestamp":1484490565243,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3016377643,"champion":154,"queue":420,"season":8,"timestamp":1484393902505,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3016392162,"champion":134,"queue":420,"season":8,"timestamp":1484391818427,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3016191307,"champion":126,"queue":420,"season":8,"timestamp":1484355483948,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3016154842,"champion":24,"queue":420,"season":8,"timestamp":1484352663307,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3016079005,"champion":134,"queue":420,"season":8,"timestamp":1484350577801,"role":"DUO_CARRY","lane":"MID"},{"platformId":"EUW1","gameId":3016071430,"champion":134,"queue":420,"season":8,"timestamp":1484348415603,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3016024546,"champion":45,"queue":420,"season":8,"timestamp":1484346543204,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3015988516,"champion":105,"queue":420,"season":8,"timestamp":1484345113236,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3015313748,"champion":121,"queue":440,"season":8,"timestamp":1484332012545,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3015009556,"champion":154,"queue":420,"season":8,"timestamp":1484316346772,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3014982933,"champion":7,"queue":420,"season":8,"timestamp":1484313343383,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3014937810,"champion":45,"queue":420,"season":8,"timestamp":1484310736106,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3014936554,"champion":7,"queue":420,"season":8,"timestamp":1484310035162,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":3014943114,"champion":154,"queue":420,"season":8,"timestamp":1484308297906,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3014879889,"champion":134,"queue":420,"season":8,"timestamp":1484305739941,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3014876987,"champion":4,"queue":420,"season":8,"timestamp":1484303493140,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3014884564,"champion":7,"queue":420,"season":8,"timestamp":1484301928404,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3014863162,"champion":45,"queue":420,"season":8,"timestamp":1484299789759,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3014757648,"champion":53,"queue":440,"season":8,"timestamp":1484268932953,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3014763899,"champion":17,"queue":440,"season":8,"timestamp":1484266810685,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3014740970,"champion":121,"queue":440,"season":8,"timestamp":1484264512993,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3014687503,"champion":429,"queue":440,"season":8,"timestamp":1484262921594,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3014669809,"champion":121,"queue":440,"season":8,"timestamp":1484260203770,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3014662147,"champion":121,"queue":440,"season":8,"timestamp":1484257743679,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3014533102,"champion":154,"queue":420,"season":8,"timestamp":1484252502495,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3014474306,"champion":154,"queue":420,"season":8,"timestamp":1484250161484,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3014430465,"champion":134,"queue":420,"season":8,"timestamp":1484246613188,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3014371582,"champion":39,"queue":420,"season":8,"timestamp":1484244333831,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3014324059,"champion":134,"queue":420,"season":8,"timestamp":1484242206717,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3014184175,"champion":154,"queue":420,"season":8,"timestamp":1484239411482,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3013845172,"champion":121,"queue":440,"season":8,"timestamp":1484236623643,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3013805711,"champion":114,"queue":440,"season":8,"timestamp":1484233770210,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3013780840,"champion":81,"queue":420,"season":8,"timestamp":1484231737388,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3013524359,"champion":53,"queue":420,"season":8,"timestamp":1484180730995,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3013480220,"champion":114,"queue":420,"season":8,"timestamp":1484178084243,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3013465342,"champion":114,"queue":420,"season":8,"timestamp":1484175501527,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3013406660,"champion":121,"queue":420,"season":8,"timestamp":1484172271486,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3013349291,"champion":121,"queue":420,"season":8,"timestamp":1484170000344,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3013353354,"champion":121,"queue":420,"season":8,"timestamp":1484168268683,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3013219954,"champion":121,"queue":420,"season":8,"timestamp":1484164728856,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3013212680,"champion":121,"queue":420,"season":8,"timestamp":1484162894958,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3013204004,"champion":119,"queue":420,"season":8,"timestamp":1484160588802,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3013147793,"champion":24,"queue":420,"season":8,"timestamp":1484158918434,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3012854927,"champion":121,"queue":420,"season":8,"timestamp":1484141972388,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3012870802,"champion":114,"queue":420,"season":8,"timestamp":1484140058403,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3012816026,"champion":114,"queue":420,"season":8,"timestamp":1484137378423,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3012801249,"champion":24,"queue":420,"season":8,"timestamp":1484133817791,"role":"NONE","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3009655414,"champion":121,"queue":420,"season":8,"timestamp":1483910599739,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":3009577955,"champion":24,"queue":9,"season":8,"timestamp":1483907204290,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3009060317,"champion":114,"queue":420,"season":8,"timestamp":1483886003345,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3008987560,"champion":114,"queue":9,"season":8,"timestamp":1483882864857,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":3008977369,"champion":69,"queue":9,"season":8,"timestamp":1483880609337,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":3008904253,"champion":64,"queue":440,"season":8,"timestamp":1483875113519,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3008839911,"champion":154,"queue":420,"season":8,"timestamp":1483873167135,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3008691017,"champion":64,"queue":420,"season":8,"timestamp":1483838633102,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3008625737,"champion":32,"queue":420,"season":8,"timestamp":1483836310109,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3008546872,"champion":60,"queue":420,"season":8,"timestamp":1483833079205,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3008449587,"champion":121,"queue":420,"season":8,"timestamp":1483831043195,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3008179157,"champion":51,"queue":420,"season":8,"timestamp":1483826024690,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3008170515,"champion":24,"queue":420,"season":8,"timestamp":1483824134172,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3007576265,"champion":114,"queue":420,"season":8,"timestamp":1483803565541,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3007536619,"champion":23,"queue":420,"season":8,"timestamp":1483801290073,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3007477852,"champion":81,"queue":420,"season":8,"timestamp":1483799146702,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3007426410,"champion":114,"queue":420,"season":8,"timestamp":1483796022269,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3007117445,"champion":23,"queue":420,"season":8,"timestamp":1483754848619,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3007124876,"champion":24,"queue":420,"season":8,"timestamp":1483753193748,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3007130930,"champion":69,"queue":420,"season":8,"timestamp":1483751044503,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3007076121,"champion":114,"queue":420,"season":8,"timestamp":1483749004747,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3005747593,"champion":35,"queue":420,"season":8,"timestamp":1483700489307,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3005753729,"champion":157,"queue":420,"season":8,"timestamp":1483698286278,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3005409741,"champion":40,"queue":420,"season":8,"timestamp":1483653453829,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3005360181,"champion":81,"queue":420,"season":8,"timestamp":1483651152711,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3005023864,"champion":81,"queue":420,"season":8,"timestamp":1483637104167,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3004883331,"champion":114,"queue":420,"season":8,"timestamp":1483634210665,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3004761945,"champion":164,"queue":440,"season":8,"timestamp":1483631068187,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3004569465,"champion":114,"queue":420,"season":8,"timestamp":1483627755618,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3004162989,"champion":114,"queue":420,"season":8,"timestamp":1483574345604,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3004105461,"champion":114,"queue":420,"season":8,"timestamp":1483571658560,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3004053208,"champion":32,"queue":420,"season":8,"timestamp":1483568212330,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3004024238,"champion":114,"queue":420,"season":8,"timestamp":1483566206726,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3003952762,"champion":114,"queue":420,"season":8,"timestamp":1483563130102,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3003116040,"champion":40,"queue":420,"season":8,"timestamp":1483525214801,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":3002686750,"champion":114,"queue":420,"season":8,"timestamp":1483484561627,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3002485901,"champion":4,"queue":440,"season":8,"timestamp":1483476567318,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3002456142,"champion":11,"queue":420,"season":8,"timestamp":1483474694230,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3002342434,"champion":40,"queue":420,"season":8,"timestamp":1483469072038,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3002293506,"champion":61,"queue":420,"season":8,"timestamp":1483466767927,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":3002214838,"champion":114,"queue":420,"season":8,"timestamp":1483463907260,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3002163876,"champion":114,"queue":420,"season":8,"timestamp":1483461234402,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3002107071,"champion":81,"queue":420,"season":8,"timestamp":1483459059515,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":3002077646,"champion":64,"queue":420,"season":8,"timestamp":1483456835764,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3002072168,"champion":64,"queue":420,"season":8,"timestamp":1483455297144,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3001593435,"champion":24,"queue":420,"season":8,"timestamp":1483397487003,"role":"DUO_SUPPORT","lane":"TOP"},{"platformId":"EUW1","gameId":3001360124,"champion":114,"queue":420,"season":8,"timestamp":1483391882029,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3001028479,"champion":114,"queue":420,"season":8,"timestamp":1483386795280,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3000857073,"champion":114,"queue":440,"season":8,"timestamp":1483381455299,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":3000145243,"champion":154,"queue":420,"season":8,"timestamp":1483314252451,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3000068774,"champion":154,"queue":420,"season":8,"timestamp":1483311764059,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":3000091257,"champion":4,"queue":420,"season":8,"timestamp":1483310101637,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2999989137,"champion":4,"queue":420,"season":8,"timestamp":1483306919590,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2999916613,"champion":4,"queue":420,"season":8,"timestamp":1483303858636,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2999874234,"champion":4,"queue":420,"season":8,"timestamp":1483301296632,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2998484795,"champion":80,"queue":420,"season":8,"timestamp":1483203832910,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2998437456,"champion":80,"queue":420,"season":8,"timestamp":1483201601514,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2998377870,"champion":56,"queue":420,"season":8,"timestamp":1483198770905,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2998327064,"champion":39,"queue":420,"season":8,"timestamp":1483195983274,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2998279296,"champion":80,"queue":420,"season":8,"timestamp":1483193939719,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2998261906,"champion":39,"queue":420,"season":8,"timestamp":1483191728131,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2996816590,"champion":4,"queue":420,"season":8,"timestamp":1483112606242,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2996766270,"champion":154,"queue":420,"season":8,"timestamp":1483109928353,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996704282,"champion":154,"queue":420,"season":8,"timestamp":1483106413448,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996636887,"champion":154,"queue":420,"season":8,"timestamp":1483103977183,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996609064,"champion":154,"queue":420,"season":8,"timestamp":1483102003639,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996601879,"champion":154,"queue":420,"season":8,"timestamp":1483099275355,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996519160,"champion":154,"queue":420,"season":8,"timestamp":1483097259376,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996329582,"champion":56,"queue":420,"season":8,"timestamp":1483061857765,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996323864,"champion":32,"queue":420,"season":8,"timestamp":1483058985532,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996266891,"champion":64,"queue":420,"season":8,"timestamp":1483056381101,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2996180383,"champion":40,"queue":420,"season":8,"timestamp":1483054473540,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2996028975,"champion":114,"queue":420,"season":8,"timestamp":1483051475512,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2995762309,"champion":40,"queue":420,"season":8,"timestamp":1483045564307,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995604880,"champion":63,"queue":420,"season":8,"timestamp":1483041689552,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995566130,"champion":63,"queue":420,"season":8,"timestamp":1483039933127,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995498932,"champion":51,"queue":420,"season":8,"timestamp":1483037714316,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995448175,"champion":63,"queue":420,"season":8,"timestamp":1483034847055,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995376389,"champion":63,"queue":420,"season":8,"timestamp":1483031777611,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995335279,"champion":63,"queue":420,"season":8,"timestamp":1483028966624,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995247453,"champion":53,"queue":420,"season":8,"timestamp":1483024683927,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2995182667,"champion":63,"queue":420,"season":8,"timestamp":1483020804286,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995068317,"champion":63,"queue":420,"season":8,"timestamp":1483016206608,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995050492,"champion":63,"queue":420,"season":8,"timestamp":1483013229948,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2995024724,"champion":63,"queue":420,"season":8,"timestamp":1483010955505,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2994959332,"champion":154,"queue":420,"season":8,"timestamp":1483008116620,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2994953935,"champion":154,"queue":420,"season":8,"timestamp":1483004665239,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2994920114,"champion":77,"queue":420,"season":8,"timestamp":1483002261358,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2994918257,"champion":50,"queue":420,"season":8,"timestamp":1482999621684,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2994916900,"champion":63,"queue":420,"season":8,"timestamp":1482996509984,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2994887268,"champion":120,"queue":420,"season":8,"timestamp":1482993788411,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2994896299,"champion":154,"queue":420,"season":8,"timestamp":1482991766717,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2994885646,"champion":63,"queue":420,"season":8,"timestamp":1482988673180,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2993863759,"champion":79,"queue":420,"season":8,"timestamp":1482945477222,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993816152,"champion":154,"queue":420,"season":8,"timestamp":1482943505376,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993728469,"champion":154,"queue":420,"season":8,"timestamp":1482939386185,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993659973,"champion":154,"queue":420,"season":8,"timestamp":1482936900095,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993557647,"champion":154,"queue":420,"season":8,"timestamp":1482930601346,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993490008,"champion":51,"queue":420,"season":8,"timestamp":1482927919306,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2993492329,"champion":2,"queue":420,"season":8,"timestamp":1482924946527,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993443414,"champion":154,"queue":420,"season":8,"timestamp":1482921090025,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993430920,"champion":63,"queue":420,"season":8,"timestamp":1482918734702,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2993367694,"champion":63,"queue":420,"season":8,"timestamp":1482915563670,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2993384123,"champion":154,"queue":420,"season":8,"timestamp":1482912023076,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993383276,"champion":154,"queue":420,"season":8,"timestamp":1482909777028,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993363077,"champion":154,"queue":420,"season":8,"timestamp":1482904771114,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993371850,"champion":154,"queue":420,"season":8,"timestamp":1482901454193,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993328607,"champion":63,"queue":420,"season":8,"timestamp":1482896870998,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2993307798,"champion":154,"queue":420,"season":8,"timestamp":1482893900446,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993305128,"champion":154,"queue":420,"season":8,"timestamp":1482891275592,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993300470,"champion":154,"queue":420,"season":8,"timestamp":1482888321786,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993275011,"champion":104,"queue":420,"season":8,"timestamp":1482886256313,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2993188131,"champion":24,"queue":9,"season":8,"timestamp":1482882553681,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2991974166,"champion":17,"queue":420,"season":8,"timestamp":1482840809035,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2991908091,"champion":114,"queue":420,"season":8,"timestamp":1482838258616,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2991920811,"champion":86,"queue":420,"season":8,"timestamp":1482835409061,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2991690207,"champion":40,"queue":420,"season":8,"timestamp":1482798554745,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2991693054,"champion":40,"queue":420,"season":8,"timestamp":1482796364067,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2991627142,"champion":40,"queue":420,"season":8,"timestamp":1482794092687,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2991588913,"champion":114,"queue":420,"season":8,"timestamp":1482792032057,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2991590656,"champion":114,"queue":420,"season":8,"timestamp":1482790262245,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2991521136,"champion":114,"queue":420,"season":8,"timestamp":1482787960205,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2991348868,"champion":114,"queue":420,"season":8,"timestamp":1482782818593,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2991293499,"champion":114,"queue":420,"season":8,"timestamp":1482779416645,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2991142577,"champion":412,"queue":420,"season":8,"timestamp":1482776169529,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2990971683,"champion":64,"queue":420,"season":8,"timestamp":1482773055697,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2990719859,"champion":81,"queue":420,"season":8,"timestamp":1482769848158,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2990659673,"champion":40,"queue":420,"season":8,"timestamp":1482767325219,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2990614516,"champion":41,"queue":420,"season":8,"timestamp":1482763230263,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2990538906,"champion":78,"queue":420,"season":8,"timestamp":1482761246911,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2990510365,"champion":222,"queue":440,"season":8,"timestamp":1482758817550,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2990484660,"champion":114,"queue":440,"season":8,"timestamp":1482756441129,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2990256317,"champion":24,"queue":420,"season":8,"timestamp":1482716149467,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2990204543,"champion":157,"queue":420,"season":8,"timestamp":1482711007060,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2990148560,"champion":114,"queue":420,"season":8,"timestamp":1482708799216,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2990161975,"champion":114,"queue":420,"season":8,"timestamp":1482707017374,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2990103662,"champion":63,"queue":420,"season":8,"timestamp":1482704877320,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2990045762,"champion":40,"queue":420,"season":8,"timestamp":1482702825639,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2989985392,"champion":64,"queue":420,"season":8,"timestamp":1482700332704,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2989948419,"champion":51,"queue":420,"season":8,"timestamp":1482698616419,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2989753548,"champion":63,"queue":420,"season":8,"timestamp":1482688880443,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2989685530,"champion":114,"queue":420,"season":8,"timestamp":1482686332543,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2989626046,"champion":134,"queue":420,"season":8,"timestamp":1482683432554,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2989588506,"champion":134,"queue":420,"season":8,"timestamp":1482681013819,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2989520347,"champion":238,"queue":420,"season":8,"timestamp":1482678234592,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2989494750,"champion":157,"queue":420,"season":8,"timestamp":1482676154650,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2989276203,"champion":40,"queue":420,"season":8,"timestamp":1482672871068,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988796999,"champion":103,"queue":420,"season":8,"timestamp":1482625109923,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2988740148,"champion":102,"queue":420,"season":8,"timestamp":1482622182993,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2988680115,"champion":35,"queue":420,"season":8,"timestamp":1482618305903,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2988694621,"champion":40,"queue":420,"season":8,"timestamp":1482616278994,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988649980,"champion":40,"queue":420,"season":8,"timestamp":1482614520901,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988633672,"champion":40,"queue":420,"season":8,"timestamp":1482611581943,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988499629,"champion":157,"queue":420,"season":8,"timestamp":1482604844205,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2988524919,"champion":64,"queue":420,"season":8,"timestamp":1482602947400,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2988453928,"champion":40,"queue":420,"season":8,"timestamp":1482598390215,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988397370,"champion":103,"queue":420,"season":8,"timestamp":1482595844301,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2988338512,"champion":81,"queue":420,"season":8,"timestamp":1482593113403,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988288474,"champion":40,"queue":420,"season":8,"timestamp":1482590464498,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988261006,"champion":81,"queue":420,"season":8,"timestamp":1482588179379,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988189474,"champion":51,"queue":420,"season":8,"timestamp":1482584888641,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2988122419,"champion":102,"queue":420,"season":8,"timestamp":1482578763988,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2987040993,"champion":102,"queue":420,"season":8,"timestamp":1482516629342,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2986163456,"champion":157,"queue":420,"season":8,"timestamp":1482444846426,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2985889348,"champion":51,"queue":420,"season":8,"timestamp":1482441728787,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2985705758,"champion":114,"queue":420,"season":8,"timestamp":1482438756666,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2985623700,"champion":114,"queue":440,"season":8,"timestamp":1482436085296,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2985573076,"champion":114,"queue":420,"season":8,"timestamp":1482433646360,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2984660030,"champion":254,"queue":440,"season":8,"timestamp":1482357016991,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2984599608,"champion":64,"queue":440,"season":8,"timestamp":1482354628024,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2984526158,"champion":102,"queue":440,"season":8,"timestamp":1482351532894,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2984460797,"champion":40,"queue":420,"season":8,"timestamp":1482348199534,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2984058909,"champion":40,"queue":420,"season":8,"timestamp":1482345239789,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2982864489,"champion":114,"queue":420,"season":8,"timestamp":1482256006852,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2982804221,"champion":29,"queue":420,"season":8,"timestamp":1482253401541,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2982616427,"champion":51,"queue":420,"season":8,"timestamp":1482251590537,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2982428152,"champion":51,"queue":420,"season":8,"timestamp":1482249380228,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2982421355,"champion":51,"queue":420,"season":8,"timestamp":1482247715281,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2982281060,"champion":114,"queue":420,"season":8,"timestamp":1482245161473,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981867422,"champion":103,"queue":420,"season":8,"timestamp":1482189538527,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2981860962,"champion":114,"queue":420,"season":8,"timestamp":1482187304662,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981802610,"champion":64,"queue":420,"season":8,"timestamp":1482184933164,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2981725078,"champion":102,"queue":420,"season":8,"timestamp":1482182957549,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2981678066,"champion":40,"queue":420,"season":8,"timestamp":1482181389122,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2981618709,"champion":114,"queue":420,"season":8,"timestamp":1482179331516,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981579092,"champion":114,"queue":420,"season":8,"timestamp":1482177249417,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981479172,"champion":114,"queue":420,"season":8,"timestamp":1482172912732,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981470689,"champion":114,"queue":420,"season":8,"timestamp":1482170899527,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2981422664,"champion":53,"queue":420,"season":8,"timestamp":1482169080162,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2981352286,"champion":114,"queue":420,"season":8,"timestamp":1482166554107,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981250173,"champion":54,"queue":420,"season":8,"timestamp":1482163703227,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981242266,"champion":114,"queue":420,"season":8,"timestamp":1482161667458,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981195466,"champion":114,"queue":420,"season":8,"timestamp":1482159892096,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2981149216,"champion":114,"queue":420,"season":8,"timestamp":1482158268215,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2980975051,"champion":114,"queue":440,"season":8,"timestamp":1482149962342,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2980420987,"champion":51,"queue":420,"season":8,"timestamp":1482103555238,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2980384297,"champion":31,"queue":420,"season":8,"timestamp":1482101248366,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2980315617,"champion":51,"queue":420,"season":8,"timestamp":1482098776089,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2980276373,"champion":64,"queue":420,"season":8,"timestamp":1482096275813,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2980234216,"champion":114,"queue":420,"season":8,"timestamp":1482093565792,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2979986040,"champion":103,"queue":420,"season":8,"timestamp":1482085080780,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2979915567,"champion":32,"queue":420,"season":8,"timestamp":1482082694814,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2979882568,"champion":106,"queue":420,"season":8,"timestamp":1482079893116,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2979775799,"champion":238,"queue":420,"season":8,"timestamp":1482076232822,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2979483260,"champion":114,"queue":420,"season":8,"timestamp":1482063474111,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2979456952,"champion":114,"queue":420,"season":8,"timestamp":1482061474715,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2979267173,"champion":102,"queue":420,"season":8,"timestamp":1482028780994,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2979264308,"champion":32,"queue":420,"season":8,"timestamp":1482026326773,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2979189861,"champion":254,"queue":420,"season":8,"timestamp":1482023545447,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2979184981,"champion":121,"queue":420,"season":8,"timestamp":1482021201154,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2978383348,"champion":40,"queue":420,"season":8,"timestamp":1481999814629,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2978341420,"champion":114,"queue":420,"season":8,"timestamp":1481996830820,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2978272540,"champion":54,"queue":420,"season":8,"timestamp":1481994430321,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2978203045,"champion":122,"queue":420,"season":8,"timestamp":1481992006525,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2978072107,"champion":111,"queue":9,"season":8,"timestamp":1481984908960,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2977984157,"champion":64,"queue":420,"season":8,"timestamp":1481982674073,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2977871810,"champion":114,"queue":420,"season":8,"timestamp":1481976236314,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2977599561,"champion":8,"queue":420,"season":8,"timestamp":1481936564301,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2977576245,"champion":54,"queue":420,"season":8,"timestamp":1481934609317,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2977536896,"champion":126,"queue":420,"season":8,"timestamp":1481931130825,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2977501797,"champion":63,"queue":9,"season":8,"timestamp":1481928367150,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2977411892,"champion":69,"queue":9,"season":8,"timestamp":1481926253600,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2977084713,"champion":86,"queue":9,"season":8,"timestamp":1481924414429,"role":"DUO_CARRY","lane":"MID"},{"platformId":"EUW1","gameId":2976366244,"champion":114,"queue":420,"season":8,"timestamp":1481894325317,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2976310136,"champion":24,"queue":420,"season":8,"timestamp":1481891534310,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2976306024,"champion":114,"queue":440,"season":8,"timestamp":1481889227089,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2976281583,"champion":114,"queue":420,"season":8,"timestamp":1481885690092,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2976247749,"champion":114,"queue":420,"season":8,"timestamp":1481883303446,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2976235481,"champion":114,"queue":420,"season":8,"timestamp":1481880813830,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2976108380,"champion":114,"queue":420,"season":8,"timestamp":1481847526299,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2976104174,"champion":51,"queue":420,"season":8,"timestamp":1481845064731,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2975761480,"champion":114,"queue":420,"season":8,"timestamp":1481827367890,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2975623997,"champion":114,"queue":420,"season":8,"timestamp":1481825402319,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2975044473,"champion":114,"queue":420,"season":8,"timestamp":1481810422248,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2974989177,"champion":114,"queue":420,"season":8,"timestamp":1481808119739,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2974993830,"champion":114,"queue":420,"season":8,"timestamp":1481805423758,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2974919325,"champion":114,"queue":420,"season":8,"timestamp":1481802209967,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2974924773,"champion":114,"queue":420,"season":8,"timestamp":1481799219254,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2974941795,"champion":64,"queue":420,"season":8,"timestamp":1481796814005,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2974810543,"champion":102,"queue":420,"season":8,"timestamp":1481759901799,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2974737918,"champion":114,"queue":420,"season":8,"timestamp":1481758041431,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2974732776,"champion":114,"queue":420,"season":8,"timestamp":1481755664029,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2974687772,"champion":114,"queue":420,"season":8,"timestamp":1481754002362,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2974074581,"champion":64,"queue":420,"season":8,"timestamp":1481721699044,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2974018150,"champion":114,"queue":420,"season":8,"timestamp":1481718543586,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2973479452,"champion":102,"queue":420,"season":8,"timestamp":1481678852799,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2973458739,"champion":64,"queue":420,"season":8,"timestamp":1481676975764,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2973455237,"champion":81,"queue":420,"season":8,"timestamp":1481674421920,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2973470775,"champion":76,"queue":420,"season":8,"timestamp":1481672562127,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2973405711,"champion":20,"queue":420,"season":8,"timestamp":1481669932231,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2973338822,"champion":114,"queue":420,"season":8,"timestamp":1481667362455,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2973306233,"champion":64,"queue":420,"season":8,"timestamp":1481664128785,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2973236047,"champion":114,"queue":420,"season":8,"timestamp":1481661353831,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2973146390,"champion":102,"queue":420,"season":8,"timestamp":1481657295937,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2973074915,"champion":43,"queue":420,"season":8,"timestamp":1481654541690,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2973031678,"champion":412,"queue":420,"season":8,"timestamp":1481651335287,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2972760028,"champion":35,"queue":420,"season":8,"timestamp":1481648569184,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2972547773,"champion":114,"queue":420,"season":8,"timestamp":1481645259029,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2972467947,"champion":114,"queue":440,"season":8,"timestamp":1481642660420,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2972460869,"champion":114,"queue":420,"season":8,"timestamp":1481640362078,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2972347615,"champion":114,"queue":440,"season":8,"timestamp":1481635316679,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2972028250,"champion":24,"queue":420,"season":8,"timestamp":1481582271145,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2971979362,"champion":114,"queue":420,"season":8,"timestamp":1481579461035,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2971917400,"champion":114,"queue":440,"season":8,"timestamp":1481576347443,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2971856738,"champion":114,"queue":420,"season":8,"timestamp":1481573988161,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2971804144,"champion":114,"queue":420,"season":8,"timestamp":1481571333122,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2971706311,"champion":114,"queue":420,"season":8,"timestamp":1481567433033,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2971003478,"champion":114,"queue":420,"season":8,"timestamp":1481550003812,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970961965,"champion":114,"queue":420,"season":8,"timestamp":1481544599149,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970918567,"champion":114,"queue":420,"season":8,"timestamp":1481542314306,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970885784,"champion":114,"queue":420,"season":8,"timestamp":1481539650269,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970902679,"champion":64,"queue":420,"season":8,"timestamp":1481537251184,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2970880745,"champion":69,"queue":440,"season":8,"timestamp":1481534854449,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2970737032,"champion":40,"queue":440,"season":8,"timestamp":1481498764496,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2970721082,"champion":43,"queue":440,"season":8,"timestamp":1481495906040,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2970671167,"champion":114,"queue":420,"season":8,"timestamp":1481493012714,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970593453,"champion":92,"queue":440,"season":8,"timestamp":1481490608791,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970491833,"champion":114,"queue":420,"season":8,"timestamp":1481485765231,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970440716,"champion":114,"queue":420,"season":8,"timestamp":1481483355964,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970349089,"champion":114,"queue":420,"season":8,"timestamp":1481480693658,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970345363,"champion":114,"queue":420,"season":8,"timestamp":1481480030985,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970281072,"champion":43,"queue":420,"season":8,"timestamp":1481476763657,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2970177459,"champion":53,"queue":420,"season":8,"timestamp":1481473894813,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2970118156,"champion":114,"queue":420,"season":8,"timestamp":1481471934634,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970079773,"champion":114,"queue":420,"season":8,"timestamp":1481470204151,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2970020099,"champion":121,"queue":420,"season":8,"timestamp":1481468128487,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2969979663,"champion":4,"queue":420,"season":8,"timestamp":1481466111116,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2969891848,"champion":54,"queue":420,"season":8,"timestamp":1481461748467,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2969829507,"champion":64,"queue":420,"season":8,"timestamp":1481458556252,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2969800995,"champion":103,"queue":420,"season":8,"timestamp":1481455530194,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2969743206,"champion":51,"queue":420,"season":8,"timestamp":1481452417890,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2969687027,"champion":24,"queue":420,"season":8,"timestamp":1481449249555,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2969703316,"champion":114,"queue":420,"season":8,"timestamp":1481447173180,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2969229105,"champion":64,"queue":420,"season":8,"timestamp":1481415964334,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2969221393,"champion":35,"queue":420,"season":8,"timestamp":1481413184604,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2969091330,"champion":157,"queue":440,"season":8,"timestamp":1481410392090,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2969022556,"champion":35,"queue":440,"season":8,"timestamp":1481408318046,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2968587234,"champion":114,"queue":420,"season":8,"timestamp":1481390259310,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2968547170,"champion":64,"queue":420,"season":8,"timestamp":1481388033928,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2968468937,"champion":114,"queue":420,"season":8,"timestamp":1481385931473,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2968429882,"champion":114,"queue":420,"season":8,"timestamp":1481383912842,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2968397585,"champion":111,"queue":420,"season":8,"timestamp":1481381111110,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2968338408,"champion":102,"queue":440,"season":8,"timestamp":1481379076921,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2968320767,"champion":114,"queue":440,"season":8,"timestamp":1481377009409,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2968271111,"champion":114,"queue":440,"season":8,"timestamp":1481374596204,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2968161305,"champion":114,"queue":420,"season":8,"timestamp":1481368148951,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2968113090,"champion":114,"queue":420,"season":8,"timestamp":1481364690215,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2968048656,"champion":35,"queue":420,"season":8,"timestamp":1481362249913,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2967901303,"champion":114,"queue":420,"season":8,"timestamp":1481328291196,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2967871544,"champion":114,"queue":420,"season":8,"timestamp":1481325246608,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2967700827,"champion":35,"queue":420,"season":8,"timestamp":1481322368496,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2967348876,"champion":33,"queue":420,"season":8,"timestamp":1481319705541,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2967285004,"champion":114,"queue":420,"season":8,"timestamp":1481316815441,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2967235758,"champion":43,"queue":420,"season":8,"timestamp":1481314904002,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2967174450,"champion":24,"queue":420,"season":8,"timestamp":1481312227799,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2967048626,"champion":154,"queue":420,"season":8,"timestamp":1481308207375,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2966655931,"champion":114,"queue":420,"season":8,"timestamp":1481286517258,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2966641078,"champion":114,"queue":440,"season":8,"timestamp":1481283977217,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2966494931,"champion":114,"queue":420,"season":8,"timestamp":1481245836808,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2966482494,"champion":54,"queue":420,"season":8,"timestamp":1481243795693,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2966416976,"champion":64,"queue":420,"season":8,"timestamp":1481240563868,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2966421385,"champion":68,"queue":420,"season":8,"timestamp":1481238108108,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2966372574,"champion":54,"queue":420,"season":8,"timestamp":1481235048138,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2966302732,"champion":238,"queue":420,"season":8,"timestamp":1481232256755,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2966219538,"champion":35,"queue":420,"season":8,"timestamp":1481229011390,"role":"DUO_SUPPORT","lane":"TOP"},{"platformId":"EUW1","gameId":2966108019,"champion":157,"queue":420,"season":8,"timestamp":1481224362898,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2966048569,"champion":35,"queue":420,"season":8,"timestamp":1481222084908,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965737165,"champion":64,"queue":420,"season":8,"timestamp":1481219371621,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965773921,"champion":8,"queue":420,"season":8,"timestamp":1481218688577,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2965571447,"champion":114,"queue":420,"season":8,"timestamp":1481215664602,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2965521835,"champion":76,"queue":420,"season":8,"timestamp":1481213289106,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965473328,"champion":102,"queue":420,"season":8,"timestamp":1481211017574,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965421540,"champion":64,"queue":420,"season":8,"timestamp":1481207787868,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965367630,"champion":64,"queue":420,"season":8,"timestamp":1481206370974,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965371305,"champion":24,"queue":420,"season":8,"timestamp":1481204332140,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965317730,"champion":64,"queue":420,"season":8,"timestamp":1481202728410,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965258050,"champion":64,"queue":420,"season":8,"timestamp":1481198566621,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965253096,"champion":114,"queue":420,"season":8,"timestamp":1481196048015,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2965075789,"champion":114,"queue":420,"season":8,"timestamp":1481157610147,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2965039748,"champion":114,"queue":420,"season":8,"timestamp":1481154450320,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2965014158,"champion":64,"queue":420,"season":8,"timestamp":1481151843889,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2965031618,"champion":69,"queue":420,"season":8,"timestamp":1481151065711,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964983382,"champion":32,"queue":420,"season":8,"timestamp":1481148347769,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2964917505,"champion":254,"queue":420,"season":8,"timestamp":1481146650060,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2964879042,"champion":150,"queue":420,"season":8,"timestamp":1481144425158,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964804479,"champion":114,"queue":420,"season":8,"timestamp":1481140909193,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964761735,"champion":114,"queue":420,"season":8,"timestamp":1481137994154,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964713667,"champion":64,"queue":420,"season":8,"timestamp":1481136043283,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2964654766,"champion":114,"queue":420,"season":8,"timestamp":1481133882117,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964342828,"champion":114,"queue":420,"season":8,"timestamp":1481115933324,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964288701,"champion":24,"queue":420,"season":8,"timestamp":1481113881783,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2964304315,"champion":64,"queue":420,"season":8,"timestamp":1481111445370,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2964301249,"champion":114,"queue":420,"season":8,"timestamp":1481109149320,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964179117,"champion":114,"queue":420,"season":8,"timestamp":1481107267551,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2963967201,"champion":24,"queue":420,"season":8,"timestamp":1481105591332,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2964175194,"champion":114,"queue":420,"season":8,"timestamp":1481103189461,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964173318,"champion":64,"queue":420,"season":8,"timestamp":1481100516792,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2964152302,"champion":114,"queue":420,"season":8,"timestamp":1481098467852,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2964151388,"champion":64,"queue":420,"season":8,"timestamp":1481095931679,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2963960948,"champion":254,"queue":420,"season":8,"timestamp":1481093858681,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2962945092,"champion":64,"queue":440,"season":8,"timestamp":1481045177153,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2962887747,"champion":102,"queue":440,"season":8,"timestamp":1481043049838,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2962846034,"champion":64,"queue":440,"season":8,"timestamp":1481040546931,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2962834382,"champion":107,"queue":440,"season":8,"timestamp":1481038954201,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2962767106,"champion":64,"queue":440,"season":8,"timestamp":1481036390540,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2962460587,"champion":64,"queue":440,"season":8,"timestamp":1480979284138,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2962402745,"champion":64,"queue":440,"season":8,"timestamp":1480975984417,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2962318027,"champion":238,"queue":440,"season":8,"timestamp":1480973265341,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2962259993,"champion":24,"queue":440,"season":8,"timestamp":1480970958711,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2961291598,"champion":53,"queue":440,"season":8,"timestamp":1480896842194,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2961240747,"champion":238,"queue":440,"season":8,"timestamp":1480894157909,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2961161920,"champion":157,"queue":440,"season":8,"timestamp":1480891250419,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2961077222,"champion":81,"queue":420,"season":8,"timestamp":1480888305953,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2959039295,"champion":64,"queue":420,"season":8,"timestamp":1480784489211,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2958666493,"champion":114,"queue":420,"season":8,"timestamp":1480765270394,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2958661955,"champion":121,"queue":420,"season":8,"timestamp":1480763322401,"role":"NONE","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2958436976,"champion":53,"queue":420,"season":8,"timestamp":1480725302927,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2958412001,"champion":64,"queue":420,"season":8,"timestamp":1480722234868,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2958336999,"champion":114,"queue":420,"season":8,"timestamp":1480719895903,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2958277117,"champion":64,"queue":420,"season":8,"timestamp":1480717163782,"role":"NONE","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2958205911,"champion":43,"queue":420,"season":8,"timestamp":1480714770099,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2958078845,"champion":64,"queue":420,"season":8,"timestamp":1480713080836,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2957880155,"champion":114,"queue":420,"season":8,"timestamp":1480710562644,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2957623105,"champion":114,"queue":420,"season":8,"timestamp":1480704215244,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2957539796,"champion":64,"queue":420,"season":8,"timestamp":1480702262101,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2957254454,"champion":114,"queue":420,"season":8,"timestamp":1480685174637,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2957243251,"champion":64,"queue":420,"season":8,"timestamp":1480683849043,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2957220629,"champion":64,"queue":420,"season":8,"timestamp":1480681345285,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2957193179,"champion":114,"queue":420,"season":8,"timestamp":1480678465413,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2957152971,"champion":114,"queue":420,"season":8,"timestamp":1480675846856,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2957137431,"champion":53,"queue":420,"season":8,"timestamp":1480673716772,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2956984977,"champion":9,"queue":420,"season":8,"timestamp":1480635216305,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2956948678,"champion":121,"queue":420,"season":8,"timestamp":1480633375019,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2956937647,"champion":37,"queue":420,"season":8,"timestamp":1480632302229,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2956887661,"champion":92,"queue":420,"season":8,"timestamp":1480630203414,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2956847899,"champion":76,"queue":420,"season":8,"timestamp":1480627739696,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2956786409,"champion":114,"queue":420,"season":8,"timestamp":1480625305404,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2956658264,"champion":114,"queue":420,"season":8,"timestamp":1480621058147,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2956580089,"champion":64,"queue":420,"season":8,"timestamp":1480618417154,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2956535996,"champion":51,"queue":420,"season":8,"timestamp":1480615654218,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2955830282,"champion":64,"queue":420,"season":8,"timestamp":1480600617102,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2955817297,"champion":64,"queue":420,"season":8,"timestamp":1480599147339,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2955789640,"champion":102,"queue":420,"season":8,"timestamp":1480597002660,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2955776748,"champion":22,"queue":440,"season":8,"timestamp":1480594457004,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2955714391,"champion":11,"queue":420,"season":8,"timestamp":1480586147727,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2955721366,"champion":64,"queue":420,"season":8,"timestamp":1480583161686,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2955587234,"champion":114,"queue":420,"season":8,"timestamp":1480552561683,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2955611769,"champion":114,"queue":420,"season":8,"timestamp":1480549719997,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2955557601,"champion":133,"queue":420,"season":8,"timestamp":1480547551944,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2955543246,"champion":20,"queue":420,"season":8,"timestamp":1480545369439,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2955496170,"champion":64,"queue":420,"season":8,"timestamp":1480543247521,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2955428285,"champion":117,"queue":440,"season":8,"timestamp":1480540617623,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2955367507,"champion":4,"queue":440,"season":8,"timestamp":1480537856519,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2955350556,"champion":43,"queue":440,"season":8,"timestamp":1480536142266,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2955218050,"champion":43,"queue":420,"season":8,"timestamp":1480531323412,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2955194144,"champion":76,"queue":420,"season":8,"timestamp":1480529944824,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2954850471,"champion":64,"queue":420,"season":8,"timestamp":1480510347356,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2954805533,"champion":114,"queue":420,"season":8,"timestamp":1480507618226,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2954802754,"champion":20,"queue":420,"season":8,"timestamp":1480505858305,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2954769427,"champion":114,"queue":420,"season":8,"timestamp":1480504159084,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2954615914,"champion":92,"queue":420,"season":8,"timestamp":1480463428266,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2954641253,"champion":114,"queue":420,"season":8,"timestamp":1480461244017,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2954497188,"champion":112,"queue":420,"season":8,"timestamp":1480459138030,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2954327861,"champion":238,"queue":420,"season":8,"timestamp":1480456079577,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2953770302,"champion":43,"queue":420,"season":8,"timestamp":1480439822856,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2953699469,"champion":114,"queue":420,"season":8,"timestamp":1480436578041,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2953649907,"champion":122,"queue":420,"season":8,"timestamp":1480433961738,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2953634704,"champion":64,"queue":420,"season":8,"timestamp":1480431851353,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2953311245,"champion":69,"queue":440,"season":8,"timestamp":1480375317697,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2953275403,"champion":76,"queue":420,"season":8,"timestamp":1480372992549,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2952968162,"champion":43,"queue":420,"season":8,"timestamp":1480359590103,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2952807747,"champion":114,"queue":420,"season":8,"timestamp":1480356792296,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2952247133,"champion":81,"queue":420,"season":8,"timestamp":1480339548448,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2952242790,"champion":64,"queue":420,"season":8,"timestamp":1480336991265,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2952220494,"champion":25,"queue":420,"season":8,"timestamp":1480334674394,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2952196728,"champion":102,"queue":420,"season":8,"timestamp":1480332681536,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2952174688,"champion":28,"queue":420,"season":8,"timestamp":1480330215448,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2952191548,"champion":43,"queue":420,"season":8,"timestamp":1480327863841,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2952129589,"champion":85,"queue":420,"season":8,"timestamp":1480325447474,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2952064142,"champion":28,"queue":420,"season":8,"timestamp":1480291616592,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2952050941,"champion":76,"queue":420,"season":8,"timestamp":1480289080844,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2951993271,"champion":111,"queue":420,"season":8,"timestamp":1480285931600,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2951916812,"champion":24,"queue":420,"season":8,"timestamp":1480283167552,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2951910642,"champion":114,"queue":420,"season":8,"timestamp":1480281279335,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2951758400,"champion":81,"queue":420,"season":8,"timestamp":1480276031550,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2951697486,"champion":12,"queue":420,"season":8,"timestamp":1480273464539,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2951609038,"champion":40,"queue":420,"season":8,"timestamp":1480271145617,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2951568324,"champion":11,"queue":420,"season":8,"timestamp":1480268601413,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2951518828,"champion":114,"queue":420,"season":8,"timestamp":1480266685496,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2951459933,"champion":35,"queue":420,"season":8,"timestamp":1480264538356,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2951388619,"champion":114,"queue":420,"season":8,"timestamp":1480261698510,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2951063312,"champion":64,"queue":420,"season":8,"timestamp":1480246602024,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2950875170,"champion":24,"queue":420,"season":8,"timestamp":1480243333761,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2950638011,"champion":114,"queue":420,"season":8,"timestamp":1480239914910,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2950387797,"champion":24,"queue":420,"season":8,"timestamp":1480203925937,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2950390463,"champion":29,"queue":420,"season":8,"timestamp":1480201557130,"role":"DUO_SUPPORT","lane":"TOP"},{"platformId":"EUW1","gameId":2950342034,"champion":254,"queue":420,"season":8,"timestamp":1480199516010,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2950264845,"champion":114,"queue":420,"season":8,"timestamp":1480197399689,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2950213778,"champion":35,"queue":420,"season":8,"timestamp":1480194919665,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2950093796,"champion":24,"queue":420,"season":8,"timestamp":1480189958548,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2950023675,"champion":64,"queue":420,"season":8,"timestamp":1480187226986,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2949029431,"champion":64,"queue":420,"season":8,"timestamp":1480152519494,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2949026909,"champion":114,"queue":420,"season":8,"timestamp":1480150344983,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2949025329,"champion":103,"queue":420,"season":8,"timestamp":1480148378238,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2949024136,"champion":51,"queue":420,"season":8,"timestamp":1480146355763,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2948822004,"champion":114,"queue":420,"season":8,"timestamp":1480118261702,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2948755790,"champion":114,"queue":420,"season":8,"timestamp":1480116106519,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2948696975,"champion":48,"queue":420,"season":8,"timestamp":1480113616188,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2948608726,"champion":64,"queue":420,"season":8,"timestamp":1480111244049,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2948516376,"champion":114,"queue":420,"season":8,"timestamp":1480106376945,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2947956701,"champion":64,"queue":420,"season":8,"timestamp":1480080123500,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2947941703,"champion":114,"queue":420,"season":8,"timestamp":1480077190387,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2947887561,"champion":20,"queue":420,"season":8,"timestamp":1480074731989,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2947893568,"champion":114,"queue":420,"season":8,"timestamp":1480072542498,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2947820336,"champion":15,"queue":440,"season":8,"timestamp":1480069251352,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2947703618,"champion":114,"queue":420,"season":8,"timestamp":1480029150433,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2947637762,"champion":114,"queue":420,"season":8,"timestamp":1480026731974,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2947262853,"champion":64,"queue":420,"season":8,"timestamp":1480019921502,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2947113456,"champion":64,"queue":420,"season":8,"timestamp":1480017754442,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2947000332,"champion":114,"queue":420,"season":8,"timestamp":1480014606731,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2946938733,"champion":51,"queue":420,"season":8,"timestamp":1480011740180,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2946594148,"champion":114,"queue":420,"season":8,"timestamp":1479990347278,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2946540031,"champion":114,"queue":420,"season":8,"timestamp":1479987933705,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2946536591,"champion":64,"queue":420,"season":8,"timestamp":1479985551935,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2946544284,"champion":114,"queue":420,"season":8,"timestamp":1479983780593,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2946380076,"champion":53,"queue":420,"season":8,"timestamp":1479944379776,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2946338685,"champion":7,"queue":9,"season":8,"timestamp":1479941004593,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2946279334,"champion":63,"queue":9,"season":8,"timestamp":1479937632652,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":2946244496,"champion":76,"queue":440,"season":8,"timestamp":1479935358421,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2946205995,"champion":51,"queue":420,"season":8,"timestamp":1479933304608,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2946135700,"champion":35,"queue":420,"season":8,"timestamp":1479930834660,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2946036633,"champion":64,"queue":420,"season":8,"timestamp":1479926388436,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2945314084,"champion":429,"queue":440,"season":8,"timestamp":1479908873738,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2945268069,"champion":29,"queue":440,"season":8,"timestamp":1479906364527,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2945263528,"champion":51,"queue":440,"season":8,"timestamp":1479904064944,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2945236797,"champion":29,"queue":440,"season":8,"timestamp":1479899791513,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2944642751,"champion":81,"queue":440,"season":8,"timestamp":1479836129394,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2944585786,"champion":67,"queue":440,"season":8,"timestamp":1479834051496,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2944516739,"champion":51,"queue":440,"season":8,"timestamp":1479831252742,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2944460401,"champion":114,"queue":420,"season":8,"timestamp":1479829140498,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2944474868,"champion":64,"queue":420,"season":8,"timestamp":1479827190350,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2944335929,"champion":53,"queue":420,"season":8,"timestamp":1479817658389,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2943801437,"champion":412,"queue":420,"season":8,"timestamp":1479770849773,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2943763328,"champion":114,"queue":420,"season":8,"timestamp":1479767834891,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2943698540,"champion":64,"queue":420,"season":8,"timestamp":1479765736996,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2943638555,"champion":114,"queue":420,"season":8,"timestamp":1479763109004,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2943579843,"champion":412,"queue":420,"season":8,"timestamp":1479760935707,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2943527045,"champion":21,"queue":440,"season":8,"timestamp":1479758243687,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2943474232,"champion":81,"queue":420,"season":8,"timestamp":1479755829084,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2943379218,"champion":78,"queue":420,"season":8,"timestamp":1479752365589,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2942963353,"champion":114,"queue":9,"season":8,"timestamp":1479736670505,"role":"DUO_CARRY","lane":"MID"},{"platformId":"EUW1","gameId":2942870973,"champion":32,"queue":420,"season":8,"timestamp":1479734274373,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2942685521,"champion":64,"queue":420,"season":8,"timestamp":1479730390228,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2942681155,"champion":32,"queue":440,"season":8,"timestamp":1479727377698,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2942607804,"champion":64,"queue":440,"season":8,"timestamp":1479724596003,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2942605635,"champion":11,"queue":440,"season":8,"timestamp":1479722676712,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2942462353,"champion":157,"queue":440,"season":8,"timestamp":1479683852993,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2942359136,"champion":114,"queue":440,"season":8,"timestamp":1479679118054,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2942178478,"champion":114,"queue":440,"season":8,"timestamp":1479671458092,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2942114665,"champion":114,"queue":440,"season":8,"timestamp":1479668590298,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2942070785,"champion":412,"queue":440,"season":8,"timestamp":1479665583071,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2942005731,"champion":114,"queue":440,"season":8,"timestamp":1479664377509,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2941845162,"champion":64,"queue":440,"season":8,"timestamp":1479658182592,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2941283629,"champion":64,"queue":440,"season":8,"timestamp":1479637391695,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2941018360,"champion":114,"queue":440,"season":8,"timestamp":1479634130062,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2940788361,"champion":114,"queue":440,"season":8,"timestamp":1479600001595,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2940719649,"champion":35,"queue":440,"season":8,"timestamp":1479597329407,"role":"NONE","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2940670402,"champion":32,"queue":440,"season":8,"timestamp":1479594970176,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2940594304,"champion":238,"queue":440,"season":8,"timestamp":1479591283099,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2940551176,"champion":107,"queue":440,"season":8,"timestamp":1479588625839,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2940459866,"champion":64,"queue":440,"season":8,"timestamp":1479586117222,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2940207967,"champion":157,"queue":440,"season":8,"timestamp":1479575827593,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2940159458,"champion":39,"queue":440,"season":8,"timestamp":1479573788792,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2940106984,"champion":64,"queue":440,"season":8,"timestamp":1479571007648,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2940042253,"champion":37,"queue":440,"season":8,"timestamp":1479567847887,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2939982807,"champion":238,"queue":440,"season":8,"timestamp":1479565657457,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2939922248,"champion":76,"queue":440,"season":8,"timestamp":1479563213417,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2939873892,"champion":121,"queue":440,"season":8,"timestamp":1479561023122,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2939432597,"champion":114,"queue":440,"season":8,"timestamp":1479554483718,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2939166615,"champion":157,"queue":9,"season":8,"timestamp":1479519801261,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2939119648,"champion":121,"queue":9,"season":8,"timestamp":1479517516790,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2939124154,"champion":64,"queue":440,"season":8,"timestamp":1479515656238,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2939102261,"champion":104,"queue":9,"season":8,"timestamp":1479512862849,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2939035965,"champion":63,"queue":9,"season":8,"timestamp":1479510498900,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2938974036,"champion":114,"queue":9,"season":8,"timestamp":1479507168172,"role":"DUO_CARRY","lane":"MID"},{"platformId":"EUW1","gameId":2938657189,"champion":107,"queue":9,"season":8,"timestamp":1479496311305,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2937773819,"champion":64,"queue":440,"season":8,"timestamp":1479470760277,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2937729902,"champion":114,"queue":440,"season":8,"timestamp":1479468321543,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2937724957,"champion":64,"queue":440,"season":8,"timestamp":1479464883380,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2937731044,"champion":64,"queue":440,"season":8,"timestamp":1479461948634,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2937565508,"champion":102,"queue":440,"season":8,"timestamp":1479424333649,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2937499419,"champion":114,"queue":440,"season":8,"timestamp":1479421969003,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2937121402,"champion":63,"queue":9,"season":8,"timestamp":1479405118241,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2937044494,"champion":78,"queue":440,"season":8,"timestamp":1479402388000,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2936982326,"champion":54,"queue":440,"season":8,"timestamp":1479399226215,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2936923830,"champion":35,"queue":9,"season":8,"timestamp":1479396739742,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2936859507,"champion":114,"queue":9,"season":8,"timestamp":1479395254785,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":2936849651,"champion":25,"queue":9,"season":8,"timestamp":1479393551877,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2936200745,"champion":63,"queue":9,"season":8,"timestamp":1479339323663,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2936068548,"champion":43,"queue":9,"season":8,"timestamp":1479333129702,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2936060503,"champion":114,"queue":9,"season":8,"timestamp":1479330702919,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2935973076,"champion":126,"queue":440,"season":8,"timestamp":1479328504856,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2935889658,"champion":64,"queue":440,"season":8,"timestamp":1479325762285,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2935825578,"champion":64,"queue":440,"season":8,"timestamp":1479322682159,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2935755815,"champion":69,"queue":9,"season":8,"timestamp":1479319935813,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2935454548,"champion":121,"queue":9,"season":8,"timestamp":1479304464425,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2935451754,"champion":35,"queue":9,"season":8,"timestamp":1479303351426,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2935066279,"champion":69,"queue":9,"season":8,"timestamp":1479301741862,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2934939820,"champion":69,"queue":9,"season":8,"timestamp":1479296720948,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2934974910,"champion":69,"queue":9,"season":8,"timestamp":1479295178492,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2934928974,"champion":114,"queue":9,"season":8,"timestamp":1479291793112,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2934932545,"champion":63,"queue":9,"season":8,"timestamp":1479290359856,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2934899541,"champion":114,"queue":440,"season":8,"timestamp":1479288794562,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2934898011,"champion":114,"queue":440,"season":8,"timestamp":1479286547137,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2934876891,"champion":31,"queue":440,"season":8,"timestamp":1479283577870,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2934770138,"champion":64,"queue":440,"season":8,"timestamp":1479252039338,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2934765859,"champion":64,"queue":440,"season":8,"timestamp":1479250017257,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2934710062,"champion":64,"queue":440,"season":8,"timestamp":1479247820831,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2934693596,"champion":114,"queue":440,"season":8,"timestamp":1479245735928,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2934470680,"champion":64,"queue":440,"season":8,"timestamp":1479235076236,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2934403625,"champion":114,"queue":440,"season":8,"timestamp":1479233169973,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2934107931,"champion":114,"queue":440,"season":8,"timestamp":1479218422098,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2934113705,"champion":24,"queue":440,"season":8,"timestamp":1479216393512,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2934019067,"champion":64,"queue":9,"season":8,"timestamp":1479211885589,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2934032925,"champion":114,"queue":440,"season":8,"timestamp":1479209446660,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2933779740,"champion":121,"queue":440,"season":8,"timestamp":1479206618673,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2933647201,"champion":114,"queue":440,"season":8,"timestamp":1479204250863,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2933765833,"champion":63,"queue":440,"season":8,"timestamp":1479202491763,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2933763967,"champion":111,"queue":440,"season":8,"timestamp":1479199680691,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2933772980,"champion":53,"queue":440,"season":8,"timestamp":1479197745146,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2932357697,"champion":64,"queue":440,"season":8,"timestamp":1479129822393,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2932318635,"champion":114,"queue":440,"season":8,"timestamp":1479124262411,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2932315842,"champion":114,"queue":440,"season":8,"timestamp":1479121923859,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2932313624,"champion":111,"queue":440,"season":8,"timestamp":1479119712174,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2932312090,"champion":114,"queue":440,"season":8,"timestamp":1479118115139,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2932260245,"champion":114,"queue":440,"season":8,"timestamp":1479115663097,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2932239135,"champion":64,"queue":440,"season":8,"timestamp":1479113044008,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2932231172,"champion":114,"queue":440,"season":8,"timestamp":1479087250553,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2932168951,"champion":114,"queue":440,"season":8,"timestamp":1479085103508,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2932156816,"champion":68,"queue":440,"season":8,"timestamp":1479082732977,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2932109965,"champion":64,"queue":440,"season":8,"timestamp":1479078651168,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2932094031,"champion":64,"queue":440,"season":8,"timestamp":1479075854396,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2932037365,"champion":64,"queue":440,"season":8,"timestamp":1479073549191,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2930433338,"champion":37,"queue":440,"season":8,"timestamp":1478993578490,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2930383578,"champion":121,"queue":440,"season":8,"timestamp":1478990791326,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2930322085,"champion":111,"queue":440,"season":8,"timestamp":1478987967977,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2930189494,"champion":92,"queue":440,"season":8,"timestamp":1478984889273,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2930149002,"champion":64,"queue":440,"season":8,"timestamp":1478982518898,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2929890364,"champion":114,"queue":440,"season":8,"timestamp":1478975167208,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2929873529,"champion":114,"queue":440,"season":8,"timestamp":1478973085187,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2929667492,"champion":64,"queue":440,"season":8,"timestamp":1478971615887,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2929660494,"champion":64,"queue":440,"season":8,"timestamp":1478969751004,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2929453743,"champion":114,"queue":440,"season":8,"timestamp":1478968027819,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2928928754,"champion":114,"queue":440,"season":8,"timestamp":1478945392107,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2928907437,"champion":114,"queue":9,"season":8,"timestamp":1478942435642,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2928932806,"champion":64,"queue":440,"season":8,"timestamp":1478941209393,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2928793433,"champion":114,"queue":440,"season":8,"timestamp":1478910699295,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2928710186,"champion":114,"queue":440,"season":8,"timestamp":1478908959987,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2928721797,"champion":64,"queue":440,"season":8,"timestamp":1478906223289,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2928646190,"champion":114,"queue":440,"season":8,"timestamp":1478904386293,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2928585374,"champion":114,"queue":440,"season":8,"timestamp":1478901664586,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2928544313,"champion":114,"queue":440,"season":8,"timestamp":1478899260501,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2927945293,"champion":412,"queue":440,"season":8,"timestamp":1478892090493,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2927905128,"champion":64,"queue":440,"season":8,"timestamp":1478889470653,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2927504790,"champion":114,"queue":440,"season":8,"timestamp":1478872681340,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2927447808,"champion":114,"queue":440,"season":8,"timestamp":1478870156622,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2927361778,"champion":92,"queue":440,"season":8,"timestamp":1478861779369,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2926948305,"champion":111,"queue":440,"season":8,"timestamp":1478823580341,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2926944448,"champion":64,"queue":440,"season":8,"timestamp":1478821327287,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2926737804,"champion":114,"queue":440,"season":8,"timestamp":1478818385897,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2926721561,"champion":79,"queue":440,"season":8,"timestamp":1478816231675,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2926105574,"champion":114,"queue":440,"season":8,"timestamp":1478790004276,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2925385974,"champion":107,"queue":440,"season":8,"timestamp":1478733720482,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2925380632,"champion":111,"queue":440,"season":8,"timestamp":1478731066051,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2925333675,"champion":114,"queue":440,"season":8,"timestamp":1478728510587,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2925272020,"champion":64,"queue":440,"season":8,"timestamp":1478725171287,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2925205200,"champion":121,"queue":440,"season":8,"timestamp":1478723270580,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2925157581,"champion":412,"queue":440,"season":8,"timestamp":1478721418741,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2925090093,"champion":64,"queue":440,"season":8,"timestamp":1478719491186,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2925090692,"champion":114,"queue":440,"season":8,"timestamp":1478717045321,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2925013221,"champion":64,"queue":440,"season":8,"timestamp":1478714838232,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2924288981,"champion":11,"queue":440,"season":8,"timestamp":1478696610598,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2924294957,"champion":64,"queue":440,"season":8,"timestamp":1478694172371,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2924119839,"champion":107,"queue":440,"season":8,"timestamp":1478690122872,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2924237351,"champion":114,"queue":440,"season":8,"timestamp":1478687745825,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2924235181,"champion":114,"queue":440,"season":8,"timestamp":1478685250315,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2924113559,"champion":64,"queue":440,"season":8,"timestamp":1478682846685,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2924222629,"champion":114,"queue":440,"season":8,"timestamp":1478681086375,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2922463072,"champion":11,"queue":410,"season":7,"timestamp":1478561932494,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2922293500,"champion":64,"queue":410,"season":7,"timestamp":1478551376236,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2922215471,"champion":11,"queue":42,"season":7,"timestamp":1478548874398,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2921283007,"champion":11,"queue":410,"season":7,"timestamp":1478507809115,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2921254663,"champion":85,"queue":410,"season":7,"timestamp":1478505965222,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2921191272,"champion":412,"queue":410,"season":7,"timestamp":1478477406825,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2921135662,"champion":76,"queue":410,"season":7,"timestamp":1478474009295,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2921079178,"champion":114,"queue":410,"season":7,"timestamp":1478471270888,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2921094444,"champion":24,"queue":410,"season":7,"timestamp":1478470289579,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2921046551,"champion":103,"queue":42,"season":7,"timestamp":1478468044532,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2920996783,"champion":69,"queue":42,"season":7,"timestamp":1478465606464,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2920821634,"champion":64,"queue":410,"season":7,"timestamp":1478458166393,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2920645534,"champion":64,"queue":410,"season":7,"timestamp":1478452262275,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2920409134,"champion":76,"queue":410,"season":7,"timestamp":1478443965883,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2919844887,"champion":64,"queue":410,"season":7,"timestamp":1478425443475,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2919831735,"champion":78,"queue":410,"season":7,"timestamp":1478422915110,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2919669662,"champion":64,"queue":410,"season":7,"timestamp":1478420407974,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2919460450,"champion":64,"queue":410,"season":7,"timestamp":1478389305713,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2919388147,"champion":18,"queue":410,"season":7,"timestamp":1478385652012,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2919329550,"champion":150,"queue":410,"season":7,"timestamp":1478383380246,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2919276951,"champion":11,"queue":410,"season":7,"timestamp":1478380457065,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2919225439,"champion":114,"queue":410,"season":7,"timestamp":1478378052494,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2919149052,"champion":64,"queue":410,"season":7,"timestamp":1478376094289,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2919070972,"champion":412,"queue":410,"season":7,"timestamp":1478371283421,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2919024875,"champion":24,"queue":410,"season":7,"timestamp":1478369635264,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":2918974109,"champion":81,"queue":410,"season":7,"timestamp":1478367180205,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2918894938,"champion":114,"queue":410,"season":7,"timestamp":1478364392189,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2918661805,"champion":254,"queue":410,"season":7,"timestamp":1478354190833,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2918594315,"champion":114,"queue":410,"season":7,"timestamp":1478351744473,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2918094408,"champion":114,"queue":410,"season":7,"timestamp":1478340538898,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2917854647,"champion":114,"queue":410,"season":7,"timestamp":1478305140894,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2917813884,"champion":67,"queue":42,"season":7,"timestamp":1478302184517,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2917751419,"champion":110,"queue":42,"season":7,"timestamp":1478298931923,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2917669673,"champion":81,"queue":42,"season":7,"timestamp":1478296812262,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2917590795,"champion":48,"queue":42,"season":7,"timestamp":1478292528530,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2917504857,"champion":114,"queue":42,"season":7,"timestamp":1478290056520,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2917409991,"champion":8,"queue":410,"season":7,"timestamp":1478287535594,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2917358831,"champion":64,"queue":410,"season":7,"timestamp":1478284860064,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2917352639,"champion":76,"queue":410,"season":7,"timestamp":1478283107176,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2917022419,"champion":64,"queue":410,"season":7,"timestamp":1478267883807,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2916948920,"champion":24,"queue":410,"season":7,"timestamp":1478265542104,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2916808531,"champion":114,"queue":410,"season":7,"timestamp":1478259888965,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2916805067,"champion":114,"queue":410,"season":7,"timestamp":1478257643036,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2916801964,"champion":114,"queue":410,"season":7,"timestamp":1478255356725,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2916345453,"champion":35,"queue":410,"season":7,"timestamp":1478215604412,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2916269428,"champion":254,"queue":410,"season":7,"timestamp":1478213211166,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2915894776,"champion":64,"queue":410,"season":7,"timestamp":1478195926278,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2915817600,"champion":60,"queue":410,"season":7,"timestamp":1478193668537,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2915739830,"champion":126,"queue":42,"season":7,"timestamp":1478190279827,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2915713461,"champion":114,"queue":410,"season":7,"timestamp":1478187026925,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2915647450,"champion":114,"queue":410,"season":7,"timestamp":1478184573132,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2915311067,"champion":72,"queue":410,"season":7,"timestamp":1478128734011,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2915254973,"champion":24,"queue":410,"season":7,"timestamp":1478126408390,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2915184611,"champion":72,"queue":410,"season":7,"timestamp":1478122926581,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2914307324,"champion":92,"queue":410,"season":7,"timestamp":1478101998370,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2914253374,"champion":114,"queue":410,"season":7,"timestamp":1478097617285,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2914116499,"champion":92,"queue":410,"season":7,"timestamp":1478091390337,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2913862342,"champion":114,"queue":410,"season":7,"timestamp":1478043368229,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2912673619,"champion":85,"queue":410,"season":7,"timestamp":1478008354938,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2912587408,"champion":90,"queue":410,"season":7,"timestamp":1478005891851,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2912488046,"champion":114,"queue":410,"season":7,"timestamp":1477999081144,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2912463482,"champion":238,"queue":410,"season":7,"timestamp":1477996126841,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2912207348,"champion":92,"queue":410,"season":7,"timestamp":1477954974233,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2912202137,"champion":69,"queue":410,"season":7,"timestamp":1477953110267,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2912079508,"champion":114,"queue":410,"season":7,"timestamp":1477949245313,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2912015258,"champion":114,"queue":410,"season":7,"timestamp":1477945245616,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2911978156,"champion":114,"queue":410,"season":7,"timestamp":1477943770969,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2911156921,"champion":92,"queue":410,"season":7,"timestamp":1477922660178,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2911098444,"champion":114,"queue":410,"season":7,"timestamp":1477919930594,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2911011600,"champion":114,"queue":410,"season":7,"timestamp":1477912554317,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910966101,"champion":114,"queue":410,"season":7,"timestamp":1477909957318,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910920180,"champion":114,"queue":410,"season":7,"timestamp":1477907229901,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910847332,"champion":114,"queue":410,"season":7,"timestamp":1477879423422,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910825737,"champion":114,"queue":410,"season":7,"timestamp":1477876992532,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910851269,"champion":114,"queue":410,"season":7,"timestamp":1477874969509,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910788271,"champion":122,"queue":410,"season":7,"timestamp":1477872994287,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910773022,"champion":8,"queue":410,"season":7,"timestamp":1477870018495,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910713810,"champion":92,"queue":410,"season":7,"timestamp":1477866604122,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910650703,"champion":92,"queue":410,"season":7,"timestamp":1477862825458,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910518238,"champion":51,"queue":410,"season":7,"timestamp":1477859555897,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2910382768,"champion":114,"queue":410,"season":7,"timestamp":1477853589858,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910313056,"champion":64,"queue":410,"season":7,"timestamp":1477850863814,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2910246661,"champion":114,"queue":42,"season":7,"timestamp":1477847892365,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2910200983,"champion":63,"queue":410,"season":7,"timestamp":1477845542785,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2910152297,"champion":51,"queue":410,"season":7,"timestamp":1477843581204,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2910093125,"champion":51,"queue":410,"season":7,"timestamp":1477841382392,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2910004366,"champion":64,"queue":410,"season":7,"timestamp":1477839017750,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2909923615,"champion":412,"queue":410,"season":7,"timestamp":1477836485880,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2909626389,"champion":114,"queue":410,"season":7,"timestamp":1477834121438,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2909418495,"champion":412,"queue":410,"season":7,"timestamp":1477828936901,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2909392867,"champion":114,"queue":410,"season":7,"timestamp":1477826480004,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2909180529,"champion":103,"queue":410,"season":7,"timestamp":1477788284911,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2909117364,"champion":114,"queue":410,"season":7,"timestamp":1477785524052,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2909123899,"champion":114,"queue":410,"season":7,"timestamp":1477783248699,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2909058525,"champion":69,"queue":410,"season":7,"timestamp":1477780841410,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2909041898,"champion":157,"queue":410,"season":7,"timestamp":1477778618050,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2908993958,"champion":67,"queue":410,"season":7,"timestamp":1477776386364,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2908934507,"champion":114,"queue":410,"season":7,"timestamp":1477774147699,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2908857314,"champion":64,"queue":410,"season":7,"timestamp":1477771975212,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2908815523,"champion":412,"queue":410,"season":7,"timestamp":1477769281693,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2908733556,"champion":114,"queue":410,"season":7,"timestamp":1477765485311,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2907884906,"champion":64,"queue":410,"season":7,"timestamp":1477742652057,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2907716033,"champion":114,"queue":410,"season":7,"timestamp":1477735271165,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2907454959,"champion":103,"queue":410,"season":7,"timestamp":1477694129601,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2907397123,"champion":412,"queue":410,"season":7,"timestamp":1477691639297,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2907308788,"champion":92,"queue":410,"season":7,"timestamp":1477689136165,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2907269109,"champion":78,"queue":42,"season":7,"timestamp":1477686305232,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2907153866,"champion":57,"queue":42,"season":7,"timestamp":1477682061016,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2907091661,"champion":114,"queue":410,"season":7,"timestamp":1477679638748,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2907050621,"champion":412,"queue":410,"season":7,"timestamp":1477676794516,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2906983712,"champion":114,"queue":410,"season":7,"timestamp":1477674661285,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2906148525,"champion":24,"queue":410,"season":7,"timestamp":1477652667946,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2906143887,"champion":64,"queue":410,"season":7,"timestamp":1477649749579,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2906020775,"champion":412,"queue":410,"season":7,"timestamp":1477613075412,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2905967297,"champion":63,"queue":410,"season":7,"timestamp":1477610718937,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2905952835,"champion":412,"queue":410,"season":7,"timestamp":1477607976193,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2905896142,"champion":412,"queue":410,"season":7,"timestamp":1477605253253,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2905838526,"champion":157,"queue":410,"season":7,"timestamp":1477602781410,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2905789365,"champion":114,"queue":410,"season":7,"timestamp":1477600528760,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2905480925,"champion":114,"queue":410,"season":7,"timestamp":1477585280946,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2905308629,"champion":92,"queue":410,"season":7,"timestamp":1477578854436,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2905248606,"champion":114,"queue":410,"season":7,"timestamp":1477575768526,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2905119535,"champion":114,"queue":410,"season":7,"timestamp":1477567748388,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2904539574,"champion":254,"queue":410,"season":7,"timestamp":1477520391137,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2904564097,"champion":76,"queue":410,"season":7,"timestamp":1477518551209,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2903809940,"champion":114,"queue":410,"season":7,"timestamp":1477486847701,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2903807474,"champion":64,"queue":410,"season":7,"timestamp":1477486018656,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2903759219,"champion":412,"queue":410,"season":7,"timestamp":1477482837812,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2903620120,"champion":69,"queue":410,"season":7,"timestamp":1477471329631,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2903574906,"champion":114,"queue":410,"season":7,"timestamp":1477440535663,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2903552269,"champion":114,"queue":410,"season":7,"timestamp":1477438268499,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2903204847,"champion":48,"queue":42,"season":7,"timestamp":1477427069659,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2902178472,"champion":412,"queue":410,"season":7,"timestamp":1477376476426,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2902117431,"champion":114,"queue":410,"season":7,"timestamp":1477352886394,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2902132438,"champion":114,"queue":410,"season":7,"timestamp":1477349960144,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2902047794,"champion":114,"queue":410,"season":7,"timestamp":1477347549679,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2902044061,"champion":114,"queue":410,"season":7,"timestamp":1477345996105,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2901965151,"champion":24,"queue":42,"season":7,"timestamp":1477341367599,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2901838358,"champion":48,"queue":42,"season":7,"timestamp":1477337985372,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2898460285,"champion":103,"queue":410,"season":7,"timestamp":1477166779897,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2898340608,"champion":114,"queue":410,"season":7,"timestamp":1477159219705,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2898179507,"champion":114,"queue":410,"season":7,"timestamp":1477155953495,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2897999184,"champion":114,"queue":410,"season":7,"timestamp":1477152987621,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2897213089,"champion":69,"queue":410,"season":7,"timestamp":1477130614007,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2897136001,"champion":114,"queue":410,"season":7,"timestamp":1477126485416,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2896264658,"champion":114,"queue":410,"season":7,"timestamp":1477069248238,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2895419422,"champion":114,"queue":410,"season":7,"timestamp":1477052693047,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2895395898,"champion":114,"queue":410,"season":7,"timestamp":1477050915503,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2895215765,"champion":24,"queue":410,"season":7,"timestamp":1477038760692,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2895031967,"champion":114,"queue":410,"season":7,"timestamp":1477002691957,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2894945041,"champion":114,"queue":410,"season":7,"timestamp":1477000104923,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2894858389,"champion":114,"queue":410,"season":7,"timestamp":1476997798178,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2894169612,"champion":107,"queue":410,"season":7,"timestamp":1476980377232,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2894141473,"champion":78,"queue":42,"season":7,"timestamp":1476976992157,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2894051279,"champion":104,"queue":410,"season":7,"timestamp":1476974217293,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2893904382,"champion":76,"queue":410,"season":7,"timestamp":1476971630539,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2893326513,"champion":76,"queue":410,"season":7,"timestamp":1476963992297,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2893015839,"champion":53,"queue":410,"season":7,"timestamp":1476913324063,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2892986482,"champion":64,"queue":410,"season":7,"timestamp":1476910731702,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2892918337,"champion":81,"queue":410,"season":7,"timestamp":1476908553063,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2892865155,"champion":81,"queue":410,"season":7,"timestamp":1476905387538,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2892795707,"champion":81,"queue":410,"season":7,"timestamp":1476903138356,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2892748021,"champion":72,"queue":410,"season":7,"timestamp":1476901207486,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2892688349,"champion":103,"queue":410,"season":7,"timestamp":1476898705630,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2892695384,"champion":126,"queue":410,"season":7,"timestamp":1476898018793,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2892320060,"champion":103,"queue":410,"season":7,"timestamp":1476881696089,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2892335746,"champion":25,"queue":410,"season":7,"timestamp":1476880036397,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2892321216,"champion":103,"queue":410,"season":7,"timestamp":1476878010896,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2892263092,"champion":103,"queue":410,"season":7,"timestamp":1476873350533,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2891899741,"champion":103,"queue":410,"season":7,"timestamp":1476870774618,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2891728987,"champion":114,"queue":410,"season":7,"timestamp":1476838036635,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2891736168,"champion":103,"queue":410,"season":7,"timestamp":1476835495301,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2891703437,"champion":64,"queue":410,"season":7,"timestamp":1476832900209,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2891656388,"champion":103,"queue":410,"season":7,"timestamp":1476829177643,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2891618735,"champion":103,"queue":410,"season":7,"timestamp":1476826479197,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2891156402,"champion":103,"queue":410,"season":7,"timestamp":1476815298789,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2890955973,"champion":60,"queue":410,"season":7,"timestamp":1476812623139,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2890887299,"champion":126,"queue":410,"season":7,"timestamp":1476810353734,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2890597867,"champion":103,"queue":410,"season":7,"timestamp":1476794071702,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2890583252,"champion":114,"queue":410,"season":7,"timestamp":1476791856947,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2890535293,"champion":68,"queue":410,"season":7,"timestamp":1476787157589,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2890533221,"champion":412,"queue":410,"season":7,"timestamp":1476785622778,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2890460369,"champion":114,"queue":410,"season":7,"timestamp":1476783127124,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2890341459,"champion":103,"queue":410,"season":7,"timestamp":1476741920122,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2890267645,"champion":36,"queue":410,"season":7,"timestamp":1476740244760,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2890252528,"champion":114,"queue":42,"season":7,"timestamp":1476737084447,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2890138712,"champion":39,"queue":42,"season":7,"timestamp":1476733373323,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2889960412,"champion":76,"queue":410,"season":7,"timestamp":1476727595308,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2889971510,"champion":114,"queue":410,"season":7,"timestamp":1476725254552,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2889831761,"champion":69,"queue":410,"season":7,"timestamp":1476719507154,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2889772443,"champion":103,"queue":410,"season":7,"timestamp":1476716751933,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2888996549,"champion":412,"queue":410,"season":7,"timestamp":1476656485587,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2888992617,"champion":412,"queue":410,"season":7,"timestamp":1476654577501,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2888943892,"champion":64,"queue":410,"season":7,"timestamp":1476651848506,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2888866154,"champion":114,"queue":410,"season":7,"timestamp":1476649420104,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2888797683,"champion":92,"queue":410,"season":7,"timestamp":1476647220846,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2888800901,"champion":103,"queue":410,"season":7,"timestamp":1476645723172,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2888627457,"champion":103,"queue":410,"season":7,"timestamp":1476640179203,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2888548504,"champion":103,"queue":410,"season":7,"timestamp":1476637817147,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2888125046,"champion":103,"queue":410,"season":7,"timestamp":1476620244705,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2887747067,"champion":103,"queue":410,"season":7,"timestamp":1476614491498,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2887740647,"champion":103,"queue":410,"season":7,"timestamp":1476611952989,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2887529863,"champion":114,"queue":410,"season":7,"timestamp":1476606521401,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2887452197,"champion":114,"queue":410,"season":7,"timestamp":1476576583502,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2887395525,"champion":55,"queue":410,"season":7,"timestamp":1476573162852,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2887339116,"champion":68,"queue":410,"season":7,"timestamp":1476570522532,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2887088521,"champion":103,"queue":410,"season":7,"timestamp":1476559588573,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2887019245,"champion":5,"queue":410,"season":7,"timestamp":1476557101203,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2885983831,"champion":126,"queue":410,"season":7,"timestamp":1476523169797,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2885960772,"champion":64,"queue":410,"season":7,"timestamp":1476520974407,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2885822331,"champion":60,"queue":410,"season":7,"timestamp":1476490071420,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2885768574,"champion":412,"queue":410,"season":7,"timestamp":1476487781790,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2885744372,"champion":20,"queue":410,"season":7,"timestamp":1476485325178,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2885706178,"champion":114,"queue":410,"season":7,"timestamp":1476482255790,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2885218715,"champion":78,"queue":42,"season":7,"timestamp":1476461877991,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2885192073,"champion":114,"queue":42,"season":7,"timestamp":1476459523720,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2885070272,"champion":114,"queue":410,"season":7,"timestamp":1476456050092,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2885044253,"champion":20,"queue":410,"season":7,"timestamp":1476453819982,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2884877050,"champion":121,"queue":410,"season":7,"timestamp":1476447082396,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2884313161,"champion":114,"queue":410,"season":7,"timestamp":1476395848594,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2884237617,"champion":114,"queue":410,"season":7,"timestamp":1476393553995,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2884231544,"champion":64,"queue":410,"season":7,"timestamp":1476391651087,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2883892400,"champion":126,"queue":410,"season":7,"timestamp":1476376836513,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2883811211,"champion":114,"queue":410,"season":7,"timestamp":1476373586547,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2883717035,"champion":69,"queue":410,"season":7,"timestamp":1476369315119,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2883648447,"champion":20,"queue":410,"season":7,"timestamp":1476366411195,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2883295071,"champion":69,"queue":410,"season":7,"timestamp":1476306011110,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2882690100,"champion":20,"queue":410,"season":7,"timestamp":1476297104031,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2882618655,"champion":20,"queue":410,"season":7,"timestamp":1476294292461,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2882631602,"champion":20,"queue":410,"season":7,"timestamp":1476292703207,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2882209752,"champion":20,"queue":410,"season":7,"timestamp":1476275125712,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2882193393,"champion":69,"queue":410,"season":7,"timestamp":1476272519999,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2882134319,"champion":20,"queue":410,"season":7,"timestamp":1476268008797,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2882130802,"champion":69,"queue":410,"season":7,"timestamp":1476265767721,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2882096428,"champion":238,"queue":410,"season":7,"timestamp":1476262909067,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2882074408,"champion":121,"queue":410,"season":7,"timestamp":1476260109345,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2882091850,"champion":114,"queue":410,"season":7,"timestamp":1476256865754,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2882081399,"champion":126,"queue":410,"season":7,"timestamp":1476254431507,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2882002489,"champion":53,"queue":410,"season":7,"timestamp":1476228376010,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2881958852,"champion":53,"queue":410,"season":7,"timestamp":1476226468630,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2881942955,"champion":20,"queue":410,"season":7,"timestamp":1476223697808,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2881887171,"champion":114,"queue":410,"season":7,"timestamp":1476221553190,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2881747362,"champion":78,"queue":42,"season":7,"timestamp":1476215217477,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2881040011,"champion":412,"queue":410,"season":7,"timestamp":1476201528879,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2880995569,"champion":51,"queue":410,"season":7,"timestamp":1476197435016,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2880937379,"champion":81,"queue":410,"season":7,"timestamp":1476194742739,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2880650645,"champion":81,"queue":410,"season":7,"timestamp":1476138734137,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2880576140,"champion":126,"queue":410,"season":7,"timestamp":1476136533214,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2880571222,"champion":114,"queue":410,"season":7,"timestamp":1476134691198,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2880328566,"champion":126,"queue":42,"season":7,"timestamp":1476125868784,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2880294550,"champion":64,"queue":410,"season":7,"timestamp":1476122854888,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2880206723,"champion":20,"queue":410,"season":7,"timestamp":1476120794323,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2879487643,"champion":20,"queue":410,"season":7,"timestamp":1476101448995,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2879438253,"champion":114,"queue":410,"season":7,"timestamp":1476095732402,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2879455819,"champion":114,"queue":410,"season":7,"timestamp":1476094116819,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2879443661,"champion":114,"queue":410,"season":7,"timestamp":1476092099344,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2879308190,"champion":114,"queue":410,"season":7,"timestamp":1476057856791,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2879323711,"champion":114,"queue":410,"season":7,"timestamp":1476054452605,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2879322242,"champion":114,"queue":410,"season":7,"timestamp":1476053378826,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2879185848,"champion":114,"queue":410,"season":7,"timestamp":1476045995593,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2879181514,"champion":114,"queue":410,"season":7,"timestamp":1476044735295,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2878992393,"champion":18,"queue":410,"season":7,"timestamp":1476037714995,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2878944949,"champion":69,"queue":410,"season":7,"timestamp":1476036069274,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2878877810,"champion":114,"queue":410,"season":7,"timestamp":1476034272882,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2878825365,"champion":114,"queue":410,"season":7,"timestamp":1476031542721,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2878822650,"champion":114,"queue":410,"season":7,"timestamp":1476030836745,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2878771417,"champion":64,"queue":410,"season":7,"timestamp":1476028362402,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2878693443,"champion":114,"queue":410,"season":7,"timestamp":1476026576069,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2878586626,"champion":68,"queue":410,"season":7,"timestamp":1476023039211,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877943403,"champion":254,"queue":410,"season":7,"timestamp":1476009360168,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2877857992,"champion":64,"queue":410,"season":7,"timestamp":1476007526663,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2877842807,"champion":114,"queue":410,"season":7,"timestamp":1476005149315,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877797604,"champion":114,"queue":410,"season":7,"timestamp":1476002596656,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877667285,"champion":412,"queue":410,"season":7,"timestamp":1475971117577,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2877653685,"champion":8,"queue":410,"season":7,"timestamp":1475969188189,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877599175,"champion":114,"queue":410,"season":7,"timestamp":1475967402624,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877549379,"champion":69,"queue":410,"season":7,"timestamp":1475964153106,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2877520525,"champion":114,"queue":410,"season":7,"timestamp":1475961409002,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877462053,"champion":114,"queue":410,"season":7,"timestamp":1475959137173,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877405782,"champion":114,"queue":410,"season":7,"timestamp":1475957495037,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877154882,"champion":68,"queue":410,"season":7,"timestamp":1475946753787,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2877087324,"champion":20,"queue":410,"season":7,"timestamp":1475944790824,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2877056260,"champion":25,"queue":410,"season":7,"timestamp":1475942018970,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2876974669,"champion":60,"queue":410,"season":7,"timestamp":1475939170751,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2876924496,"champion":69,"queue":410,"season":7,"timestamp":1475936868820,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2876233401,"champion":114,"queue":410,"season":7,"timestamp":1475922585304,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2876176433,"champion":114,"queue":410,"season":7,"timestamp":1475919683709,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2875831014,"champion":78,"queue":42,"season":7,"timestamp":1475873530583,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2875681603,"champion":69,"queue":410,"season":7,"timestamp":1475867967912,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2875541802,"champion":25,"queue":410,"season":7,"timestamp":1475862915406,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2875490888,"champion":64,"queue":410,"season":7,"timestamp":1475859895170,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2875403731,"champion":114,"queue":410,"season":7,"timestamp":1475857734611,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2874618257,"champion":114,"queue":410,"season":7,"timestamp":1475831200640,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2874615902,"champion":114,"queue":410,"season":7,"timestamp":1475828582641,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2874561997,"champion":114,"queue":410,"season":7,"timestamp":1475796448587,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2874498627,"champion":114,"queue":410,"season":7,"timestamp":1475793865160,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2874494403,"champion":114,"queue":410,"season":7,"timestamp":1475791729325,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2873895676,"champion":114,"queue":410,"season":7,"timestamp":1475763458060,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2873839392,"champion":121,"queue":410,"season":7,"timestamp":1475761309034,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2873192933,"champion":114,"queue":410,"season":7,"timestamp":1475703632019,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2873113979,"champion":90,"queue":42,"season":7,"timestamp":1475700177997,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2873028568,"champion":8,"queue":42,"season":7,"timestamp":1475696221598,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872938391,"champion":114,"queue":410,"season":7,"timestamp":1475693879474,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872828111,"champion":114,"queue":410,"season":7,"timestamp":1475688728609,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872830926,"champion":114,"queue":410,"season":7,"timestamp":1475686911539,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872781959,"champion":64,"queue":410,"season":7,"timestamp":1475684572526,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2872721161,"champion":114,"queue":410,"season":7,"timestamp":1475681573190,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872662108,"champion":114,"queue":410,"season":7,"timestamp":1475679071616,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872612295,"champion":20,"queue":410,"season":7,"timestamp":1475676265216,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2872534938,"champion":114,"queue":410,"season":7,"timestamp":1475673739819,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872488466,"champion":114,"queue":410,"season":7,"timestamp":1475671353243,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872492536,"champion":114,"queue":410,"season":7,"timestamp":1475668791429,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2872411166,"champion":114,"queue":410,"season":7,"timestamp":1475661880057,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2871674690,"champion":114,"queue":410,"season":7,"timestamp":1475611144006,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2871266330,"champion":114,"queue":410,"season":7,"timestamp":1475606641456,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2870837288,"champion":114,"queue":410,"season":7,"timestamp":1475584922903,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2870832683,"champion":114,"queue":410,"season":7,"timestamp":1475582367418,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2870770824,"champion":114,"queue":410,"season":7,"timestamp":1475573732427,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2870597454,"champion":18,"queue":410,"season":7,"timestamp":1475533742890,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2870564660,"champion":114,"queue":410,"season":7,"timestamp":1475531655998,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2870525137,"champion":114,"queue":410,"season":7,"timestamp":1475528669362,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2870448867,"champion":99,"queue":410,"season":7,"timestamp":1475526501345,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2870389433,"champion":412,"queue":410,"season":7,"timestamp":1475523871886,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2870328581,"champion":81,"queue":410,"season":7,"timestamp":1475521174911,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2870208616,"champion":81,"queue":410,"season":7,"timestamp":1475515985693,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2869806066,"champion":6,"queue":410,"season":7,"timestamp":1475509861705,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2869800477,"champion":254,"queue":410,"season":7,"timestamp":1475508122794,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2869475862,"champion":64,"queue":410,"season":7,"timestamp":1475496009310,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2869415556,"champion":64,"queue":410,"season":7,"timestamp":1475490648325,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2869412304,"champion":412,"queue":410,"season":7,"timestamp":1475488521821,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2869358799,"champion":63,"queue":410,"season":7,"timestamp":1475485867808,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2869346688,"champion":114,"queue":410,"season":7,"timestamp":1475483399748,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2869141159,"champion":64,"queue":410,"season":7,"timestamp":1475442015412,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2867552705,"champion":412,"queue":410,"season":7,"timestamp":1475360694304,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2867486120,"champion":28,"queue":410,"season":7,"timestamp":1475358377103,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2867424215,"champion":60,"queue":410,"season":7,"timestamp":1475355300697,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2867331897,"champion":25,"queue":410,"season":7,"timestamp":1475351975540,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2867176223,"champion":103,"queue":410,"season":7,"timestamp":1475345317625,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2867117517,"champion":238,"queue":410,"season":7,"timestamp":1475342582618,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2867091508,"champion":20,"queue":410,"season":7,"timestamp":1475340693885,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2867011964,"champion":254,"queue":410,"season":7,"timestamp":1475337984948,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2866944062,"champion":64,"queue":410,"season":7,"timestamp":1475335862096,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2866686696,"champion":24,"queue":410,"season":7,"timestamp":1475333683103,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2866439642,"champion":114,"queue":42,"season":7,"timestamp":1475330648732,"role":"SOLO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2866413960,"champion":64,"queue":410,"season":7,"timestamp":1475328033235,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2865996079,"champion":64,"queue":410,"season":7,"timestamp":1475285348718,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2865994223,"champion":81,"queue":410,"season":7,"timestamp":1475283062911,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2865982884,"champion":81,"queue":410,"season":7,"timestamp":1475281277310,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2865929518,"champion":114,"queue":410,"season":7,"timestamp":1475279083614,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2865843376,"champion":64,"queue":410,"season":7,"timestamp":1475271763164,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2865792293,"champion":412,"queue":410,"season":7,"timestamp":1475268899416,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2865713102,"champion":114,"queue":410,"season":7,"timestamp":1475266507826,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2864740792,"champion":114,"queue":410,"season":7,"timestamp":1475237064100,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2864662310,"champion":114,"queue":410,"season":7,"timestamp":1475230699816,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2864472289,"champion":114,"queue":410,"season":7,"timestamp":1475184853623,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2864416244,"champion":69,"queue":410,"season":7,"timestamp":1475182589977,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2864366952,"champion":64,"queue":410,"season":7,"timestamp":1475179829808,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2864310361,"champion":60,"queue":410,"season":7,"timestamp":1475177965599,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2864315702,"champion":114,"queue":410,"season":7,"timestamp":1475176751187,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2864165458,"champion":64,"queue":410,"season":7,"timestamp":1475171231696,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2864037742,"champion":114,"queue":410,"season":7,"timestamp":1475166150740,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2863442772,"champion":114,"queue":410,"season":7,"timestamp":1475149823714,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2863384736,"champion":114,"queue":410,"season":7,"timestamp":1475144367598,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2863361858,"champion":80,"queue":410,"season":7,"timestamp":1475141575478,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2863252183,"champion":114,"queue":410,"season":7,"timestamp":1475103455373,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2863205569,"champion":64,"queue":410,"season":7,"timestamp":1475099891889,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2863201783,"champion":114,"queue":410,"season":7,"timestamp":1475098249009,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2863124109,"champion":33,"queue":410,"season":7,"timestamp":1475095282129,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2863062594,"champion":412,"queue":410,"season":7,"timestamp":1475091736994,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2862883785,"champion":64,"queue":410,"season":7,"timestamp":1475083908016,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2862826821,"champion":114,"queue":410,"season":7,"timestamp":1475082052860,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862758065,"champion":114,"queue":410,"season":7,"timestamp":1475079671844,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862685704,"champion":114,"queue":410,"season":7,"timestamp":1475076075928,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862643749,"champion":412,"queue":410,"season":7,"timestamp":1475072655907,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2862565027,"champion":114,"queue":410,"season":7,"timestamp":1475069848812,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862527463,"champion":114,"queue":410,"season":7,"timestamp":1475067145829,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862512020,"champion":24,"queue":410,"season":7,"timestamp":1475064813156,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2862447586,"champion":157,"queue":410,"season":7,"timestamp":1475062545893,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862309315,"champion":114,"queue":410,"season":7,"timestamp":1475056763020,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862304870,"champion":114,"queue":410,"season":7,"timestamp":1475052567143,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862303271,"champion":114,"queue":410,"season":7,"timestamp":1475050505029,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2862302042,"champion":24,"queue":410,"season":7,"timestamp":1475048364753,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2861899016,"champion":114,"queue":410,"season":7,"timestamp":1475020449377,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2861915585,"champion":114,"queue":410,"season":7,"timestamp":1475018023127,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2861892629,"champion":114,"queue":410,"season":7,"timestamp":1475015582119,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2861857753,"champion":114,"queue":410,"season":7,"timestamp":1475013469107,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2861854186,"champion":7,"queue":410,"season":7,"timestamp":1475011832303,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2861778367,"champion":114,"queue":410,"season":7,"timestamp":1475009577090,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2861612051,"champion":114,"queue":410,"season":7,"timestamp":1474999750033,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2861523730,"champion":114,"queue":410,"season":7,"timestamp":1474997443542,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2861424528,"champion":114,"queue":410,"season":7,"timestamp":1474994976065,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2861141954,"champion":114,"queue":410,"season":7,"timestamp":1474991401222,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2860974043,"champion":114,"queue":410,"season":7,"timestamp":1474988972110,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2860915818,"champion":238,"queue":410,"season":7,"timestamp":1474986322789,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2859570597,"champion":114,"queue":410,"season":7,"timestamp":1474886821509,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2859075018,"champion":4,"queue":410,"season":7,"timestamp":1474847871203,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2859062760,"champion":64,"queue":410,"season":7,"timestamp":1474844973062,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2858949481,"champion":22,"queue":410,"season":7,"timestamp":1474842314837,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2858685221,"champion":64,"queue":410,"season":7,"timestamp":1474830627509,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2857320567,"champion":51,"queue":410,"season":7,"timestamp":1474753620753,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2856468838,"champion":81,"queue":410,"season":7,"timestamp":1474740975499,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2856463089,"champion":81,"queue":410,"season":7,"timestamp":1474738440200,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2856339322,"champion":37,"queue":410,"season":7,"timestamp":1474736682460,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2856332516,"champion":412,"queue":410,"season":7,"timestamp":1474733800194,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2856219845,"champion":412,"queue":410,"season":7,"timestamp":1474732728607,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2856232105,"champion":69,"queue":410,"season":7,"timestamp":1474729936211,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2856116298,"champion":114,"queue":410,"season":7,"timestamp":1474727708203,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2855978457,"champion":114,"queue":410,"season":7,"timestamp":1474724447709,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2855471412,"champion":114,"queue":410,"season":7,"timestamp":1474676878294,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2855329297,"champion":412,"queue":410,"season":7,"timestamp":1474674377821,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2855134235,"champion":39,"queue":42,"season":7,"timestamp":1474662910570,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2855090959,"champion":38,"queue":42,"season":7,"timestamp":1474660569130,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2854951761,"champion":114,"queue":42,"season":7,"timestamp":1474657957830,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2854442100,"champion":114,"queue":410,"season":7,"timestamp":1474653196519,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2854297152,"champion":60,"queue":410,"season":7,"timestamp":1474650780673,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2853651625,"champion":114,"queue":410,"season":7,"timestamp":1474585258773,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2853596353,"champion":114,"queue":410,"season":7,"timestamp":1474582158005,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2853243201,"champion":114,"queue":410,"season":7,"timestamp":1474562753524,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2852334919,"champion":114,"queue":410,"season":7,"timestamp":1474494252547,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2852301790,"champion":54,"queue":42,"season":7,"timestamp":1474490423658,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2852242726,"champion":127,"queue":42,"season":7,"timestamp":1474487741593,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2852177320,"champion":114,"queue":42,"season":7,"timestamp":1474485669798,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2852037179,"champion":114,"queue":410,"season":7,"timestamp":1474479201494,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2851969527,"champion":412,"queue":410,"season":7,"timestamp":1474477004353,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2851951160,"champion":412,"queue":410,"season":7,"timestamp":1474474409100,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2851825264,"champion":60,"queue":410,"season":7,"timestamp":1474469533305,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2851788069,"champion":25,"queue":410,"season":7,"timestamp":1474467262635,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2851775818,"champion":412,"queue":410,"season":7,"timestamp":1474466470804,"role":"NONE","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2851040197,"champion":412,"queue":410,"season":7,"timestamp":1474407973654,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2851054454,"champion":79,"queue":410,"season":7,"timestamp":1474406009269,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2851022060,"champion":54,"queue":42,"season":7,"timestamp":1474403864139,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2850671432,"champion":114,"queue":410,"season":7,"timestamp":1474388309327,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2850622671,"champion":114,"queue":410,"season":7,"timestamp":1474385839203,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2850547923,"champion":412,"queue":410,"season":7,"timestamp":1474384215382,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2850542093,"champion":41,"queue":410,"season":7,"timestamp":1474382310989,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2850504628,"champion":24,"queue":410,"season":7,"timestamp":1474380200488,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2850481522,"champion":114,"queue":410,"season":7,"timestamp":1474378478180,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2850384470,"champion":33,"queue":410,"season":7,"timestamp":1474375434912,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2849903403,"champion":114,"queue":410,"season":7,"timestamp":1474331263169,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2849850327,"champion":81,"queue":410,"season":7,"timestamp":1474328404723,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2849837279,"champion":64,"queue":410,"season":7,"timestamp":1474325650899,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2849813555,"champion":412,"queue":410,"season":7,"timestamp":1474322694895,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2849757421,"champion":64,"queue":410,"season":7,"timestamp":1474320663008,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2849728769,"champion":114,"queue":42,"season":7,"timestamp":1474317914811,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2849712036,"champion":69,"queue":42,"season":7,"timestamp":1474316268851,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2849623566,"champion":114,"queue":410,"season":7,"timestamp":1474312837914,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2849569621,"champion":412,"queue":410,"season":7,"timestamp":1474311741934,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2849542334,"champion":5,"queue":410,"season":7,"timestamp":1474309653528,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2849149248,"champion":412,"queue":410,"season":7,"timestamp":1474293033407,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2849135371,"champion":23,"queue":410,"season":7,"timestamp":1474291220923,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2849089080,"champion":114,"queue":410,"season":7,"timestamp":1474288354673,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2849018571,"champion":60,"queue":410,"season":7,"timestamp":1474281386404,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2848932923,"champion":60,"queue":410,"season":7,"timestamp":1474246612470,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2848940514,"champion":104,"queue":410,"season":7,"timestamp":1474244009405,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2848795159,"champion":64,"queue":410,"season":7,"timestamp":1474233981528,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2848741701,"champion":114,"queue":42,"season":7,"timestamp":1474230116735,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2848618722,"champion":222,"queue":42,"season":7,"timestamp":1474227306959,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2848518560,"champion":60,"queue":410,"season":7,"timestamp":1474225557814,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2848492550,"champion":64,"queue":410,"season":7,"timestamp":1474223800702,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2847140329,"champion":114,"queue":410,"season":7,"timestamp":1474156699656,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2847116486,"champion":114,"queue":410,"season":7,"timestamp":1474154285899,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2847048085,"champion":114,"queue":410,"season":7,"timestamp":1474150879983,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2846980360,"champion":60,"queue":410,"season":7,"timestamp":1474148245338,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2846880191,"champion":60,"queue":410,"season":7,"timestamp":1474145552157,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2846715128,"champion":60,"queue":410,"season":7,"timestamp":1474141276798,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2846317906,"champion":53,"queue":410,"season":7,"timestamp":1474136018902,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2846300596,"champion":412,"queue":410,"season":7,"timestamp":1474133470593,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2846250700,"champion":114,"queue":410,"season":7,"timestamp":1474130847747,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2845642436,"champion":412,"queue":410,"season":7,"timestamp":1474106304535,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2845567130,"champion":114,"queue":410,"season":7,"timestamp":1474103761035,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2845562953,"champion":60,"queue":410,"season":7,"timestamp":1474101287266,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2845411564,"champion":114,"queue":410,"season":7,"timestamp":1474068580950,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2845336660,"champion":421,"queue":410,"season":7,"timestamp":1474066240913,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2845310483,"champion":114,"queue":410,"season":7,"timestamp":1474063295405,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2845211958,"champion":69,"queue":410,"season":7,"timestamp":1474061013793,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2844508552,"champion":114,"queue":410,"season":7,"timestamp":1474048401702,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2844501242,"champion":60,"queue":410,"season":7,"timestamp":1474045910997,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2844245773,"champion":412,"queue":410,"season":7,"timestamp":1474037124491,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2844050384,"champion":24,"queue":410,"season":7,"timestamp":1474027413890,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2843829395,"champion":114,"queue":410,"season":7,"timestamp":1473983024170,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2843827208,"champion":412,"queue":410,"season":7,"timestamp":1473981340662,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2843832660,"champion":20,"queue":410,"season":7,"timestamp":1473978862005,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2843033135,"champion":114,"queue":410,"season":7,"timestamp":1473957343976,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2842484698,"champion":114,"queue":410,"season":7,"timestamp":1473891000985,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2841649606,"champion":64,"queue":410,"season":7,"timestamp":1473868556771,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2840579331,"champion":114,"queue":410,"season":7,"timestamp":1473783590313,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2840560752,"champion":33,"queue":410,"season":7,"timestamp":1473780976006,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":2840314055,"champion":412,"queue":410,"season":7,"timestamp":1473779330715,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2840272992,"champion":412,"queue":410,"season":7,"timestamp":1473778645383,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2839751900,"champion":64,"queue":410,"season":7,"timestamp":1473718826998,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2839514691,"champion":60,"queue":410,"season":7,"timestamp":1473706973638,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2839365203,"champion":69,"queue":410,"season":7,"timestamp":1473701372795,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2839082583,"champion":20,"queue":410,"season":7,"timestamp":1473684525999,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2838381176,"champion":53,"queue":410,"season":7,"timestamp":1473630518771,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2838314410,"champion":51,"queue":410,"season":7,"timestamp":1473627800180,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2837740646,"champion":114,"queue":410,"season":7,"timestamp":1473602584027,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2836426622,"champion":114,"queue":410,"season":7,"timestamp":1473530045020,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2836356734,"champion":114,"queue":410,"season":7,"timestamp":1473526584088,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2836229197,"champion":114,"queue":410,"season":7,"timestamp":1473520668319,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2835891927,"champion":32,"queue":410,"season":7,"timestamp":1473501656100,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2834797657,"champion":111,"queue":410,"season":7,"timestamp":1473440675425,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2834801024,"champion":39,"queue":410,"season":7,"timestamp":1473438549566,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2834714782,"champion":122,"queue":410,"season":7,"timestamp":1473436491760,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2834667783,"champion":38,"queue":410,"season":7,"timestamp":1473434282145,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2834650729,"champion":90,"queue":410,"season":7,"timestamp":1473431938161,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2834601047,"champion":53,"queue":410,"season":7,"timestamp":1473428756714,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2834513188,"champion":117,"queue":410,"season":7,"timestamp":1473425838208,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2834447983,"champion":117,"queue":410,"season":7,"timestamp":1473423488251,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2834434600,"champion":43,"queue":410,"season":7,"timestamp":1473421545551,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2834379510,"champion":43,"queue":410,"season":7,"timestamp":1473418699259,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2834376540,"champion":121,"queue":410,"season":7,"timestamp":1473416825009,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2834392666,"champion":1,"queue":410,"season":7,"timestamp":1473414646716,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833873381,"champion":38,"queue":410,"season":7,"timestamp":1473379811601,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833839265,"champion":223,"queue":410,"season":7,"timestamp":1473377221683,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2833815019,"champion":38,"queue":410,"season":7,"timestamp":1473374509157,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833759036,"champion":38,"queue":410,"season":7,"timestamp":1473371880293,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833761037,"champion":4,"queue":410,"season":7,"timestamp":1473369024287,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833629431,"champion":4,"queue":410,"season":7,"timestamp":1473365204960,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833588226,"champion":4,"queue":410,"season":7,"timestamp":1473362061913,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2833516214,"champion":17,"queue":410,"season":7,"timestamp":1473358687789,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2833438821,"champion":38,"queue":410,"season":7,"timestamp":1473356351424,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833389574,"champion":4,"queue":410,"season":7,"timestamp":1473353510071,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833371431,"champion":51,"queue":410,"season":7,"timestamp":1473350903530,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2833302263,"champion":80,"queue":410,"season":7,"timestamp":1473347897874,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2833265748,"champion":38,"queue":410,"season":7,"timestamp":1473345825086,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2833209312,"champion":80,"queue":410,"season":7,"timestamp":1473343588717,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2832950131,"champion":80,"queue":410,"season":7,"timestamp":1473328407628,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2832500777,"champion":53,"queue":410,"season":7,"timestamp":1473287769049,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2832007371,"champion":53,"queue":410,"season":7,"timestamp":1473264802327,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2831929811,"champion":80,"queue":410,"season":7,"timestamp":1473262295153,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2831869860,"champion":80,"queue":410,"season":7,"timestamp":1473259718489,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2831861338,"champion":80,"queue":410,"season":7,"timestamp":1473257206843,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2831558517,"champion":80,"queue":410,"season":7,"timestamp":1473252587739,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2831552528,"champion":80,"queue":410,"season":7,"timestamp":1473250152355,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2831357972,"champion":53,"queue":410,"season":7,"timestamp":1473248090059,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2831352734,"champion":1,"queue":410,"season":7,"timestamp":1473245313369,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2831286508,"champion":80,"queue":410,"season":7,"timestamp":1473242029475,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2831283648,"champion":80,"queue":410,"season":7,"timestamp":1473239891088,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2831281134,"champion":1,"queue":410,"season":7,"timestamp":1473237615423,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2831219075,"champion":80,"queue":410,"season":7,"timestamp":1473235478458,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2830904889,"champion":68,"queue":42,"season":7,"timestamp":1473190896347,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2830810152,"champion":421,"queue":42,"season":7,"timestamp":1473188579911,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2830757457,"champion":80,"queue":410,"season":7,"timestamp":1473185586596,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2830751558,"champion":121,"queue":410,"season":7,"timestamp":1473183812572,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2830693520,"champion":51,"queue":410,"season":7,"timestamp":1473181388924,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2829668246,"champion":59,"queue":42,"season":7,"timestamp":1473111605160,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2829651513,"champion":64,"queue":42,"season":7,"timestamp":1473109498857,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2829530384,"champion":60,"queue":42,"season":7,"timestamp":1473106451838,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2829488165,"champion":223,"queue":410,"season":7,"timestamp":1473104169133,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2829417626,"champion":223,"queue":410,"season":7,"timestamp":1473101133767,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2829346195,"champion":61,"queue":410,"season":7,"timestamp":1473097840220,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2829296133,"champion":4,"queue":410,"season":7,"timestamp":1473094871465,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2829226857,"champion":222,"queue":410,"season":7,"timestamp":1473092039168,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2829155887,"champion":1,"queue":410,"season":7,"timestamp":1473088576262,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2829140574,"champion":103,"queue":410,"season":7,"timestamp":1473086765194,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2829029469,"champion":4,"queue":410,"season":7,"timestamp":1473083188589,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2829031642,"champion":4,"queue":410,"season":7,"timestamp":1473080377721,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2828957454,"champion":51,"queue":410,"season":7,"timestamp":1473078172841,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2828408900,"champion":51,"queue":410,"season":7,"timestamp":1473019399455,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2828248880,"champion":51,"queue":410,"season":7,"timestamp":1473016543801,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2828049206,"champion":1,"queue":410,"season":7,"timestamp":1473013944487,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2827933258,"champion":51,"queue":410,"season":7,"timestamp":1473009501182,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2827805306,"champion":51,"queue":410,"season":7,"timestamp":1473004448188,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2827745137,"champion":98,"queue":410,"season":7,"timestamp":1473001809373,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2827675124,"champion":17,"queue":410,"season":7,"timestamp":1472999097894,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2827630877,"champion":223,"queue":410,"season":7,"timestamp":1472995668786,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2827419504,"champion":22,"queue":410,"season":7,"timestamp":1472988941952,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2826433887,"champion":51,"queue":410,"season":7,"timestamp":1472925497405,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2826337742,"champion":51,"queue":410,"season":7,"timestamp":1472923665054,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2824487138,"champion":24,"queue":410,"season":7,"timestamp":1472822204386,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2824418520,"champion":223,"queue":410,"season":7,"timestamp":1472818733208,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2824404136,"champion":24,"queue":410,"season":7,"timestamp":1472816192142,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2824358103,"champion":67,"queue":410,"season":7,"timestamp":1472813499474,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2824324063,"champion":4,"queue":410,"season":7,"timestamp":1472810484832,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2824132055,"champion":9,"queue":42,"season":7,"timestamp":1472769310864,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2824092021,"champion":64,"queue":42,"season":7,"timestamp":1472765757083,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2823422575,"champion":51,"queue":410,"season":7,"timestamp":1472747668754,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2823284566,"champion":51,"queue":410,"season":7,"timestamp":1472745375289,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2823228971,"champion":103,"queue":410,"season":7,"timestamp":1472743637833,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2823212420,"champion":67,"queue":410,"season":7,"timestamp":1472741689552,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2822956552,"champion":24,"queue":410,"season":7,"timestamp":1472728644171,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2822173332,"champion":103,"queue":410,"season":7,"timestamp":1472661111481,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2822022754,"champion":29,"queue":410,"season":7,"timestamp":1472657979253,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2821794163,"champion":67,"queue":410,"season":7,"timestamp":1472655347257,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2821676397,"champion":67,"queue":410,"season":7,"timestamp":1472653171590,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2821618128,"champion":103,"queue":410,"season":7,"timestamp":1472650620947,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2821574191,"champion":103,"queue":410,"season":7,"timestamp":1472646173856,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2821505672,"champion":4,"queue":410,"season":7,"timestamp":1472642781753,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2821490658,"champion":67,"queue":410,"season":7,"timestamp":1472640130470,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2821436182,"champion":4,"queue":410,"season":7,"timestamp":1472637618961,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2819959822,"champion":24,"queue":410,"season":7,"timestamp":1472556505078,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2819669910,"champion":33,"queue":410,"season":7,"timestamp":1472513275071,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2819674614,"champion":114,"queue":410,"season":7,"timestamp":1472510791259,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2819603610,"champion":67,"queue":410,"season":7,"timestamp":1472506680401,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2819542023,"champion":51,"queue":410,"season":7,"timestamp":1472503447877,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2819470460,"champion":103,"queue":410,"season":7,"timestamp":1472500357370,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2819280399,"champion":103,"queue":410,"season":7,"timestamp":1472495169125,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2819175917,"champion":67,"queue":410,"season":7,"timestamp":1472491336002,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2818925454,"champion":67,"queue":410,"season":7,"timestamp":1472488349803,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2818739040,"champion":51,"queue":410,"season":7,"timestamp":1472486410671,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2818674680,"champion":103,"queue":410,"season":7,"timestamp":1472482594752,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2818536903,"champion":34,"queue":410,"season":7,"timestamp":1472477522351,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2818479083,"champion":67,"queue":410,"season":7,"timestamp":1472474971263,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2818406076,"champion":51,"queue":410,"season":7,"timestamp":1472470016909,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2818366426,"champion":34,"queue":410,"season":7,"timestamp":1472465660453,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2818332541,"champion":57,"queue":410,"season":7,"timestamp":1472462966215,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2818277420,"champion":15,"queue":410,"season":7,"timestamp":1472459277574,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2818275148,"champion":103,"queue":410,"season":7,"timestamp":1472456783242,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2817073564,"champion":53,"queue":410,"season":7,"timestamp":1472392050481,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816957685,"champion":81,"queue":410,"season":7,"timestamp":1472387348959,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816887587,"champion":80,"queue":410,"season":7,"timestamp":1472383937227,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2816809808,"champion":122,"queue":410,"season":7,"timestamp":1472380540771,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2816815318,"champion":34,"queue":410,"season":7,"timestamp":1472378512544,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2816811286,"champion":4,"queue":410,"season":7,"timestamp":1472376341081,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2816747155,"champion":17,"queue":410,"season":7,"timestamp":1472373747773,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2816742905,"champion":17,"queue":410,"season":7,"timestamp":1472369149304,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2816741385,"champion":34,"queue":410,"season":7,"timestamp":1472366046139,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2816730850,"champion":17,"queue":410,"season":7,"timestamp":1472363367461,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2816670277,"champion":43,"queue":410,"season":7,"timestamp":1472361238881,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2816679412,"champion":17,"queue":410,"season":7,"timestamp":1472359156851,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2816669006,"champion":24,"queue":410,"season":7,"timestamp":1472356536148,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2816677472,"champion":114,"queue":410,"season":7,"timestamp":1472353478148,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2816675832,"champion":99,"queue":410,"season":7,"timestamp":1472350607703,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2816673752,"champion":40,"queue":410,"season":7,"timestamp":1472348005093,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816661027,"champion":16,"queue":410,"season":7,"timestamp":1472345321675,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816617443,"champion":40,"queue":410,"season":7,"timestamp":1472342988697,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816549109,"champion":53,"queue":410,"season":7,"timestamp":1472338858464,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816463235,"champion":81,"queue":410,"season":7,"timestamp":1472332983720,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816406647,"champion":34,"queue":410,"season":7,"timestamp":1472331050663,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2816404443,"champion":4,"queue":410,"season":7,"timestamp":1472330324478,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":2816324208,"champion":34,"queue":410,"season":7,"timestamp":1472327121407,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2816276175,"champion":81,"queue":410,"season":7,"timestamp":1472324611032,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816228027,"champion":34,"queue":410,"season":7,"timestamp":1472321819762,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2816223762,"champion":81,"queue":410,"season":7,"timestamp":1472320134082,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816135781,"champion":412,"queue":410,"season":7,"timestamp":1472317147130,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2816086486,"champion":34,"queue":410,"season":7,"timestamp":1472313889908,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2816028520,"champion":53,"queue":410,"season":7,"timestamp":1472311139578,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2815187036,"champion":53,"queue":410,"season":7,"timestamp":1472264196863,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2815184211,"champion":29,"queue":410,"season":7,"timestamp":1472260744508,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2815107538,"champion":45,"queue":410,"season":7,"timestamp":1472255627900,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2815102893,"champion":1,"queue":410,"season":7,"timestamp":1472253353399,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2815057292,"champion":33,"queue":410,"season":7,"timestamp":1472251221060,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2815044292,"champion":34,"queue":410,"season":7,"timestamp":1472250106719,"role":"DUO","lane":"MID"},{"platformId":"EUW1","gameId":2814895922,"champion":16,"queue":410,"season":7,"timestamp":1472244205013,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2814836547,"champion":412,"queue":410,"season":7,"timestamp":1472241462785,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2814649291,"champion":37,"queue":410,"season":7,"timestamp":1472232551010,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2814576641,"champion":53,"queue":410,"season":7,"timestamp":1472227898877,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2814503476,"champion":67,"queue":410,"season":7,"timestamp":1472223440391,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2814436672,"champion":24,"queue":410,"season":7,"timestamp":1472221085107,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2814206102,"champion":45,"queue":410,"season":7,"timestamp":1472217669562,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2813948852,"champion":16,"queue":410,"season":7,"timestamp":1472214854103,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2813953960,"champion":45,"queue":410,"season":7,"timestamp":1472213036642,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2813617795,"champion":16,"queue":410,"season":7,"timestamp":1472166480062,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2813611447,"champion":22,"queue":410,"season":7,"timestamp":1472163809704,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2813551739,"champion":45,"queue":410,"season":7,"timestamp":1472160512137,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2813215011,"champion":45,"queue":410,"season":7,"timestamp":1472147034861,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2813166366,"champion":45,"queue":410,"season":7,"timestamp":1472144332777,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2813118283,"champion":16,"queue":410,"season":7,"timestamp":1472141845955,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2813101886,"champion":16,"queue":410,"season":7,"timestamp":1472139695116,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2813054637,"champion":16,"queue":410,"season":7,"timestamp":1472137538918,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2812985068,"champion":8,"queue":410,"season":7,"timestamp":1472134544384,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2812902559,"champion":42,"queue":410,"season":7,"timestamp":1472130403439,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2812860707,"champion":67,"queue":410,"season":7,"timestamp":1472126181720,"role":"SOLO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2812465235,"champion":45,"queue":410,"season":7,"timestamp":1472123407063,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2812368600,"champion":67,"queue":410,"season":7,"timestamp":1472120155687,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2812375213,"champion":67,"queue":410,"season":7,"timestamp":1472118284094,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2812352398,"champion":45,"queue":410,"season":7,"timestamp":1472116058602,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2812268806,"champion":59,"queue":410,"season":7,"timestamp":1472113105505,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2811669596,"champion":29,"queue":410,"season":7,"timestamp":1472056137907,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2811664223,"champion":67,"queue":410,"season":7,"timestamp":1472054296785,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2811589672,"champion":67,"queue":410,"season":7,"timestamp":1472052679138,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2811590956,"champion":45,"queue":410,"season":7,"timestamp":1472049907716,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2811522815,"champion":99,"queue":410,"season":7,"timestamp":1472047199029,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2810698930,"champion":121,"queue":410,"season":7,"timestamp":1472002322079,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2810620210,"champion":15,"queue":410,"season":7,"timestamp":1471995407773,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2810612065,"champion":51,"queue":410,"season":7,"timestamp":1471991649788,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2810555651,"champion":34,"queue":410,"season":7,"timestamp":1471989336132,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2808987326,"champion":64,"queue":410,"season":7,"timestamp":1471899145859,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2808823452,"champion":39,"queue":410,"season":7,"timestamp":1471892569383,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2808447848,"champion":114,"queue":410,"season":7,"timestamp":1471875816090,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2808421692,"champion":114,"queue":410,"season":7,"timestamp":1471873590905,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2807895326,"champion":114,"queue":410,"season":7,"timestamp":1471815074682,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2807331684,"champion":114,"queue":410,"season":7,"timestamp":1471804942284,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2807180348,"champion":114,"queue":410,"season":7,"timestamp":1471801121808,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2807111177,"champion":114,"queue":410,"season":7,"timestamp":1471795183802,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2806486620,"champion":114,"queue":410,"season":7,"timestamp":1471739115475,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2806483270,"champion":24,"queue":410,"season":7,"timestamp":1471737014173,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2806446837,"champion":79,"queue":410,"season":7,"timestamp":1471734456776,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2806413272,"champion":53,"queue":410,"season":7,"timestamp":1471732244594,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2806373669,"champion":20,"queue":410,"season":7,"timestamp":1471729134886,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2806284284,"champion":20,"queue":410,"season":7,"timestamp":1471725755487,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2806158680,"champion":20,"queue":410,"season":7,"timestamp":1471720485791,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2806161357,"champion":20,"queue":410,"season":7,"timestamp":1471717962172,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2805764780,"champion":20,"queue":410,"season":7,"timestamp":1471715408690,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2805656717,"champion":20,"queue":410,"season":7,"timestamp":1471712301206,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2805578835,"champion":20,"queue":410,"season":7,"timestamp":1471709231923,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2805581897,"champion":20,"queue":410,"season":7,"timestamp":1471706940259,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2805505220,"champion":114,"queue":410,"season":7,"timestamp":1471704485018,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2805439267,"champion":114,"queue":410,"season":7,"timestamp":1471702489623,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2805421316,"champion":114,"queue":410,"season":7,"timestamp":1471699673313,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2805311418,"champion":20,"queue":410,"season":7,"timestamp":1471691915186,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2805207629,"champion":114,"queue":410,"season":7,"timestamp":1471689607610,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2805222457,"champion":114,"queue":410,"season":7,"timestamp":1471687043256,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2805056665,"champion":20,"queue":410,"season":7,"timestamp":1471657607581,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2805063509,"champion":20,"queue":410,"season":7,"timestamp":1471654720524,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2805018366,"champion":25,"queue":410,"season":7,"timestamp":1471651137258,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2804994784,"champion":20,"queue":410,"season":7,"timestamp":1471648862228,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2804919884,"champion":20,"queue":410,"season":7,"timestamp":1471646592147,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2804915401,"champion":20,"queue":410,"season":7,"timestamp":1471644835152,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2804868100,"champion":81,"queue":410,"season":7,"timestamp":1471642527524,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2804841439,"champion":20,"queue":410,"season":7,"timestamp":1471640036210,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2804792869,"champion":61,"queue":410,"season":7,"timestamp":1471637641635,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2803380776,"champion":20,"queue":410,"season":7,"timestamp":1471553187439,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2803199748,"champion":238,"queue":410,"season":7,"timestamp":1471547068110,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2803138691,"champion":81,"queue":410,"season":7,"timestamp":1471543735413,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2803086078,"champion":64,"queue":410,"season":7,"timestamp":1471539611993,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2802896053,"champion":114,"queue":410,"season":7,"timestamp":1471529714625,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2800600615,"champion":16,"queue":410,"season":7,"timestamp":1471387037426,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2800545666,"champion":53,"queue":410,"season":7,"timestamp":1471385173369,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2800550491,"champion":114,"queue":410,"season":7,"timestamp":1471383261415,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2800370256,"champion":32,"queue":410,"season":7,"timestamp":1471376841498,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2800289766,"champion":68,"queue":410,"season":7,"timestamp":1471373808518,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2800179581,"champion":114,"queue":410,"season":7,"timestamp":1471367189130,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2800037223,"champion":114,"queue":410,"season":7,"timestamp":1471359258815,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2800014161,"champion":114,"queue":410,"season":7,"timestamp":1471358013744,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2799956704,"champion":64,"queue":410,"season":7,"timestamp":1471355562930,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2799342801,"champion":53,"queue":410,"season":7,"timestamp":1471300863750,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2799167355,"champion":412,"queue":410,"season":7,"timestamp":1471298633565,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2799171903,"champion":114,"queue":410,"season":7,"timestamp":1471296897807,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2798863606,"champion":114,"queue":410,"season":7,"timestamp":1471285540971,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2798704540,"champion":122,"queue":410,"season":7,"timestamp":1471279093212,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2798464237,"champion":111,"queue":410,"season":7,"timestamp":1471265686011,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2798418370,"champion":35,"queue":410,"season":7,"timestamp":1471263519620,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2798338053,"champion":157,"queue":410,"season":7,"timestamp":1471258331926,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2798343423,"champion":114,"queue":410,"season":7,"timestamp":1471255820012,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2798192288,"champion":64,"queue":410,"season":7,"timestamp":1471222134521,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2798128179,"champion":92,"queue":410,"season":7,"timestamp":1471219200752,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2798103583,"champion":11,"queue":410,"season":7,"timestamp":1471216341808,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2798048331,"champion":114,"queue":410,"season":7,"timestamp":1471213812016,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2798008567,"champion":74,"queue":410,"season":7,"timestamp":1471210335319,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2796371897,"champion":114,"queue":410,"season":7,"timestamp":1471111047934,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2796296144,"champion":114,"queue":410,"season":7,"timestamp":1471108699115,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2796210338,"champion":114,"queue":410,"season":7,"timestamp":1471106311601,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2795971724,"champion":37,"queue":410,"season":7,"timestamp":1471099445023,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2795735212,"champion":114,"queue":410,"season":7,"timestamp":1471097047303,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2795538120,"champion":114,"queue":410,"season":7,"timestamp":1471086013648,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2795311745,"champion":78,"queue":410,"season":7,"timestamp":1471043369340,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2795254663,"champion":39,"queue":410,"season":7,"timestamp":1471040586756,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2795169203,"champion":24,"queue":410,"season":7,"timestamp":1471038347387,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2794554263,"champion":28,"queue":410,"season":7,"timestamp":1471004780414,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2794088433,"champion":114,"queue":410,"season":7,"timestamp":1471002178819,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2793627736,"champion":24,"queue":410,"season":7,"timestamp":1470944933889,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2793129109,"champion":76,"queue":410,"season":7,"timestamp":1470919088447,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2793070400,"champion":157,"queue":410,"season":7,"timestamp":1470915430147,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2793072304,"champion":114,"queue":410,"season":7,"timestamp":1470911122281,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2792111284,"champion":114,"queue":410,"season":7,"timestamp":1470851504639,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2792054894,"champion":114,"queue":410,"season":7,"timestamp":1470849326513,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2791737155,"champion":31,"queue":410,"season":7,"timestamp":1470832331612,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2791731824,"champion":114,"queue":410,"season":7,"timestamp":1470829892911,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2791670272,"champion":114,"queue":410,"season":7,"timestamp":1470829059210,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2791662419,"champion":114,"queue":410,"season":7,"timestamp":1470824402813,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2791518882,"champion":114,"queue":410,"season":7,"timestamp":1470821725522,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2791306127,"champion":64,"queue":410,"season":7,"timestamp":1470819349987,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2790649775,"champion":238,"queue":410,"season":7,"timestamp":1470765162780,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2790661401,"champion":64,"queue":410,"season":7,"timestamp":1470762703754,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2789920409,"champion":81,"queue":410,"season":7,"timestamp":1470746138345,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2789844155,"champion":69,"queue":410,"season":7,"timestamp":1470738960140,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2789720275,"champion":64,"queue":410,"season":7,"timestamp":1470728191638,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2789265242,"champion":8,"queue":410,"season":7,"timestamp":1470682163776,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2789262125,"champion":114,"queue":410,"season":7,"timestamp":1470681163046,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2789226758,"champion":53,"queue":410,"season":7,"timestamp":1470679453919,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2789201017,"champion":64,"queue":410,"season":7,"timestamp":1470677150952,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2788768849,"champion":64,"queue":410,"season":7,"timestamp":1470657555042,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2788465635,"champion":81,"queue":410,"season":7,"timestamp":1470649655532,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2787898844,"champion":64,"queue":410,"season":7,"timestamp":1470600163740,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2786844766,"champion":81,"queue":410,"season":7,"timestamp":1470516016137,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2786101929,"champion":64,"queue":410,"season":7,"timestamp":1470494481156,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2786047066,"champion":114,"queue":410,"season":7,"timestamp":1470492658418,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2785968423,"champion":81,"queue":410,"season":7,"timestamp":1470489178335,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2785839476,"champion":9,"queue":410,"season":7,"timestamp":1470480683960,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2785825084,"champion":120,"queue":410,"season":7,"timestamp":1470477125941,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2785609313,"champion":114,"queue":410,"season":7,"timestamp":1470440265064,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2785283097,"champion":64,"queue":410,"season":7,"timestamp":1470421435516,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2784486442,"champion":114,"queue":410,"season":7,"timestamp":1470401086274,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2784180352,"champion":24,"queue":410,"season":7,"timestamp":1470354374718,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2784108510,"champion":64,"queue":410,"season":7,"timestamp":1470348911705,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2783483968,"champion":114,"queue":410,"season":7,"timestamp":1470314579347,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2783056373,"champion":64,"queue":410,"season":7,"timestamp":1470311432580,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2782910290,"champion":114,"queue":410,"season":7,"timestamp":1470302213296,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2782767903,"champion":114,"queue":410,"season":7,"timestamp":1470267899729,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2782693395,"champion":114,"queue":410,"season":7,"timestamp":1470261546440,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2782350172,"champion":114,"queue":410,"season":7,"timestamp":1470245513854,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2782288126,"champion":45,"queue":410,"season":7,"timestamp":1470241358851,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2782262858,"champion":51,"queue":410,"season":7,"timestamp":1470239381064,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2782148914,"champion":45,"queue":410,"season":7,"timestamp":1470234758142,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2782130775,"champion":22,"queue":410,"season":7,"timestamp":1470231947602,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2782082944,"champion":22,"queue":410,"season":7,"timestamp":1470229201912,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2782035475,"champion":22,"queue":410,"season":7,"timestamp":1470226399611,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2781977222,"champion":45,"queue":410,"season":7,"timestamp":1470222439831,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2781962275,"champion":51,"queue":410,"season":7,"timestamp":1470219567288,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2781919078,"champion":22,"queue":410,"season":7,"timestamp":1470217482842,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2781896572,"champion":22,"queue":410,"season":7,"timestamp":1470215627660,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2781903121,"champion":22,"queue":410,"season":7,"timestamp":1470212340445,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2781891205,"champion":45,"queue":410,"season":7,"timestamp":1470209384167,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2781191857,"champion":81,"queue":410,"season":7,"timestamp":1470168646468,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2781134682,"champion":22,"queue":410,"season":7,"timestamp":1470166716689,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2781039115,"champion":81,"queue":410,"season":7,"timestamp":1470165111215,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780840053,"champion":51,"queue":410,"season":7,"timestamp":1470162474346,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780835896,"champion":51,"queue":410,"season":7,"timestamp":1470161233138,"role":"SOLO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780528354,"champion":67,"queue":410,"season":7,"timestamp":1470155941785,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780467151,"champion":51,"queue":410,"season":7,"timestamp":1470152282139,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780454438,"champion":33,"queue":410,"season":7,"timestamp":1470151299332,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2780393707,"champion":51,"queue":410,"season":7,"timestamp":1470148016657,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780304106,"champion":51,"queue":410,"season":7,"timestamp":1470144852726,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780245629,"champion":51,"queue":410,"season":7,"timestamp":1470141940092,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780196817,"champion":45,"queue":410,"season":7,"timestamp":1470138702027,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2780118159,"champion":45,"queue":410,"season":7,"timestamp":1470134295160,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2780122538,"champion":51,"queue":410,"season":7,"timestamp":1470131274197,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780054028,"champion":51,"queue":410,"season":7,"timestamp":1470123784803,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2780062579,"champion":22,"queue":410,"season":7,"timestamp":1470121370490,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2779606473,"champion":45,"queue":410,"season":7,"timestamp":1470077681030,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2779547476,"champion":45,"queue":410,"season":7,"timestamp":1470074921708,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2779389319,"champion":51,"queue":410,"season":7,"timestamp":1470071900368,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2779146827,"champion":51,"queue":410,"season":7,"timestamp":1470067611252,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2778852247,"champion":45,"queue":410,"season":7,"timestamp":1470055598094,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2778806590,"champion":45,"queue":410,"season":7,"timestamp":1470053334339,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2778802673,"champion":22,"queue":410,"season":7,"timestamp":1470051540583,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2778727864,"champion":45,"queue":410,"season":7,"timestamp":1470049220029,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2778722515,"champion":45,"queue":410,"season":7,"timestamp":1470046111187,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2778639199,"champion":51,"queue":410,"season":7,"timestamp":1470043757694,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2778644632,"champion":15,"queue":410,"season":7,"timestamp":1470039706803,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2778642725,"champion":22,"queue":410,"season":7,"timestamp":1470037213151,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2777938367,"champion":45,"queue":410,"season":7,"timestamp":1469978259239,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2777942161,"champion":22,"queue":410,"season":7,"timestamp":1469976365581,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2777872818,"champion":35,"queue":410,"season":7,"timestamp":1469973357636,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2777770517,"champion":45,"queue":410,"season":7,"timestamp":1469969037732,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2777682186,"champion":45,"queue":410,"season":7,"timestamp":1469965629452,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2777386568,"champion":122,"queue":410,"season":7,"timestamp":1469962963756,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2777421686,"champion":24,"queue":410,"season":7,"timestamp":1469960598491,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2777242212,"champion":45,"queue":410,"season":7,"timestamp":1469953334224,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2776887682,"champion":114,"queue":410,"season":7,"timestamp":1469911361677,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2776376197,"champion":86,"queue":410,"season":7,"timestamp":1469880202858,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2776371003,"champion":24,"queue":410,"season":7,"timestamp":1469877668035,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2776219788,"champion":24,"queue":410,"season":7,"timestamp":1469870168905,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2776215763,"champion":45,"queue":410,"season":7,"timestamp":1469866005634,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2776223876,"champion":45,"queue":410,"season":7,"timestamp":1469863714559,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2775062267,"champion":4,"queue":410,"season":7,"timestamp":1469795030140,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2771399476,"champion":103,"queue":410,"season":7,"timestamp":1469541230729,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2771392689,"champion":4,"queue":410,"season":7,"timestamp":1469538619548,"role":"DUO_CARRY","lane":"MID"},{"platformId":"EUW1","gameId":2771345329,"champion":120,"queue":410,"season":7,"timestamp":1469535524255,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2771320706,"champion":23,"queue":410,"season":7,"timestamp":1469533150554,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2771279336,"champion":23,"queue":410,"season":7,"timestamp":1469532418837,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2771287438,"champion":23,"queue":410,"season":7,"timestamp":1469531372544,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2771283482,"champion":4,"queue":410,"season":7,"timestamp":1469528901104,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2770907945,"champion":22,"queue":410,"season":7,"timestamp":1469524776476,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2771056458,"champion":33,"queue":410,"season":7,"timestamp":1469523334367,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2771114023,"champion":79,"queue":410,"season":7,"timestamp":1469520330489,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2769814190,"champion":4,"queue":410,"season":7,"timestamp":1469461675040,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2769758136,"champion":99,"queue":410,"season":7,"timestamp":1469459600035,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2769426452,"champion":59,"queue":410,"season":7,"timestamp":1469433238946,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2769424848,"champion":80,"queue":410,"season":7,"timestamp":1469430374096,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2768840237,"champion":57,"queue":41,"season":7,"timestamp":1469377372877,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2767803705,"champion":114,"queue":410,"season":7,"timestamp":1469308086937,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2767186297,"champion":114,"queue":410,"season":7,"timestamp":1469272757031,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2766614040,"champion":64,"queue":410,"season":7,"timestamp":1469226713731,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2766612233,"champion":64,"queue":410,"season":7,"timestamp":1469225962907,"role":"NONE","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2766464132,"champion":64,"queue":410,"season":7,"timestamp":1469222874920,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2765935753,"champion":57,"queue":410,"season":7,"timestamp":1469193198737,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2765857806,"champion":122,"queue":410,"season":7,"timestamp":1469189529049,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2765795421,"champion":114,"queue":410,"season":7,"timestamp":1469183054597,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2765790606,"champion":33,"queue":410,"season":7,"timestamp":1469179805842,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2765708772,"champion":24,"queue":410,"season":7,"timestamp":1469177558910,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2765655173,"champion":24,"queue":410,"season":7,"timestamp":1469149979237,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2765650587,"champion":24,"queue":410,"season":7,"timestamp":1469146020903,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2765528829,"champion":57,"queue":410,"season":7,"timestamp":1469139536770,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2764784745,"champion":24,"queue":410,"season":7,"timestamp":1469117458348,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2764717875,"champion":102,"queue":410,"season":7,"timestamp":1469114819168,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2764650406,"champion":5,"queue":410,"season":7,"timestamp":1469112002948,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2764250288,"champion":5,"queue":410,"season":7,"timestamp":1469059602065,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2764236232,"champion":5,"queue":410,"season":7,"timestamp":1469056820142,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2764230596,"champion":5,"queue":410,"season":7,"timestamp":1469054197270,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2764175488,"champion":122,"queue":410,"season":7,"timestamp":1469052196990,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2764133849,"champion":36,"queue":410,"season":7,"timestamp":1469048459937,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2764008917,"champion":39,"queue":410,"season":7,"timestamp":1469043869639,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2763526953,"champion":5,"queue":410,"season":7,"timestamp":1469021105336,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2762980685,"champion":10,"queue":410,"season":7,"timestamp":1468974261239,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2762897606,"champion":53,"queue":410,"season":7,"timestamp":1468971950359,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2762913941,"champion":111,"queue":410,"season":7,"timestamp":1468969977349,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2762849730,"champion":81,"queue":410,"season":7,"timestamp":1468967918516,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2762844593,"champion":81,"queue":410,"season":7,"timestamp":1468965810760,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2762777375,"champion":81,"queue":410,"season":7,"timestamp":1468963232142,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2762780858,"champion":120,"queue":410,"season":7,"timestamp":1468961254438,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2762735022,"champion":39,"queue":410,"season":7,"timestamp":1468959600333,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2762222846,"champion":114,"queue":410,"season":7,"timestamp":1468929839244,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2762157384,"champion":412,"queue":410,"season":7,"timestamp":1468926806031,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2762153186,"champion":114,"queue":410,"season":7,"timestamp":1468924500215,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2762099619,"champion":114,"queue":410,"season":7,"timestamp":1468922251727,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2761505225,"champion":157,"queue":42,"season":7,"timestamp":1468879171627,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2761471743,"champion":39,"queue":42,"season":7,"timestamp":1468876813018,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2761404527,"champion":114,"queue":410,"season":7,"timestamp":1468873622339,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2760729257,"champion":64,"queue":410,"season":7,"timestamp":1468836015124,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2760329856,"champion":114,"queue":410,"season":7,"timestamp":1468784798753,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2759610593,"champion":114,"queue":410,"season":7,"timestamp":1468764874849,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2759554993,"champion":114,"queue":410,"season":7,"timestamp":1468762881619,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2759349658,"champion":114,"queue":410,"season":7,"timestamp":1468751944343,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2759345924,"champion":114,"queue":410,"season":7,"timestamp":1468749705651,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2759187192,"champion":114,"queue":410,"season":7,"timestamp":1468717499505,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2759196228,"champion":121,"queue":410,"season":7,"timestamp":1468716582253,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2759191999,"champion":157,"queue":410,"season":7,"timestamp":1468713394813,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2759118450,"champion":9,"queue":410,"season":7,"timestamp":1468711183884,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2759134357,"champion":28,"queue":410,"season":7,"timestamp":1468709139505,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2759131300,"champion":24,"queue":410,"season":7,"timestamp":1468707655561,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2759066654,"champion":114,"queue":410,"season":7,"timestamp":1468705466807,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2759000442,"champion":53,"queue":410,"season":7,"timestamp":1468702898877,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2758974238,"champion":114,"queue":410,"season":7,"timestamp":1468700533431,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2758843387,"champion":4,"queue":410,"season":7,"timestamp":1468692210230,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2758775971,"champion":114,"queue":410,"season":7,"timestamp":1468689035446,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2758060450,"champion":53,"queue":410,"season":7,"timestamp":1468670930819,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2758061487,"champion":8,"queue":410,"season":7,"timestamp":1468666423447,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2757976935,"champion":114,"queue":410,"season":7,"timestamp":1468663524523,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2757973847,"champion":64,"queue":410,"season":7,"timestamp":1468661347331,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2757751358,"champion":53,"queue":410,"season":7,"timestamp":1468620392762,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2757676019,"champion":114,"queue":410,"season":7,"timestamp":1468618390963,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2757670661,"champion":64,"queue":410,"season":7,"timestamp":1468616321678,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2757613314,"champion":114,"queue":410,"season":7,"timestamp":1468613899560,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2756975565,"champion":114,"queue":410,"season":7,"timestamp":1468578520643,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2756991647,"champion":114,"queue":410,"season":7,"timestamp":1468576175826,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2756415332,"champion":114,"queue":410,"season":7,"timestamp":1468538325340,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2756350289,"champion":24,"queue":410,"season":7,"timestamp":1468536059919,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2756334480,"champion":114,"queue":410,"season":7,"timestamp":1468533656857,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2756273165,"champion":64,"queue":410,"season":7,"timestamp":1468529823233,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2755716002,"champion":64,"queue":410,"season":7,"timestamp":1468500536610,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2755659043,"champion":64,"queue":410,"season":7,"timestamp":1468497557150,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2755663295,"champion":114,"queue":410,"season":7,"timestamp":1468494982235,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2755573545,"champion":114,"queue":410,"season":7,"timestamp":1468489292941,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2755467298,"champion":114,"queue":410,"season":7,"timestamp":1468459687341,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2755464331,"champion":114,"queue":410,"season":7,"timestamp":1468456697330,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2755452069,"champion":114,"queue":410,"season":7,"timestamp":1468454918728,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2755398133,"champion":114,"queue":410,"season":7,"timestamp":1468452623859,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2755414240,"champion":114,"queue":410,"season":7,"timestamp":1468450730252,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2755247816,"champion":114,"queue":410,"season":7,"timestamp":1468448064143,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2755231089,"champion":114,"queue":410,"season":7,"timestamp":1468445636257,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2754382662,"champion":105,"queue":410,"season":7,"timestamp":1468414532358,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2754327004,"champion":114,"queue":410,"season":7,"timestamp":1468412161955,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2754218130,"champion":64,"queue":410,"season":7,"timestamp":1468401492928,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2753553879,"champion":114,"queue":410,"season":7,"timestamp":1468357878172,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2752552434,"champion":102,"queue":410,"season":7,"timestamp":1468326221636,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2752502955,"champion":114,"queue":410,"season":7,"timestamp":1468323338850,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2752406164,"champion":114,"queue":410,"season":7,"timestamp":1468318593290,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2752412457,"champion":114,"queue":410,"season":7,"timestamp":1468317301259,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2752204730,"champion":114,"queue":410,"season":7,"timestamp":1468278638676,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2752157623,"champion":114,"queue":410,"season":7,"timestamp":1468276094016,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2751441381,"champion":114,"queue":410,"season":7,"timestamp":1468240251569,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2751361389,"champion":157,"queue":410,"season":7,"timestamp":1468236766540,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2751153152,"champion":238,"queue":410,"season":7,"timestamp":1468232602437,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2751041896,"champion":64,"queue":410,"season":7,"timestamp":1468229869349,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2750946146,"champion":114,"queue":410,"season":7,"timestamp":1468226825485,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2750770136,"champion":24,"queue":410,"season":7,"timestamp":1468197769974,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2750730302,"champion":53,"queue":410,"season":7,"timestamp":1468195537310,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2750764240,"champion":53,"queue":410,"season":7,"timestamp":1468193547712,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2750721926,"champion":114,"queue":410,"season":7,"timestamp":1468190915576,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2750673877,"champion":122,"queue":410,"season":7,"timestamp":1468188210865,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2750589163,"champion":122,"queue":410,"season":7,"timestamp":1468185445749,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2750580524,"champion":114,"queue":410,"season":7,"timestamp":1468181450412,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2750404969,"champion":64,"queue":410,"season":7,"timestamp":1468172490602,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2749734012,"champion":114,"queue":410,"season":7,"timestamp":1468111675491,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2749689721,"champion":64,"queue":410,"season":7,"timestamp":1468109332398,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2749629222,"champion":4,"queue":410,"season":7,"timestamp":1468104767380,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2749605450,"champion":238,"queue":410,"season":7,"timestamp":1468101975654,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2749536503,"champion":238,"queue":410,"season":7,"timestamp":1468099597539,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2749387586,"champion":4,"queue":410,"season":7,"timestamp":1468096908194,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2748924823,"champion":114,"queue":410,"season":7,"timestamp":1468085213614,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2748891052,"champion":114,"queue":410,"season":7,"timestamp":1468082871291,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2748826347,"champion":64,"queue":410,"season":7,"timestamp":1468081150050,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2748719362,"champion":64,"queue":410,"season":7,"timestamp":1468075702073,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2748670380,"champion":114,"queue":410,"season":7,"timestamp":1468073087084,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2748634479,"champion":114,"queue":410,"season":7,"timestamp":1468070284994,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2748367392,"champion":114,"queue":410,"season":7,"timestamp":1468052505565,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2748239388,"champion":98,"queue":410,"season":7,"timestamp":1468022119968,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2748252379,"champion":90,"queue":410,"season":7,"timestamp":1468019155662,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2748149973,"champion":114,"queue":410,"season":7,"timestamp":1468017022693,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2748171375,"champion":114,"queue":410,"season":7,"timestamp":1468014540780,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2748086244,"champion":114,"queue":410,"season":7,"timestamp":1468012397805,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2748025550,"champion":114,"queue":410,"season":7,"timestamp":1468009212859,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2747918537,"champion":64,"queue":410,"season":7,"timestamp":1468004657870,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2747911886,"champion":64,"queue":410,"season":7,"timestamp":1468002397663,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2747805553,"champion":114,"queue":410,"season":7,"timestamp":1467999061578,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2746708492,"champion":114,"queue":410,"season":7,"timestamp":1467929818827,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2746670189,"champion":114,"queue":410,"season":7,"timestamp":1467927716671,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2746082057,"champion":33,"queue":410,"season":7,"timestamp":1467893114314,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2744641689,"champion":64,"queue":410,"season":7,"timestamp":1467804874844,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2744317934,"champion":114,"queue":410,"season":7,"timestamp":1467759815379,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2744310466,"champion":64,"queue":410,"season":7,"timestamp":1467756875765,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2744068852,"champion":24,"queue":410,"season":7,"timestamp":1467753938153,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2743820320,"champion":64,"queue":410,"season":7,"timestamp":1467751194455,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2743851766,"champion":114,"queue":410,"season":7,"timestamp":1467749174203,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2743687087,"champion":64,"queue":410,"season":7,"timestamp":1467747364520,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2743578845,"champion":114,"queue":410,"season":7,"timestamp":1467742660806,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2743562198,"champion":114,"queue":410,"season":7,"timestamp":1467740460816,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2743158628,"champion":114,"queue":410,"season":7,"timestamp":1467721008102,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2743161078,"champion":254,"queue":410,"season":7,"timestamp":1467718398320,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2742700031,"champion":114,"queue":410,"season":7,"timestamp":1467667576325,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2742580317,"champion":64,"queue":410,"season":7,"timestamp":1467664513766,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2742571125,"champion":114,"queue":410,"season":7,"timestamp":1467662106092,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2742174789,"champion":238,"queue":410,"season":7,"timestamp":1467657793683,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741842338,"champion":4,"queue":410,"season":7,"timestamp":1467644595848,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741804108,"champion":4,"queue":410,"season":7,"timestamp":1467642501857,"role":"DUO_CARRY","lane":"MID"},{"platformId":"EUW1","gameId":2741746094,"champion":22,"queue":410,"season":7,"timestamp":1467640021291,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2741690431,"champion":4,"queue":410,"season":7,"timestamp":1467638177313,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741681233,"champion":4,"queue":410,"season":7,"timestamp":1467634810722,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741606328,"champion":22,"queue":410,"season":7,"timestamp":1467632092062,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2741622456,"champion":4,"queue":410,"season":7,"timestamp":1467630998043,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741556525,"champion":22,"queue":410,"season":7,"timestamp":1467627916483,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2741552978,"champion":4,"queue":410,"season":7,"timestamp":1467625789080,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741470232,"champion":4,"queue":410,"season":7,"timestamp":1467623312483,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741486168,"champion":4,"queue":410,"season":7,"timestamp":1467620598286,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741483690,"champion":45,"queue":410,"season":7,"timestamp":1467617657874,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2741019506,"champion":51,"queue":410,"season":7,"timestamp":1467572321780,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2740992791,"champion":45,"queue":410,"season":7,"timestamp":1467569995914,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2740807927,"champion":22,"queue":410,"season":7,"timestamp":1467566076477,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2740122939,"champion":98,"queue":410,"season":7,"timestamp":1467547007466,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2740075309,"champion":98,"queue":410,"season":7,"timestamp":1467544207163,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2740051758,"champion":98,"queue":410,"season":7,"timestamp":1467542379165,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2739985882,"champion":24,"queue":410,"season":7,"timestamp":1467539286597,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2739981353,"champion":39,"queue":410,"season":7,"timestamp":1467536246159,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2739918890,"champion":38,"queue":410,"season":7,"timestamp":1467533906974,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2738555636,"champion":80,"queue":410,"season":7,"timestamp":1467454350726,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2738532604,"champion":54,"queue":410,"season":7,"timestamp":1467451914281,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2738459476,"champion":54,"queue":410,"season":7,"timestamp":1467449939780,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2738465603,"champion":24,"queue":410,"season":7,"timestamp":1467447109821,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2738482800,"champion":57,"queue":410,"season":7,"timestamp":1467444619866,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2738481735,"champion":54,"queue":410,"season":7,"timestamp":1467442800274,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2738461665,"champion":80,"queue":410,"season":7,"timestamp":1467440439636,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2737861030,"champion":80,"queue":410,"season":7,"timestamp":1467390654970,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2737585870,"champion":4,"queue":410,"season":7,"timestamp":1467378940199,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2737229765,"champion":4,"queue":410,"season":7,"timestamp":1467376893294,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2737020830,"champion":22,"queue":410,"season":7,"timestamp":1467362124545,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2736069579,"champion":53,"queue":410,"season":7,"timestamp":1467290759371,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2736062644,"champion":114,"queue":410,"season":7,"timestamp":1467288266271,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2735293962,"champion":59,"queue":410,"season":7,"timestamp":1467237891032,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2735235463,"champion":114,"queue":410,"season":7,"timestamp":1467235247053,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2735183309,"champion":238,"queue":410,"season":7,"timestamp":1467231852847,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2735056202,"champion":24,"queue":410,"season":7,"timestamp":1467227246928,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2734610880,"champion":64,"queue":410,"season":7,"timestamp":1467203229745,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2734556546,"champion":64,"queue":410,"season":7,"timestamp":1467201420649,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2733445360,"champion":238,"queue":410,"season":7,"timestamp":1467150270541,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2733371825,"champion":238,"queue":410,"season":7,"timestamp":1467146912156,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2733300582,"champion":238,"queue":410,"season":7,"timestamp":1467144108848,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2733189873,"champion":114,"queue":410,"season":7,"timestamp":1467141468874,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2733059302,"champion":53,"queue":410,"season":7,"timestamp":1467136048154,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2732695073,"champion":53,"queue":410,"season":7,"timestamp":1467116794571,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2732681089,"champion":53,"queue":410,"season":7,"timestamp":1467115191485,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2731880136,"champion":53,"queue":410,"season":7,"timestamp":1467063955940,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2731872169,"champion":42,"queue":410,"season":7,"timestamp":1467061630890,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2731770815,"champion":53,"queue":410,"season":7,"timestamp":1467058611934,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2731631280,"champion":80,"queue":410,"season":7,"timestamp":1467053275470,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2731582547,"champion":114,"queue":410,"season":7,"timestamp":1467051048277,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2731514617,"champion":64,"queue":410,"season":7,"timestamp":1467048627863,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2731130141,"champion":64,"queue":410,"season":7,"timestamp":1467031110179,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2731123928,"champion":9,"queue":410,"season":7,"timestamp":1467028671281,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2731047629,"champion":64,"queue":410,"season":7,"timestamp":1467025750953,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2730688264,"champion":114,"queue":410,"season":7,"timestamp":1466978145930,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2730638162,"champion":114,"queue":410,"season":7,"timestamp":1466975203669,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2730568496,"champion":114,"queue":410,"season":7,"timestamp":1466972408755,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2730561183,"champion":114,"queue":410,"season":7,"timestamp":1466970403943,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2730129241,"champion":122,"queue":410,"season":7,"timestamp":1466967160532,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2730018729,"champion":53,"queue":410,"season":7,"timestamp":1466964307807,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2730002563,"champion":53,"queue":410,"season":7,"timestamp":1466962375049,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2729931286,"champion":24,"queue":410,"season":7,"timestamp":1466958938022,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2729864377,"champion":53,"queue":410,"season":7,"timestamp":1466956756640,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2729261297,"champion":53,"queue":410,"season":7,"timestamp":1466904142654,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2729178175,"champion":53,"queue":410,"season":7,"timestamp":1466901190790,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2729173640,"champion":114,"queue":410,"season":7,"timestamp":1466898465473,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2729125472,"champion":114,"queue":410,"season":7,"timestamp":1466895270859,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2729058335,"champion":24,"queue":410,"season":7,"timestamp":1466892458045,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2729062262,"champion":157,"queue":410,"season":7,"timestamp":1466890665235,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2728845120,"champion":103,"queue":410,"season":7,"timestamp":1466881392490,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2728634533,"champion":8,"queue":410,"season":7,"timestamp":1466874782405,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2728316498,"champion":81,"queue":410,"season":7,"timestamp":1466872193136,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2728313615,"champion":238,"queue":410,"season":7,"timestamp":1466871262348,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2728224969,"champion":64,"queue":410,"season":7,"timestamp":1466868408547,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2728155125,"champion":254,"queue":410,"season":7,"timestamp":1466865509857,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2728078111,"champion":64,"queue":410,"season":7,"timestamp":1466863277855,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2728104001,"champion":64,"queue":410,"season":7,"timestamp":1466862277595,"role":"NONE","lane":"MID"},{"platformId":"EUW1","gameId":2728016979,"champion":53,"queue":410,"season":7,"timestamp":1466859975705,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2727958940,"champion":53,"queue":410,"season":7,"timestamp":1466857434223,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2727960769,"champion":114,"queue":410,"season":7,"timestamp":1466854776152,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2727826541,"champion":114,"queue":410,"season":7,"timestamp":1466848519888,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2727670998,"champion":64,"queue":410,"season":7,"timestamp":1466814908949,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2727587058,"champion":33,"queue":410,"season":7,"timestamp":1466811937367,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2727570844,"champion":114,"queue":410,"season":7,"timestamp":1466809025146,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2727470418,"champion":157,"queue":410,"season":7,"timestamp":1466805465438,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2727253862,"champion":64,"queue":410,"season":7,"timestamp":1466794640368,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2727203837,"champion":114,"queue":410,"season":7,"timestamp":1466791713535,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2726389070,"champion":64,"queue":410,"season":7,"timestamp":1466772967971,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2726180688,"champion":25,"queue":410,"season":7,"timestamp":1466747187980,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2726119895,"champion":114,"queue":410,"season":7,"timestamp":1466744471073,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2726128975,"champion":114,"queue":410,"season":7,"timestamp":1466741737476,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2726128062,"champion":114,"queue":410,"season":7,"timestamp":1466738989958,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2726126988,"champion":64,"queue":410,"season":7,"timestamp":1466736491992,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2725990705,"champion":114,"queue":410,"season":7,"timestamp":1466718617381,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2725934391,"champion":412,"queue":410,"season":7,"timestamp":1466716659195,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2725760536,"champion":15,"queue":410,"season":7,"timestamp":1466707138023,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2725693895,"champion":24,"queue":410,"season":7,"timestamp":1466705218766,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2725618451,"champion":157,"queue":410,"season":7,"timestamp":1466703413452,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2725589493,"champion":122,"queue":410,"season":7,"timestamp":1466700881069,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2725528943,"champion":412,"queue":410,"season":7,"timestamp":1466697588977,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2725512064,"champion":157,"queue":410,"season":7,"timestamp":1466695216320,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2724673147,"champion":122,"queue":410,"season":7,"timestamp":1466650341536,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2724680986,"champion":122,"queue":410,"season":7,"timestamp":1466647036008,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2724619999,"champion":157,"queue":410,"season":7,"timestamp":1466645291435,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2724626907,"champion":40,"queue":410,"season":7,"timestamp":1466642425301,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2724613533,"champion":157,"queue":410,"season":7,"timestamp":1466639806694,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2724588747,"champion":53,"queue":410,"season":7,"timestamp":1466637376139,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2724573595,"champion":412,"queue":410,"season":7,"timestamp":1466634965958,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2724497448,"champion":53,"queue":410,"season":7,"timestamp":1466632664028,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2724510643,"champion":51,"queue":410,"season":7,"timestamp":1466630687380,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2724145469,"champion":412,"queue":410,"season":7,"timestamp":1466615059434,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2724077007,"champion":45,"queue":410,"season":7,"timestamp":1466612353115,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2724012864,"champion":412,"queue":410,"season":7,"timestamp":1466608031052,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2723943778,"champion":45,"queue":410,"season":7,"timestamp":1466605243441,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2723894152,"champion":412,"queue":410,"season":7,"timestamp":1466602403479,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2723196113,"champion":412,"queue":410,"season":7,"timestamp":1466554980541,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2723173039,"champion":81,"queue":410,"season":7,"timestamp":1466552260874,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2723127779,"champion":51,"queue":410,"season":7,"timestamp":1466549938564,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2723111909,"champion":15,"queue":410,"season":7,"timestamp":1466547439279,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2722930130,"champion":15,"queue":410,"season":7,"timestamp":1466543528665,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2722911217,"champion":122,"queue":410,"season":7,"timestamp":1466540612493,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2722672075,"champion":222,"queue":410,"season":7,"timestamp":1466538075626,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2722440439,"champion":29,"queue":410,"season":7,"timestamp":1466534902624,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2722370588,"champion":122,"queue":410,"season":7,"timestamp":1466529232139,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721739409,"champion":122,"queue":410,"season":7,"timestamp":1466478124215,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721738409,"champion":122,"queue":410,"season":7,"timestamp":1466475959128,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721727114,"champion":80,"queue":410,"season":7,"timestamp":1466472951141,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2721725932,"champion":122,"queue":410,"season":7,"timestamp":1466471407134,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721730673,"champion":15,"queue":410,"season":7,"timestamp":1466466989676,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2721687509,"champion":157,"queue":410,"season":7,"timestamp":1466465078542,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721674474,"champion":80,"queue":410,"season":7,"timestamp":1466463357919,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721671445,"champion":254,"queue":410,"season":7,"timestamp":1466461985531,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2721603897,"champion":10,"queue":410,"season":7,"timestamp":1466459095742,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721456733,"champion":69,"queue":410,"season":7,"timestamp":1466453831247,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721368572,"champion":80,"queue":410,"season":7,"timestamp":1466451230421,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2721193359,"champion":122,"queue":410,"season":7,"timestamp":1466447244351,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2720883355,"champion":55,"queue":410,"season":7,"timestamp":1466444376198,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2720824647,"champion":114,"queue":410,"season":7,"timestamp":1466441804396,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2720517672,"champion":157,"queue":410,"season":7,"timestamp":1466429906902,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2720460250,"champion":69,"queue":410,"season":7,"timestamp":1466427241241,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2720422697,"champion":268,"queue":410,"season":7,"timestamp":1466423738836,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2720130596,"champion":64,"queue":410,"season":7,"timestamp":1466376496404,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2720075004,"champion":114,"queue":410,"season":7,"timestamp":1466374064981,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2719697667,"champion":53,"queue":410,"season":7,"timestamp":1466358945583,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2719629008,"champion":114,"queue":410,"season":7,"timestamp":1466356382841,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2719519505,"champion":8,"queue":410,"season":7,"timestamp":1466353706018,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2719501290,"champion":64,"queue":410,"season":7,"timestamp":1466351422573,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2719293170,"champion":238,"queue":410,"season":7,"timestamp":1466349215295,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2718957197,"champion":114,"queue":410,"season":7,"timestamp":1466344819631,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2718866580,"champion":114,"queue":410,"season":7,"timestamp":1466341701997,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2718828525,"champion":114,"queue":410,"season":7,"timestamp":1466339380486,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2718792879,"champion":114,"queue":410,"season":7,"timestamp":1466337154159,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2718660242,"champion":114,"queue":410,"season":7,"timestamp":1466331836232,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2718654629,"champion":114,"queue":410,"season":7,"timestamp":1466328878021,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2718439755,"champion":81,"queue":410,"season":7,"timestamp":1466294938747,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2718415630,"champion":35,"queue":410,"season":7,"timestamp":1466292414571,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2718360903,"champion":53,"queue":410,"season":7,"timestamp":1466286798974,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2718263195,"champion":53,"queue":410,"season":7,"timestamp":1466284119131,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2718195522,"champion":114,"queue":410,"season":7,"timestamp":1466281656238,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2718100853,"champion":53,"queue":410,"season":7,"timestamp":1466276672152,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2718012242,"champion":53,"queue":410,"season":7,"timestamp":1466273781425,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2717944452,"champion":53,"queue":410,"season":7,"timestamp":1466271174245,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2717878469,"champion":53,"queue":410,"season":7,"timestamp":1466269114357,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2717873360,"champion":157,"queue":410,"season":7,"timestamp":1466267307750,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2717794153,"champion":157,"queue":410,"season":7,"timestamp":1466264455337,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2717276548,"champion":64,"queue":410,"season":7,"timestamp":1466258846025,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2717205854,"champion":32,"queue":410,"season":7,"timestamp":1466255679625,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2716446634,"champion":114,"queue":410,"season":7,"timestamp":1466194810998,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2716378290,"champion":114,"queue":410,"season":7,"timestamp":1466192231373,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2716207042,"champion":114,"queue":410,"season":7,"timestamp":1466184796178,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2715379211,"champion":11,"queue":410,"season":7,"timestamp":1466166482911,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2715373371,"champion":64,"queue":410,"season":7,"timestamp":1466163415802,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2715005579,"champion":64,"queue":410,"season":7,"timestamp":1466111871363,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2714957681,"champion":64,"queue":410,"season":7,"timestamp":1466109463068,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2714887915,"champion":64,"queue":410,"season":7,"timestamp":1466106376806,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2714769344,"champion":64,"queue":410,"season":7,"timestamp":1466101011942,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2714752964,"champion":114,"queue":410,"season":7,"timestamp":1466099097714,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2714156880,"champion":51,"queue":410,"season":7,"timestamp":1466077925406,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2713683379,"champion":114,"queue":410,"season":7,"timestamp":1466031483928,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2713646091,"champion":8,"queue":410,"season":7,"timestamp":1466028471291,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2713586763,"champion":9,"queue":410,"season":7,"timestamp":1466025347419,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2713529252,"champion":64,"queue":410,"season":7,"timestamp":1466022948358,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2713530931,"champion":64,"queue":410,"season":7,"timestamp":1466020600440,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2713442171,"champion":114,"queue":410,"season":7,"timestamp":1466018116753,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2713384422,"champion":114,"queue":410,"season":7,"timestamp":1466016089029,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2713325268,"champion":51,"queue":410,"season":7,"timestamp":1466013676139,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2712925822,"champion":81,"queue":410,"season":7,"timestamp":1465992360187,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2711974619,"champion":81,"queue":410,"season":7,"timestamp":1465942024348,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2711181565,"champion":81,"queue":410,"season":7,"timestamp":1465908502546,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2711124410,"champion":122,"queue":410,"season":7,"timestamp":1465905691167,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2710586978,"champion":81,"queue":410,"season":7,"timestamp":1465854942324,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2710389712,"champion":114,"queue":410,"season":7,"timestamp":1465852386700,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2710211374,"champion":80,"queue":410,"season":7,"timestamp":1465844607334,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2710143604,"champion":114,"queue":410,"season":7,"timestamp":1465842629884,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2709699969,"champion":114,"queue":410,"season":7,"timestamp":1465822389929,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2709675984,"champion":122,"queue":410,"season":7,"timestamp":1465820463246,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2709619094,"champion":64,"queue":410,"season":7,"timestamp":1465817721062,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2709313146,"champion":114,"queue":410,"season":7,"timestamp":1465766812206,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2709147456,"champion":41,"queue":410,"season":7,"timestamp":1465761502609,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2708997498,"champion":114,"queue":410,"season":7,"timestamp":1465758641725,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2708631256,"champion":96,"queue":410,"season":7,"timestamp":1465751805856,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2708507486,"champion":412,"queue":410,"season":7,"timestamp":1465748273733,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2708437315,"champion":105,"queue":410,"season":7,"timestamp":1465745597209,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2708015775,"champion":24,"queue":410,"season":7,"timestamp":1465725703420,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2708012109,"champion":84,"queue":410,"season":7,"timestamp":1465723997826,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2707781313,"champion":33,"queue":410,"season":7,"timestamp":1465687636318,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2707722728,"champion":64,"queue":410,"season":7,"timestamp":1465684291667,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2707675497,"champion":238,"queue":410,"season":7,"timestamp":1465682298704,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2707364892,"champion":114,"queue":410,"season":7,"timestamp":1465673352298,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2707116071,"champion":114,"queue":410,"season":7,"timestamp":1465670729773,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2706985452,"champion":103,"queue":410,"season":7,"timestamp":1465667760816,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2706936939,"champion":122,"queue":410,"season":7,"timestamp":1465665095740,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2706547616,"champion":81,"queue":410,"season":7,"timestamp":1465648589113,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2706487701,"champion":114,"queue":410,"season":7,"timestamp":1465645395444,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2706396011,"champion":24,"queue":410,"season":7,"timestamp":1465640743695,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2706391001,"champion":114,"queue":410,"season":7,"timestamp":1465638557726,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2706343898,"champion":114,"queue":410,"season":7,"timestamp":1465634971822,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2706129644,"champion":114,"queue":410,"season":7,"timestamp":1465601538668,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2706089392,"champion":114,"queue":410,"season":7,"timestamp":1465597923420,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2706043289,"champion":114,"queue":410,"season":7,"timestamp":1465595486774,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2705696136,"champion":114,"queue":410,"season":7,"timestamp":1465587957150,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2705449532,"champion":114,"queue":410,"season":7,"timestamp":1465585324792,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2705045317,"champion":114,"queue":410,"season":7,"timestamp":1465565504007,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2704959177,"champion":114,"queue":410,"season":7,"timestamp":1465562913149,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2704972294,"champion":114,"queue":410,"season":7,"timestamp":1465560681731,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2704593308,"champion":80,"queue":410,"season":7,"timestamp":1465508069352,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2704513347,"champion":114,"queue":410,"season":7,"timestamp":1465504961054,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2704305601,"champion":59,"queue":410,"season":7,"timestamp":1465498089815,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2704076057,"champion":114,"queue":410,"season":7,"timestamp":1465495566005,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2703888307,"champion":114,"queue":410,"season":7,"timestamp":1465493461693,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2703863304,"champion":114,"queue":410,"season":7,"timestamp":1465491766950,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2703684032,"champion":157,"queue":410,"season":7,"timestamp":1465483465811,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2703615499,"champion":114,"queue":410,"season":7,"timestamp":1465480683957,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2703555220,"champion":114,"queue":410,"season":7,"timestamp":1465477339168,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2703488360,"champion":8,"queue":410,"season":7,"timestamp":1465474562508,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2703503968,"champion":114,"queue":410,"season":7,"timestamp":1465472853584,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2703119939,"champion":64,"queue":410,"season":7,"timestamp":1465421900491,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2703059788,"champion":8,"queue":410,"season":7,"timestamp":1465418868066,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2703008116,"champion":238,"queue":410,"season":7,"timestamp":1465415840117,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2702948087,"champion":114,"queue":410,"season":7,"timestamp":1465413423826,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2702905158,"champion":114,"queue":410,"season":7,"timestamp":1465410477923,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2702159153,"champion":114,"queue":410,"season":7,"timestamp":1465395147334,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2701735367,"champion":157,"queue":410,"season":7,"timestamp":1465338005160,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2701676553,"champion":23,"queue":410,"season":7,"timestamp":1465334874035,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2701617736,"champion":114,"queue":410,"season":7,"timestamp":1465332365654,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2701579218,"champion":114,"queue":410,"season":7,"timestamp":1465330216726,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2701321618,"champion":114,"queue":410,"season":7,"timestamp":1465318514220,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2701251522,"champion":114,"queue":410,"season":7,"timestamp":1465315704835,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2701142788,"champion":114,"queue":410,"season":7,"timestamp":1465313314476,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2700844559,"champion":114,"queue":410,"season":7,"timestamp":1465310944391,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2700707575,"champion":412,"queue":410,"season":7,"timestamp":1465308908331,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2700589041,"champion":114,"queue":410,"season":7,"timestamp":1465302539835,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2700601924,"champion":53,"queue":410,"season":7,"timestamp":1465299683367,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2699418053,"champion":53,"queue":410,"season":7,"timestamp":1465218241332,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2699239742,"champion":114,"queue":410,"season":7,"timestamp":1465214970958,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2698846698,"champion":98,"queue":410,"season":7,"timestamp":1465162640065,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2698840764,"champion":114,"queue":410,"season":7,"timestamp":1465160765545,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2698760874,"champion":64,"queue":410,"season":7,"timestamp":1465157902142,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2698612418,"champion":81,"queue":410,"season":7,"timestamp":1465151122231,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2698520971,"champion":53,"queue":410,"season":7,"timestamp":1465148140236,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2698483857,"champion":8,"queue":410,"season":7,"timestamp":1465146415199,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2698277679,"champion":114,"queue":410,"season":7,"timestamp":1465139802235,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2698228200,"champion":64,"queue":410,"season":7,"timestamp":1465137604829,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2698177854,"champion":157,"queue":410,"season":7,"timestamp":1465135154104,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2698053104,"champion":238,"queue":410,"season":7,"timestamp":1465128768818,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2697983268,"champion":114,"queue":410,"season":7,"timestamp":1465125663228,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2696832333,"champion":114,"queue":410,"season":7,"timestamp":1465061633061,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2696782590,"champion":114,"queue":410,"season":7,"timestamp":1465058818858,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2696725327,"champion":114,"queue":410,"season":7,"timestamp":1465056777636,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2696636730,"champion":114,"queue":410,"season":7,"timestamp":1465054274304,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2696596333,"champion":114,"queue":410,"season":7,"timestamp":1465051640589,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2696302416,"champion":8,"queue":410,"season":7,"timestamp":1465038999706,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2695913052,"champion":114,"queue":410,"season":7,"timestamp":1465035444407,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2695747619,"champion":103,"queue":410,"season":7,"timestamp":1465026398364,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2695660654,"champion":238,"queue":410,"season":7,"timestamp":1464997890143,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2695632783,"champion":35,"queue":410,"season":7,"timestamp":1464994621307,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2695485998,"champion":54,"queue":410,"season":7,"timestamp":1464989206617,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2695418461,"champion":64,"queue":410,"season":7,"timestamp":1464987286055,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2695375889,"champion":24,"queue":410,"season":7,"timestamp":1464984366732,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2695247005,"champion":114,"queue":410,"season":7,"timestamp":1464979616745,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2695037833,"champion":114,"queue":410,"season":7,"timestamp":1464970687011,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2694641438,"champion":114,"queue":410,"season":7,"timestamp":1464955055836,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2694325763,"champion":114,"queue":410,"season":7,"timestamp":1464952291165,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2693957831,"champion":69,"queue":410,"season":7,"timestamp":1464900028386,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2693908627,"champion":114,"queue":410,"season":7,"timestamp":1464897622341,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2693778734,"champion":114,"queue":410,"season":7,"timestamp":1464892544442,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2693726809,"champion":67,"queue":410,"season":7,"timestamp":1464889581018,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2693619448,"champion":114,"queue":410,"season":7,"timestamp":1464884869247,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2693612031,"champion":23,"queue":410,"season":7,"timestamp":1464882569033,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2693555904,"champion":114,"queue":410,"season":7,"timestamp":1464880556043,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2693490183,"champion":102,"queue":410,"season":7,"timestamp":1464878643377,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2693491451,"champion":114,"queue":410,"season":7,"timestamp":1464875861855,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2692762735,"champion":114,"queue":410,"season":7,"timestamp":1464823156326,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2692727310,"champion":24,"queue":410,"season":7,"timestamp":1464821201979,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2692659727,"champion":79,"queue":410,"season":7,"timestamp":1464817849234,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2692608636,"champion":114,"queue":410,"season":7,"timestamp":1464814366999,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2692582833,"champion":114,"queue":410,"season":7,"timestamp":1464812365334,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2692522467,"champion":114,"queue":410,"season":7,"timestamp":1464809868309,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2692432406,"champion":114,"queue":410,"season":7,"timestamp":1464805699955,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2692341808,"champion":114,"queue":410,"season":7,"timestamp":1464802922415,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2691999691,"champion":92,"queue":410,"season":7,"timestamp":1464799773316,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2691848266,"champion":64,"queue":410,"season":7,"timestamp":1464796807956,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2691734608,"champion":80,"queue":410,"season":7,"timestamp":1464792782496,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2691572938,"champion":114,"queue":410,"season":7,"timestamp":1464783819912,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2691507601,"champion":114,"queue":410,"season":7,"timestamp":1464781367403,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2691469224,"champion":64,"queue":410,"season":7,"timestamp":1464777975862,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2691465034,"champion":114,"queue":410,"season":7,"timestamp":1464775396318,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2691220016,"champion":53,"queue":410,"season":7,"timestamp":1464732122693,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2691159962,"champion":114,"queue":410,"season":7,"timestamp":1464728802587,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2691070810,"champion":4,"queue":410,"season":7,"timestamp":1464723724390,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2690531777,"champion":33,"queue":410,"season":7,"timestamp":1464709670432,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2690350707,"champion":79,"queue":410,"season":7,"timestamp":1464706492919,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2690261724,"champion":114,"queue":410,"season":7,"timestamp":1464703876560,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2690193522,"champion":114,"queue":410,"season":7,"timestamp":1464701273803,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2690117515,"champion":11,"queue":410,"season":7,"timestamp":1464698561037,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2690140911,"champion":104,"queue":410,"season":7,"timestamp":1464696410275,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2689818365,"champion":91,"queue":410,"season":7,"timestamp":1464647731739,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2689804472,"champion":64,"queue":410,"season":7,"timestamp":1464645800759,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2689762683,"champion":59,"queue":410,"season":7,"timestamp":1464642412715,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2689703399,"champion":412,"queue":410,"season":7,"timestamp":1464639679541,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2689651397,"champion":114,"queue":410,"season":7,"timestamp":1464636945909,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2689397794,"champion":92,"queue":410,"season":7,"timestamp":1464628962216,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2689334448,"champion":157,"queue":410,"season":7,"timestamp":1464625558250,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2689276026,"champion":114,"queue":410,"season":7,"timestamp":1464623480066,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2689205864,"champion":80,"queue":410,"season":7,"timestamp":1464620798497,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2688950124,"champion":102,"queue":410,"season":7,"timestamp":1464616081816,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2688931485,"champion":81,"queue":410,"season":7,"timestamp":1464612928569,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2688752365,"champion":53,"queue":410,"season":7,"timestamp":1464608902717,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2688302657,"champion":114,"queue":410,"season":7,"timestamp":1464554513433,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2688251371,"champion":105,"queue":410,"season":7,"timestamp":1464551563488,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2688205803,"champion":114,"queue":410,"season":7,"timestamp":1464550318204,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2688005694,"champion":59,"queue":410,"season":7,"timestamp":1464543449853,"role":"SOLO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2687946487,"champion":412,"queue":410,"season":7,"timestamp":1464541088788,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2687839569,"champion":64,"queue":410,"season":7,"timestamp":1464537380938,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2687700517,"champion":40,"queue":410,"season":7,"timestamp":1464530939277,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2687586887,"champion":59,"queue":410,"season":7,"timestamp":1464527754417,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2687410342,"champion":412,"queue":410,"season":7,"timestamp":1464523092693,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2687402039,"champion":81,"queue":410,"season":7,"timestamp":1464520449793,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2687282689,"champion":81,"queue":410,"season":7,"timestamp":1464517622337,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2687047495,"champion":81,"queue":410,"season":7,"timestamp":1464514979456,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2687041196,"champion":114,"queue":410,"season":7,"timestamp":1464511766127,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2686676671,"champion":19,"queue":410,"season":7,"timestamp":1464475130797,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2686618244,"champion":76,"queue":410,"season":7,"timestamp":1464472451161,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2686547904,"champion":136,"queue":410,"season":7,"timestamp":1464469367993,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2686487698,"champion":114,"queue":410,"season":7,"timestamp":1464466399420,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2685981532,"champion":5,"queue":410,"season":7,"timestamp":1464443063842,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2685891212,"champion":114,"queue":410,"season":7,"timestamp":1464439968430,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2685707892,"champion":24,"queue":410,"season":7,"timestamp":1464436140817,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2685491867,"champion":64,"queue":410,"season":7,"timestamp":1464430750435,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2685267851,"champion":114,"queue":410,"season":7,"timestamp":1464428449103,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2685121072,"champion":41,"queue":410,"season":7,"timestamp":1464395246226,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2685076619,"champion":32,"queue":410,"season":7,"timestamp":1464392702019,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2685063870,"champion":64,"queue":410,"season":7,"timestamp":1464390765317,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2685007712,"champion":102,"queue":410,"season":7,"timestamp":1464388967198,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2684914658,"champion":114,"queue":410,"season":7,"timestamp":1464384702689,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2684873570,"champion":24,"queue":410,"season":7,"timestamp":1464382388070,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2684785045,"champion":114,"queue":410,"season":7,"timestamp":1464379994098,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2684609264,"champion":114,"queue":410,"season":7,"timestamp":1464374043515,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2684539367,"champion":114,"queue":410,"season":7,"timestamp":1464371227203,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2684319404,"champion":92,"queue":410,"season":7,"timestamp":1464362109587,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2684321874,"champion":64,"queue":410,"season":7,"timestamp":1464360179002,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2684224020,"champion":10,"queue":410,"season":7,"timestamp":1464357249538,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2684174083,"champion":114,"queue":410,"season":7,"timestamp":1464354411134,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2683987934,"champion":24,"queue":410,"season":7,"timestamp":1464351356242,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2683809193,"champion":102,"queue":410,"season":7,"timestamp":1464347408076,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2683803394,"champion":9,"queue":410,"season":7,"timestamp":1464344415244,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2683597569,"champion":114,"queue":410,"season":7,"timestamp":1464339500577,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2683449285,"champion":9,"queue":410,"season":7,"timestamp":1464306561740,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2683454510,"champion":114,"queue":410,"season":7,"timestamp":1464303763825,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2683426801,"champion":9,"queue":410,"season":7,"timestamp":1464300997194,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2683369405,"champion":53,"queue":410,"season":7,"timestamp":1464298411094,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2683310419,"champion":114,"queue":410,"season":7,"timestamp":1464295775252,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2683282372,"champion":114,"queue":410,"season":7,"timestamp":1464293588486,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2683183224,"champion":412,"queue":410,"season":7,"timestamp":1464289523034,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2683113172,"champion":92,"queue":410,"season":7,"timestamp":1464286902226,"role":"SOLO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2683000370,"champion":114,"queue":410,"season":7,"timestamp":1464283618402,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2682937105,"champion":114,"queue":410,"season":7,"timestamp":1464280118835,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2682895113,"champion":53,"queue":410,"season":7,"timestamp":1464277259789,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2682669763,"champion":59,"queue":410,"season":7,"timestamp":1464266863019,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2682664008,"champion":238,"queue":410,"season":7,"timestamp":1464264732833,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2682596593,"champion":76,"queue":410,"season":7,"timestamp":1464261147416,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2682591230,"champion":64,"queue":410,"season":7,"timestamp":1464258486605,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2682039875,"champion":53,"queue":410,"season":7,"timestamp":1464217847891,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2682035531,"champion":18,"queue":410,"season":7,"timestamp":1464215871082,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2681948343,"champion":81,"queue":410,"season":7,"timestamp":1464213097293,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2681878990,"champion":114,"queue":410,"season":7,"timestamp":1464210545545,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2681851417,"champion":114,"queue":410,"season":7,"timestamp":1464208294194,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2681709365,"champion":114,"queue":410,"season":7,"timestamp":1464203425496,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2681700977,"champion":114,"queue":410,"season":7,"timestamp":1464201485369,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2681435678,"champion":59,"queue":410,"season":7,"timestamp":1464192011236,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2681377951,"champion":59,"queue":410,"season":7,"timestamp":1464189877717,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2681337305,"champion":114,"queue":410,"season":7,"timestamp":1464187220378,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2681330494,"champion":114,"queue":410,"season":7,"timestamp":1464185301520,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2681284600,"champion":114,"queue":410,"season":7,"timestamp":1464183559377,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2680891703,"champion":41,"queue":410,"season":7,"timestamp":1464127212847,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2680767205,"champion":25,"queue":410,"season":7,"timestamp":1464125683925,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2680579440,"champion":9,"queue":410,"season":7,"timestamp":1464123612074,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2680395751,"champion":28,"queue":410,"season":7,"timestamp":1464120123223,"role":"DUO_SUPPORT","lane":"TOP"},{"platformId":"EUW1","gameId":2680305762,"champion":64,"queue":410,"season":7,"timestamp":1464117675125,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2679843153,"champion":80,"queue":410,"season":7,"timestamp":1464096092355,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2679786938,"champion":92,"queue":410,"season":7,"timestamp":1464093321443,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2679733662,"champion":114,"queue":410,"season":7,"timestamp":1464087090643,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2679730709,"champion":114,"queue":410,"season":7,"timestamp":1464085164844,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2679678714,"champion":114,"queue":410,"season":7,"timestamp":1464083044402,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2679683829,"champion":11,"queue":410,"season":7,"timestamp":1464079870721,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2679546697,"champion":114,"queue":410,"season":7,"timestamp":1464045962384,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2679543479,"champion":53,"queue":410,"season":7,"timestamp":1464044047434,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2679521461,"champion":76,"queue":410,"season":7,"timestamp":1464042277190,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2679493983,"champion":9,"queue":410,"season":7,"timestamp":1464039953293,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2679428280,"champion":64,"queue":410,"season":7,"timestamp":1464037845487,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2679366906,"champion":157,"queue":410,"season":7,"timestamp":1464034898580,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2679160157,"champion":157,"queue":410,"season":7,"timestamp":1464031031012,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678898448,"champion":102,"queue":410,"season":7,"timestamp":1464028644624,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2678796703,"champion":24,"queue":410,"season":7,"timestamp":1464026183770,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678727077,"champion":8,"queue":410,"season":7,"timestamp":1464023908911,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678669078,"champion":114,"queue":410,"season":7,"timestamp":1464021929514,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678599712,"champion":114,"queue":410,"season":7,"timestamp":1464019376090,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678558606,"champion":114,"queue":410,"season":7,"timestamp":1464016537733,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678490176,"champion":114,"queue":410,"season":7,"timestamp":1464013983864,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678490791,"champion":114,"queue":410,"season":7,"timestamp":1464011195666,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678424253,"champion":76,"queue":410,"season":7,"timestamp":1464008797646,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2678387449,"champion":24,"queue":410,"season":7,"timestamp":1464006290504,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2678307317,"champion":114,"queue":410,"season":7,"timestamp":1464000591999,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678313059,"champion":114,"queue":410,"season":7,"timestamp":1463997785730,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2678057270,"champion":53,"queue":410,"season":7,"timestamp":1463956363502,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2678043940,"champion":114,"queue":410,"season":7,"timestamp":1463954440854,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2677968327,"champion":114,"queue":410,"season":7,"timestamp":1463952131609,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2677952782,"champion":114,"queue":410,"season":7,"timestamp":1463949705820,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2677754329,"champion":114,"queue":410,"season":7,"timestamp":1463943835109,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2677642437,"champion":114,"queue":410,"season":7,"timestamp":1463940256318,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2674658275,"champion":114,"queue":410,"season":7,"timestamp":1463839289613,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2674662512,"champion":114,"queue":410,"season":7,"timestamp":1463837431891,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2674544499,"champion":64,"queue":410,"season":7,"timestamp":1463834165198,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2674435858,"champion":114,"queue":410,"season":7,"timestamp":1463830527421,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2673496290,"champion":157,"queue":410,"season":7,"timestamp":1463780831586,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2673357844,"champion":35,"queue":410,"season":7,"timestamp":1463777878316,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2673269941,"champion":114,"queue":410,"season":7,"timestamp":1463775660126,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2673159630,"champion":114,"queue":410,"season":7,"timestamp":1463772281906,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2672654747,"champion":92,"queue":410,"season":7,"timestamp":1463754447307,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2672525401,"champion":114,"queue":410,"season":7,"timestamp":1463750059983,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2672510793,"champion":114,"queue":410,"season":7,"timestamp":1463747266584,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671959829,"champion":114,"queue":410,"season":7,"timestamp":1463733237289,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671947892,"champion":114,"queue":410,"season":7,"timestamp":1463730526636,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671965341,"champion":114,"queue":410,"season":7,"timestamp":1463727688133,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671853321,"champion":24,"queue":410,"season":7,"timestamp":1463701301929,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2671829586,"champion":114,"queue":410,"season":7,"timestamp":1463699562812,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671801161,"champion":64,"queue":410,"season":7,"timestamp":1463695513623,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2671732817,"champion":114,"queue":410,"season":7,"timestamp":1463692706388,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671692304,"champion":114,"queue":410,"season":7,"timestamp":1463690060128,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671527816,"champion":114,"queue":410,"season":7,"timestamp":1463684421420,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671463449,"champion":114,"queue":410,"season":7,"timestamp":1463681102390,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671337543,"champion":11,"queue":410,"season":7,"timestamp":1463677182555,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2671280219,"champion":64,"queue":410,"season":7,"timestamp":1463675329630,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2671261138,"champion":114,"queue":410,"season":7,"timestamp":1463672874632,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671156574,"champion":114,"queue":410,"season":7,"timestamp":1463668820722,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2671092738,"champion":76,"queue":410,"season":7,"timestamp":1463664504214,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2671065248,"champion":76,"queue":410,"season":7,"timestamp":1463662047095,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2670999678,"champion":1,"queue":410,"season":7,"timestamp":1463659661420,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2670992815,"champion":157,"queue":410,"season":7,"timestamp":1463656124911,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2670949338,"champion":67,"queue":410,"season":7,"timestamp":1463654105842,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2670340047,"champion":122,"queue":410,"season":7,"timestamp":1463608146343,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2670331432,"champion":67,"queue":410,"season":7,"timestamp":1463605448335,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2670197987,"champion":64,"queue":410,"season":7,"timestamp":1463601791231,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2670088805,"champion":64,"queue":410,"season":7,"timestamp":1463597420468,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2670027059,"champion":64,"queue":410,"season":7,"timestamp":1463594662811,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2669966800,"champion":18,"queue":410,"season":7,"timestamp":1463592174777,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2669925100,"champion":64,"queue":410,"season":7,"timestamp":1463589168530,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2669696910,"champion":64,"queue":410,"season":7,"timestamp":1463578613063,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2669640064,"champion":8,"queue":410,"season":7,"timestamp":1463576396232,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2669633752,"champion":81,"queue":410,"season":7,"timestamp":1463573940041,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2669588541,"champion":64,"queue":410,"season":7,"timestamp":1463571577715,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2669565529,"champion":64,"queue":410,"season":7,"timestamp":1463569895665,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2668976155,"champion":64,"queue":410,"season":7,"timestamp":1463524663395,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2668940048,"champion":64,"queue":410,"season":7,"timestamp":1463522251724,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2668869337,"champion":8,"queue":410,"season":7,"timestamp":1463518919893,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2668017646,"champion":114,"queue":410,"season":7,"timestamp":1463498534323,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2667926506,"champion":9,"queue":410,"season":7,"timestamp":1463492546039,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2667838890,"champion":114,"queue":410,"season":7,"timestamp":1463489309408,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2667833431,"champion":64,"queue":410,"season":7,"timestamp":1463486982738,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2667793450,"champion":64,"queue":410,"season":7,"timestamp":1463482139186,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2667781223,"champion":238,"queue":410,"season":7,"timestamp":1463480427104,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2667677329,"champion":64,"queue":410,"season":7,"timestamp":1463468021930,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2667541935,"champion":102,"queue":410,"season":7,"timestamp":1463435425741,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2667491230,"champion":114,"queue":410,"season":7,"timestamp":1463432181487,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2667332477,"champion":96,"queue":410,"season":7,"timestamp":1463425756306,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2667220300,"champion":67,"queue":410,"season":7,"timestamp":1463423101672,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2666607133,"champion":64,"queue":410,"season":7,"timestamp":1463407448618,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2666466703,"champion":114,"queue":410,"season":7,"timestamp":1463404887829,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2666383239,"champion":122,"queue":410,"season":7,"timestamp":1463401196828,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2666312213,"champion":114,"queue":410,"season":7,"timestamp":1463397655714,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2665821549,"champion":104,"queue":410,"season":7,"timestamp":1463343758945,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2665751466,"champion":114,"queue":410,"season":7,"timestamp":1463341438123,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2665650594,"champion":8,"queue":410,"season":7,"timestamp":1463337034623,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2665562992,"champion":254,"queue":410,"season":7,"timestamp":1463334862130,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2665453566,"champion":67,"queue":410,"season":7,"timestamp":1463330146124,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2665312748,"champion":76,"queue":410,"season":7,"timestamp":1463325237037,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2664950793,"champion":76,"queue":410,"season":7,"timestamp":1463320000748,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2664800925,"champion":9,"queue":410,"season":7,"timestamp":1463317621202,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2664660334,"champion":76,"queue":410,"season":7,"timestamp":1463315174642,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2664635968,"champion":157,"queue":410,"season":7,"timestamp":1463313629384,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2664048978,"champion":53,"queue":410,"season":7,"timestamp":1463258589790,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2663976580,"champion":69,"queue":410,"season":7,"timestamp":1463255542704,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2663791939,"champion":114,"queue":410,"season":7,"timestamp":1463246561200,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2663646011,"champion":69,"queue":410,"season":7,"timestamp":1463242203432,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2663446155,"champion":114,"queue":410,"season":7,"timestamp":1463239368203,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2663269144,"champion":11,"queue":410,"season":7,"timestamp":1463237780915,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2663098413,"champion":114,"queue":410,"season":7,"timestamp":1463234811006,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2663028032,"champion":114,"queue":410,"season":7,"timestamp":1463232178620,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2662893881,"champion":53,"queue":410,"season":7,"timestamp":1463225531984,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2662817166,"champion":76,"queue":410,"season":7,"timestamp":1463222827884,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2662759499,"champion":76,"queue":410,"season":7,"timestamp":1463219869993,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2662528612,"champion":76,"queue":410,"season":7,"timestamp":1463182515094,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2662533689,"champion":76,"queue":410,"season":7,"timestamp":1463180428912,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2662476808,"champion":8,"queue":410,"season":7,"timestamp":1463178042840,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2662355142,"champion":103,"queue":410,"season":7,"timestamp":1463172639430,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2662199942,"champion":114,"queue":410,"season":7,"timestamp":1463168819092,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2662079720,"champion":53,"queue":410,"season":7,"timestamp":1463163974134,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2662071688,"champion":35,"queue":410,"season":7,"timestamp":1463161693935,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2661961560,"champion":96,"queue":410,"season":7,"timestamp":1463158795952,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2661296523,"champion":78,"queue":410,"season":7,"timestamp":1463145462998,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2661290956,"champion":24,"queue":410,"season":7,"timestamp":1463143167096,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2661210933,"champion":114,"queue":410,"season":7,"timestamp":1463137144049,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2661165082,"champion":53,"queue":410,"season":7,"timestamp":1463134114164,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2661088577,"champion":81,"queue":410,"season":7,"timestamp":1463127014702,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2661086888,"champion":114,"queue":410,"season":7,"timestamp":1463124203849,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2661036241,"champion":81,"queue":410,"season":7,"timestamp":1463098567461,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2661012765,"champion":35,"queue":410,"season":7,"timestamp":1463094998018,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2660977186,"champion":81,"queue":410,"season":7,"timestamp":1463092416325,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2660929966,"champion":76,"queue":410,"season":7,"timestamp":1463089394076,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2660434048,"champion":104,"queue":410,"season":7,"timestamp":1463067185023,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2660383913,"champion":114,"queue":410,"season":7,"timestamp":1463064703189,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2660229254,"champion":114,"queue":410,"season":7,"timestamp":1463062737427,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2660222516,"champion":114,"queue":410,"season":7,"timestamp":1463060602189,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2660024461,"champion":24,"queue":410,"season":7,"timestamp":1463057543421,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2659788847,"champion":53,"queue":410,"season":7,"timestamp":1463050269612,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2659766443,"champion":40,"queue":410,"season":7,"timestamp":1463047724704,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2659726440,"champion":81,"queue":410,"season":7,"timestamp":1463039595930,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2659706490,"champion":69,"queue":410,"season":7,"timestamp":1463037395130,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2659653444,"champion":102,"queue":410,"season":7,"timestamp":1463009935704,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2659599232,"champion":20,"queue":410,"season":7,"timestamp":1463007143532,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2659585146,"champion":78,"queue":410,"season":7,"timestamp":1463004420525,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2659520133,"champion":238,"queue":410,"season":7,"timestamp":1463002309138,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2659524082,"champion":24,"queue":410,"season":7,"timestamp":1463000539111,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2659464347,"champion":69,"queue":410,"season":7,"timestamp":1462997863207,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2659372886,"champion":114,"queue":410,"season":7,"timestamp":1462993267272,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2659063382,"champion":7,"queue":410,"season":7,"timestamp":1462980862796,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2658886078,"champion":53,"queue":410,"season":7,"timestamp":1462973211526,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2658834886,"champion":114,"queue":410,"season":7,"timestamp":1462968863610,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2658776782,"champion":114,"queue":410,"season":7,"timestamp":1462965710313,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2658246528,"champion":114,"queue":410,"season":7,"timestamp":1462921790585,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2658158821,"champion":8,"queue":410,"season":7,"timestamp":1462918304288,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2658142650,"champion":114,"queue":410,"season":7,"timestamp":1462915575802,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2658094030,"champion":114,"queue":410,"season":7,"timestamp":1462912954146,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2657929377,"champion":102,"queue":410,"season":7,"timestamp":1462907333211,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2657860073,"champion":114,"queue":410,"season":7,"timestamp":1462905029215,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2657840795,"champion":25,"queue":410,"season":7,"timestamp":1462902671833,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2657551866,"champion":114,"queue":410,"season":7,"timestamp":1462888629370,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2657517484,"champion":114,"queue":410,"season":7,"timestamp":1462887348153,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2657511304,"champion":104,"queue":410,"season":7,"timestamp":1462884972774,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2657465102,"champion":114,"queue":410,"season":7,"timestamp":1462882545183,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2657432161,"champion":114,"queue":410,"season":7,"timestamp":1462880103980,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2657132451,"champion":114,"queue":410,"season":7,"timestamp":1462827205336,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2656919776,"champion":114,"queue":410,"season":7,"timestamp":1462824203907,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2656350830,"champion":114,"queue":410,"season":7,"timestamp":1462808819196,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2656320977,"champion":114,"queue":410,"season":7,"timestamp":1462806340003,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2656256595,"champion":114,"queue":410,"season":7,"timestamp":1462804572225,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2656128713,"champion":8,"queue":410,"season":7,"timestamp":1462797171314,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2656143211,"champion":114,"queue":410,"season":7,"timestamp":1462795303129,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2655893630,"champion":114,"queue":410,"season":7,"timestamp":1462744232002,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2655790314,"champion":114,"queue":410,"season":7,"timestamp":1462742247802,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2655719628,"champion":114,"queue":410,"season":7,"timestamp":1462738528754,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2655651040,"champion":114,"queue":410,"season":7,"timestamp":1462733550027,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2655525818,"champion":114,"queue":410,"season":7,"timestamp":1462729539823,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2655298277,"champion":41,"queue":410,"season":7,"timestamp":1462724211058,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2655027599,"champion":114,"queue":410,"season":7,"timestamp":1462721486778,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2654837752,"champion":114,"queue":410,"season":7,"timestamp":1462718462600,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2654775569,"champion":114,"queue":410,"season":7,"timestamp":1462715229213,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2654291463,"champion":114,"queue":410,"season":7,"timestamp":1462664075429,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2654217201,"champion":18,"queue":410,"season":7,"timestamp":1462662091189,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2654148913,"champion":114,"queue":410,"season":7,"timestamp":1462659109213,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2654172183,"champion":114,"queue":410,"season":7,"timestamp":1462657079987,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2654082416,"champion":114,"queue":410,"season":7,"timestamp":1462654172531,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2654012960,"champion":18,"queue":410,"season":7,"timestamp":1462651423417,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2653746107,"champion":102,"queue":410,"season":7,"timestamp":1462642220676,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2653687897,"champion":96,"queue":410,"season":7,"timestamp":1462639794427,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2653662128,"champion":114,"queue":410,"season":7,"timestamp":1462637561914,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2653330885,"champion":114,"queue":410,"season":7,"timestamp":1462633969194,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2653151848,"champion":114,"queue":410,"season":7,"timestamp":1462630988961,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2653062222,"champion":114,"queue":410,"season":7,"timestamp":1462627753350,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2652406738,"champion":114,"queue":410,"season":7,"timestamp":1462569977290,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2652380982,"champion":114,"queue":410,"season":7,"timestamp":1462567826091,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2652106613,"champion":114,"queue":410,"season":7,"timestamp":1462559835891,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2652038982,"champion":104,"queue":410,"season":7,"timestamp":1462557553294,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2652031779,"champion":114,"queue":410,"season":7,"timestamp":1462554689751,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2651667558,"champion":8,"queue":410,"season":7,"timestamp":1462552819881,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2651662510,"champion":114,"queue":410,"season":7,"timestamp":1462550906284,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2651353083,"champion":114,"queue":410,"season":7,"timestamp":1462542798912,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2651255226,"champion":114,"queue":410,"season":7,"timestamp":1462539219796,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2651176388,"champion":114,"queue":410,"season":7,"timestamp":1462534832340,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2650690623,"champion":114,"queue":410,"season":7,"timestamp":1462477572722,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2650612254,"champion":45,"queue":410,"season":7,"timestamp":1462475424003,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2650571760,"champion":114,"queue":410,"season":7,"timestamp":1462473077141,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2649846939,"champion":114,"queue":410,"season":7,"timestamp":1462457694228,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2649798870,"champion":114,"queue":410,"season":7,"timestamp":1462455314035,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2649772223,"champion":114,"queue":410,"season":7,"timestamp":1462453114008,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2649715579,"champion":114,"queue":410,"season":7,"timestamp":1462450896817,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2649675016,"champion":5,"queue":410,"season":7,"timestamp":1462447047452,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2649344111,"champion":24,"queue":410,"season":7,"timestamp":1462400088422,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2649302888,"champion":11,"queue":410,"season":7,"timestamp":1462397128377,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2648624835,"champion":11,"queue":410,"season":7,"timestamp":1462386200878,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2648433025,"champion":8,"queue":410,"season":7,"timestamp":1462377382234,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2648196070,"champion":8,"queue":410,"season":7,"timestamp":1462365589295,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2648148942,"champion":31,"queue":410,"season":7,"timestamp":1462362407695,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2647464556,"champion":157,"queue":410,"season":7,"timestamp":1462308926614,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2647257290,"champion":29,"queue":410,"season":7,"timestamp":1462300084825,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2647194518,"champion":18,"queue":410,"season":7,"timestamp":1462297007786,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2647144372,"champion":18,"queue":410,"season":7,"timestamp":1462294567055,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2647075240,"champion":157,"queue":410,"season":7,"timestamp":1462292236117,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2646993027,"champion":81,"queue":410,"season":7,"timestamp":1462288808100,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2646797918,"champion":104,"queue":410,"season":7,"timestamp":1462283841196,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2646692167,"champion":53,"queue":410,"season":7,"timestamp":1462278493195,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2646506866,"champion":81,"queue":410,"season":7,"timestamp":1462275987393,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2646512310,"champion":54,"queue":410,"season":7,"timestamp":1462273578734,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2646357773,"champion":114,"queue":410,"season":7,"timestamp":1462269467698,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2646156249,"champion":238,"queue":410,"season":7,"timestamp":1462227073602,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2646108719,"champion":81,"queue":410,"season":7,"timestamp":1462224329519,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2646049267,"champion":76,"queue":410,"season":7,"timestamp":1462221539719,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2645901660,"champion":102,"queue":410,"season":7,"timestamp":1462214828015,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2645820181,"champion":157,"queue":410,"season":7,"timestamp":1462212676132,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2645753851,"champion":114,"queue":410,"season":7,"timestamp":1462208832533,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2645520338,"champion":238,"queue":410,"season":7,"timestamp":1462199898898,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2645521204,"champion":17,"queue":410,"season":7,"timestamp":1462197267479,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2645411074,"champion":81,"queue":410,"season":7,"timestamp":1462189432402,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2645357360,"champion":104,"queue":410,"season":7,"timestamp":1462187408722,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2645352547,"champion":76,"queue":410,"season":7,"timestamp":1462184524097,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2644937179,"champion":76,"queue":410,"season":7,"timestamp":1462140060819,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2644950747,"champion":136,"queue":410,"season":7,"timestamp":1462137773116,"role":"DUO_CARRY","lane":"MID"},{"platformId":"EUW1","gameId":2644775491,"champion":104,"queue":410,"season":7,"timestamp":1462135476990,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2644529820,"champion":31,"queue":410,"season":7,"timestamp":1462131766175,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2644341791,"champion":81,"queue":410,"season":7,"timestamp":1462122860927,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2644250709,"champion":157,"queue":410,"season":7,"timestamp":1462119767711,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2644181583,"champion":114,"queue":410,"season":7,"timestamp":1462117524952,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2644017587,"champion":157,"queue":410,"season":7,"timestamp":1462112056885,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2643947393,"champion":238,"queue":410,"season":7,"timestamp":1462109584263,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2643889243,"champion":24,"queue":410,"season":7,"timestamp":1462107562143,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2643883435,"champion":24,"queue":410,"season":7,"timestamp":1462105967491,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2643823593,"champion":8,"queue":410,"season":7,"timestamp":1462103011425,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2643761882,"champion":114,"queue":410,"season":7,"timestamp":1462098858706,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2643701519,"champion":81,"queue":410,"season":7,"timestamp":1462095132317,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2643424057,"champion":114,"queue":410,"season":7,"timestamp":1462060072836,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2643279231,"champion":23,"queue":410,"season":7,"timestamp":1462057415145,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2643281919,"champion":27,"queue":410,"season":7,"timestamp":1462055261512,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2643094518,"champion":81,"queue":410,"season":7,"timestamp":1462052660165,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2642965437,"champion":81,"queue":410,"season":7,"timestamp":1462050214523,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2642890476,"champion":81,"queue":410,"season":7,"timestamp":1462046729912,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2642666487,"champion":81,"queue":410,"season":7,"timestamp":1462040050085,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2642557298,"champion":81,"queue":410,"season":7,"timestamp":1462034818894,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2642423172,"champion":8,"queue":410,"season":7,"timestamp":1462028407526,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2642290286,"champion":53,"queue":410,"season":7,"timestamp":1462024936221,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2642219903,"champion":24,"queue":410,"season":7,"timestamp":1462022302350,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2642202902,"champion":81,"queue":410,"season":7,"timestamp":1462020270921,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2642155806,"champion":81,"queue":410,"season":7,"timestamp":1462018245700,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2642098575,"champion":81,"queue":410,"season":7,"timestamp":1462015955839,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2642093467,"champion":114,"queue":410,"season":7,"timestamp":1462014178340,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2642012189,"champion":80,"queue":410,"season":7,"timestamp":1462009773234,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2641826040,"champion":114,"queue":410,"season":7,"timestamp":1462006705800,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2641297351,"champion":114,"queue":410,"season":7,"timestamp":1461967400305,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2641249083,"champion":11,"queue":410,"season":7,"timestamp":1461965145192,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2641177701,"champion":11,"queue":410,"season":7,"timestamp":1461962288285,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2640963849,"champion":19,"queue":410,"season":7,"timestamp":1461953586224,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2640878362,"champion":81,"queue":410,"season":7,"timestamp":1461951742723,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2640809543,"champion":53,"queue":410,"season":7,"timestamp":1461949306495,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2640759591,"champion":8,"queue":410,"season":7,"timestamp":1461946342488,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2640329927,"champion":114,"queue":410,"season":7,"timestamp":1461927096304,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2639772827,"champion":24,"queue":410,"season":7,"timestamp":1461878812703,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2639691273,"champion":102,"queue":410,"season":7,"timestamp":1461875464573,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2639513831,"champion":34,"queue":410,"season":7,"timestamp":1461869112138,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2639426230,"champion":53,"queue":410,"season":7,"timestamp":1461865326777,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2639336043,"champion":114,"queue":410,"season":7,"timestamp":1461862578011,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2639305439,"champion":114,"queue":410,"season":7,"timestamp":1461860215342,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2638938207,"champion":114,"queue":410,"season":7,"timestamp":1461840808346,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2638703200,"champion":8,"queue":410,"season":7,"timestamp":1461792026901,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2637921915,"champion":24,"queue":410,"season":7,"timestamp":1461774436200,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2637516729,"champion":114,"queue":410,"season":7,"timestamp":1461753876095,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2637259371,"champion":44,"queue":410,"season":7,"timestamp":1461707399524,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2637271217,"champion":30,"queue":410,"season":7,"timestamp":1461705310552,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2637191522,"champion":11,"queue":410,"season":7,"timestamp":1461702128631,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2636787171,"champion":53,"queue":410,"season":7,"timestamp":1461696535889,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2636656106,"champion":114,"queue":410,"season":7,"timestamp":1461694536889,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2636078800,"champion":25,"queue":410,"season":7,"timestamp":1461668182732,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2635841386,"champion":102,"queue":410,"season":7,"timestamp":1461618855230,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2635775250,"champion":102,"queue":410,"season":7,"timestamp":1461616888449,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2635725568,"champion":102,"queue":410,"season":7,"timestamp":1461614754107,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2635569824,"champion":75,"queue":410,"season":7,"timestamp":1461609369514,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2635166621,"champion":8,"queue":410,"season":7,"timestamp":1461604136491,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2634999479,"champion":114,"queue":410,"season":7,"timestamp":1461602176631,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2634945631,"champion":4,"queue":410,"season":7,"timestamp":1461598702508,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2634894540,"champion":38,"queue":410,"season":7,"timestamp":1461596131636,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2634854409,"champion":81,"queue":410,"season":7,"timestamp":1461593414719,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2634777334,"champion":42,"queue":410,"season":7,"timestamp":1461590593491,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2634738461,"champion":114,"queue":410,"season":7,"timestamp":1461588130996,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2634732440,"champion":114,"queue":410,"season":7,"timestamp":1461585517835,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2634299855,"champion":114,"queue":410,"season":7,"timestamp":1461534792263,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2634283829,"champion":103,"queue":410,"season":7,"timestamp":1461531556028,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2634195477,"champion":81,"queue":410,"season":7,"timestamp":1461528894570,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2634075989,"champion":81,"queue":410,"season":7,"timestamp":1461525597220,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2633959219,"champion":77,"queue":410,"season":7,"timestamp":1461523505330,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2633952207,"champion":28,"queue":410,"season":7,"timestamp":1461521388124,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2633805205,"champion":24,"queue":410,"season":7,"timestamp":1461519126990,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2633329610,"champion":114,"queue":410,"season":7,"timestamp":1461516924049,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2632860474,"champion":114,"queue":410,"season":7,"timestamp":1461501761517,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2632765219,"champion":114,"queue":410,"season":7,"timestamp":1461499910494,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2632620323,"champion":23,"queue":410,"season":7,"timestamp":1461497963749,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2632612291,"champion":114,"queue":410,"season":7,"timestamp":1461494282992,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2632508374,"champion":114,"queue":410,"season":7,"timestamp":1461492190399,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2632381113,"champion":35,"queue":410,"season":7,"timestamp":1461462381977,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2632250276,"champion":114,"queue":410,"season":7,"timestamp":1461459931803,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2632248648,"champion":17,"queue":410,"season":7,"timestamp":1461458186520,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2632242904,"champion":37,"queue":410,"season":7,"timestamp":1461453925746,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2632038686,"champion":37,"queue":410,"season":7,"timestamp":1461451674807,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2632033778,"champion":37,"queue":410,"season":7,"timestamp":1461449416410,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2631655587,"champion":81,"queue":410,"season":7,"timestamp":1461446226711,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2631486475,"champion":24,"queue":410,"season":7,"timestamp":1461443021218,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2631379068,"champion":24,"queue":410,"season":7,"timestamp":1461440756620,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2631235235,"champion":81,"queue":410,"season":7,"timestamp":1461435602075,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2631113395,"champion":81,"queue":410,"season":7,"timestamp":1461430846669,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2630976536,"champion":11,"queue":410,"season":7,"timestamp":1461428242952,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2630840434,"champion":11,"queue":410,"season":7,"timestamp":1461425906902,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2630824514,"champion":81,"queue":410,"season":7,"timestamp":1461423600242,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2630687513,"champion":29,"queue":410,"season":7,"timestamp":1461421109106,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2630680919,"champion":268,"queue":410,"season":7,"timestamp":1461418631937,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2630434182,"champion":18,"queue":410,"season":7,"timestamp":1461416076520,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2630038556,"champion":53,"queue":410,"season":7,"timestamp":1461413602851,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2630035143,"champion":114,"queue":410,"season":7,"timestamp":1461411982290,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2630012149,"champion":24,"queue":410,"season":7,"timestamp":1461410247609,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2629253948,"champion":1,"queue":410,"season":7,"timestamp":1461359366243,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2629076735,"champion":114,"queue":410,"season":7,"timestamp":1461356576057,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2628324115,"champion":114,"queue":410,"season":7,"timestamp":1461346296403,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2628139755,"champion":114,"queue":410,"season":7,"timestamp":1461344089614,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2627927874,"champion":114,"queue":410,"season":7,"timestamp":1461337924092,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2627924144,"champion":114,"queue":410,"season":7,"timestamp":1461335862463,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2627700386,"champion":114,"queue":410,"season":7,"timestamp":1461333439720,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2627617725,"champion":114,"queue":410,"season":7,"timestamp":1461324765819,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2626918149,"champion":114,"queue":410,"season":7,"timestamp":1461274257933,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2626859532,"champion":114,"queue":410,"season":7,"timestamp":1461271964392,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2626816947,"champion":114,"queue":410,"season":7,"timestamp":1461269126615,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2626140631,"champion":24,"queue":410,"season":7,"timestamp":1461234224189,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2625062771,"champion":114,"queue":410,"season":7,"timestamp":1461170478310,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2624685968,"champion":114,"queue":410,"season":7,"timestamp":1461149250063,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2623824990,"champion":53,"queue":410,"season":7,"timestamp":1461103060716,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2623756184,"champion":24,"queue":410,"season":7,"timestamp":1461100300505,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2623688674,"champion":114,"queue":410,"season":7,"timestamp":1461098339777,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2623530033,"champion":114,"queue":410,"season":7,"timestamp":1461092139113,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2622928760,"champion":114,"queue":410,"season":7,"timestamp":1461062924939,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2622357988,"champion":114,"queue":410,"season":7,"timestamp":1461016088072,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2622280139,"champion":114,"queue":410,"season":7,"timestamp":1461013733109,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2622252207,"champion":114,"queue":410,"season":7,"timestamp":1461011737034,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2622056315,"champion":114,"queue":410,"season":7,"timestamp":1461004294085,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2621984365,"champion":22,"queue":410,"season":7,"timestamp":1461001753990,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2621531910,"champion":15,"queue":410,"season":7,"timestamp":1460977028338,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2621271215,"champion":91,"queue":410,"season":7,"timestamp":1460929004050,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2621182243,"champion":4,"queue":410,"season":7,"timestamp":1460926089903,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2621065677,"champion":8,"queue":410,"season":7,"timestamp":1460924282469,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2620849624,"champion":7,"queue":410,"season":7,"timestamp":1460922701723,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2620589372,"champion":19,"queue":410,"season":7,"timestamp":1460918066713,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2620265566,"champion":42,"queue":410,"season":7,"timestamp":1460905549927,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2620196687,"champion":8,"queue":410,"season":7,"timestamp":1460903717562,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2620015920,"champion":114,"queue":410,"season":7,"timestamp":1460897050094,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2619974395,"champion":77,"queue":410,"season":7,"timestamp":1460894366985,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2619554009,"champion":31,"queue":410,"season":7,"timestamp":1460848511106,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2619178180,"champion":91,"queue":410,"season":7,"timestamp":1460843330241,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2619060044,"champion":103,"queue":410,"season":7,"timestamp":1460841560699,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2618937408,"champion":223,"queue":410,"season":7,"timestamp":1460838364077,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2618875365,"champion":78,"queue":410,"season":7,"timestamp":1460835545672,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2618763229,"champion":8,"queue":410,"season":7,"timestamp":1460830267598,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2618683398,"champion":11,"queue":410,"season":7,"timestamp":1460827586448,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2618163659,"champion":114,"queue":410,"season":7,"timestamp":1460807232022,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2618106741,"champion":24,"queue":410,"season":7,"timestamp":1460805000401,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2617315782,"champion":24,"queue":410,"season":7,"timestamp":1460757776576,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2617264852,"champion":20,"queue":410,"season":7,"timestamp":1460755379096,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2617191820,"champion":114,"queue":410,"season":7,"timestamp":1460752427957,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2617132421,"champion":114,"queue":410,"season":7,"timestamp":1460750367920,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2617062820,"champion":24,"queue":410,"season":7,"timestamp":1460748196940,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2616937946,"champion":114,"queue":410,"season":7,"timestamp":1460744762048,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2616903142,"champion":114,"queue":410,"season":7,"timestamp":1460743121698,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2616842883,"champion":55,"queue":410,"season":7,"timestamp":1460740628591,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2616193161,"champion":91,"queue":410,"season":7,"timestamp":1460717940935,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2615950134,"champion":8,"queue":410,"season":7,"timestamp":1460715837399,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2615665689,"champion":53,"queue":410,"season":7,"timestamp":1460668746511,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2615625723,"champion":8,"queue":410,"season":7,"timestamp":1460666466523,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2615555462,"champion":8,"queue":410,"season":7,"timestamp":1460663886870,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2614824383,"champion":114,"queue":410,"season":7,"timestamp":1460630366428,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2613324629,"champion":55,"queue":410,"season":7,"timestamp":1460545344208,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2613209859,"champion":35,"queue":410,"season":7,"timestamp":1460542811065,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2612732226,"champion":11,"queue":410,"season":7,"timestamp":1460498940176,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2612674596,"champion":114,"queue":410,"season":7,"timestamp":1460496348328,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2611770780,"champion":91,"queue":410,"season":7,"timestamp":1460456311245,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2611220630,"champion":24,"queue":410,"season":7,"timestamp":1460410323535,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2611150593,"champion":91,"queue":410,"season":7,"timestamp":1460407650445,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2611069495,"champion":74,"queue":410,"season":7,"timestamp":1460405297041,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2610997559,"champion":64,"queue":410,"season":7,"timestamp":1460402820466,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2610362589,"champion":11,"queue":410,"season":7,"timestamp":1460372075088,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2610319712,"champion":114,"queue":410,"season":7,"timestamp":1460370544046,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2609685449,"champion":37,"queue":410,"season":7,"timestamp":1460322936746,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2609468223,"champion":64,"queue":410,"season":7,"timestamp":1460315822954,"role":"DUO_SUPPORT","lane":"MID"},{"platformId":"EUW1","gameId":2609390671,"champion":114,"queue":410,"season":7,"timestamp":1460311980875,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2609260372,"champion":37,"queue":410,"season":7,"timestamp":1460309721204,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2609187987,"champion":37,"queue":410,"season":7,"timestamp":1460306801893,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2609200734,"champion":37,"queue":410,"season":7,"timestamp":1460305120635,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2608081267,"champion":37,"queue":410,"season":7,"timestamp":1460246774170,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2607934625,"champion":64,"queue":410,"season":7,"timestamp":1460243886988,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2607873917,"champion":35,"queue":410,"season":7,"timestamp":1460240280416,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2607801711,"champion":64,"queue":410,"season":7,"timestamp":1460237073853,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2607731073,"champion":64,"queue":410,"season":7,"timestamp":1460234537669,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2607642118,"champion":114,"queue":410,"season":7,"timestamp":1460232197863,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2607518715,"champion":64,"queue":410,"season":7,"timestamp":1460229072738,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2607429168,"champion":114,"queue":410,"season":7,"timestamp":1460226306431,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2605819947,"champion":5,"queue":410,"season":7,"timestamp":1460150187281,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2605750008,"champion":114,"queue":410,"season":7,"timestamp":1460148024931,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2605503796,"champion":24,"queue":410,"season":7,"timestamp":1460139346251,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2605426048,"champion":24,"queue":410,"season":7,"timestamp":1460137255959,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2605348138,"champion":22,"queue":410,"season":7,"timestamp":1460134980374,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2604142640,"champion":28,"queue":410,"season":7,"timestamp":1460064165976,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2604083438,"champion":31,"queue":410,"season":7,"timestamp":1460061814743,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2603685195,"champion":114,"queue":410,"season":7,"timestamp":1460046449472,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2603322984,"champion":8,"queue":410,"season":7,"timestamp":1460027267147,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2602918988,"champion":114,"queue":410,"season":7,"timestamp":1460024594690,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2602669152,"champion":86,"queue":410,"season":7,"timestamp":1459979796394,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2602618988,"champion":18,"queue":410,"season":7,"timestamp":1459976866619,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2602591364,"champion":22,"queue":410,"season":7,"timestamp":1459974861448,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2602215621,"champion":114,"queue":410,"season":7,"timestamp":1459959609487,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2601875168,"champion":53,"queue":410,"season":7,"timestamp":1459940120804,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2600949953,"champion":9,"queue":410,"season":7,"timestamp":1459882975824,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2600823584,"champion":32,"queue":410,"season":7,"timestamp":1459877366566,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2600764427,"champion":42,"queue":410,"season":7,"timestamp":1459875351939,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2600638062,"champion":4,"queue":410,"season":7,"timestamp":1459873226354,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2599938136,"champion":20,"queue":410,"season":7,"timestamp":1459852509556,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2599683802,"champion":32,"queue":410,"season":7,"timestamp":1459806294604,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2599654318,"champion":114,"queue":410,"season":7,"timestamp":1459803977781,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2599568142,"champion":25,"queue":410,"season":7,"timestamp":1459801930953,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2599503967,"champion":35,"queue":410,"season":7,"timestamp":1459798967366,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2598449355,"champion":114,"queue":410,"season":7,"timestamp":1459767747665,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2598204500,"champion":114,"queue":410,"season":7,"timestamp":1459720595251,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2598157313,"champion":53,"queue":410,"season":7,"timestamp":1459718408943,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2598096336,"champion":11,"queue":410,"season":7,"timestamp":1459715780022,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2598037330,"champion":114,"queue":410,"season":7,"timestamp":1459713770974,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2596405930,"champion":53,"queue":410,"season":7,"timestamp":1459634958963,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2595936474,"champion":114,"queue":410,"season":7,"timestamp":1459616978087,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2595587252,"champion":34,"queue":410,"season":7,"timestamp":1459614420407,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2594722028,"champion":37,"queue":410,"season":7,"timestamp":1459549667570,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2594597769,"champion":55,"queue":410,"season":7,"timestamp":1459546404637,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2593361607,"champion":55,"queue":410,"season":7,"timestamp":1459508938873,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2592576439,"champion":114,"queue":410,"season":7,"timestamp":1459458743381,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2592501808,"champion":74,"queue":410,"season":7,"timestamp":1459455698856,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2591678105,"champion":114,"queue":410,"season":7,"timestamp":1459420246691,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2590066276,"champion":114,"queue":410,"season":7,"timestamp":1459336483788,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2588346890,"champion":55,"queue":410,"season":7,"timestamp":1459265821469,"role":"DUO","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2588176639,"champion":25,"queue":410,"season":7,"timestamp":1459258595668,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2588095127,"champion":103,"queue":410,"season":7,"timestamp":1459255291557,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2588066528,"champion":78,"queue":410,"season":7,"timestamp":1459252634155,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2588060890,"champion":114,"queue":410,"season":7,"timestamp":1459250524671,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2587888988,"champion":7,"queue":410,"season":7,"timestamp":1459245137678,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2587865380,"champion":55,"queue":410,"season":7,"timestamp":1459242749759,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2575707579,"champion":53,"queue":410,"season":7,"timestamp":1458683849027,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2575615484,"champion":42,"queue":410,"season":7,"timestamp":1458679340138,"role":"DUO_CARRY","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2575542313,"champion":55,"queue":410,"season":7,"timestamp":1458676755561,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2575364203,"champion":55,"queue":410,"season":7,"timestamp":1458670943037,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2574535417,"champion":55,"queue":410,"season":7,"timestamp":1458646318274,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2572173364,"champion":25,"queue":410,"season":7,"timestamp":1458497525274,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2572078548,"champion":55,"queue":410,"season":7,"timestamp":1458494733856,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2570362555,"champion":55,"queue":410,"season":7,"timestamp":1458411490365,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2567273297,"champion":55,"queue":410,"season":7,"timestamp":1458245144269,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2567192290,"champion":23,"queue":410,"season":7,"timestamp":1458242834280,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2566274644,"champion":114,"queue":410,"season":7,"timestamp":1458213547254,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2566021910,"champion":30,"queue":410,"season":7,"timestamp":1458166970244,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2565952953,"champion":23,"queue":410,"season":7,"timestamp":1458164313564,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2565894307,"champion":55,"queue":410,"season":7,"timestamp":1458162068051,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2564804464,"champion":55,"queue":410,"season":7,"timestamp":1458129486212,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2564781599,"champion":55,"queue":410,"season":7,"timestamp":1458127313856,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2564318616,"champion":114,"queue":410,"season":7,"timestamp":1458073363478,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2564229064,"champion":74,"queue":410,"season":7,"timestamp":1458069647039,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2564173439,"champion":114,"queue":410,"season":7,"timestamp":1458066275651,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2560838856,"champion":29,"queue":410,"season":7,"timestamp":1457877441854,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2560585455,"champion":114,"queue":410,"season":7,"timestamp":1457868969249,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2560405840,"champion":54,"queue":410,"season":7,"timestamp":1457865683286,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2560400567,"champion":53,"queue":410,"season":7,"timestamp":1457863634020,"role":"DUO_SUPPORT","lane":"BOTTOM"},{"platformId":"EUW1","gameId":2559888851,"champion":74,"queue":410,"season":7,"timestamp":1457822999637,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2559490102,"champion":19,"queue":410,"season":7,"timestamp":1457807625370,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2559420568,"champion":55,"queue":410,"season":7,"timestamp":1457803164183,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2559361314,"champion":8,"queue":410,"season":7,"timestamp":1457801167512,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2559290645,"champion":74,"queue":410,"season":7,"timestamp":1457798695596,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2558598965,"champion":8,"queue":410,"season":7,"timestamp":1457787315263,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2558126785,"champion":35,"queue":410,"season":7,"timestamp":1457736404853,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2558063548,"champion":17,"queue":410,"season":7,"timestamp":1457733504745,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2557970351,"champion":41,"queue":410,"season":7,"timestamp":1457730831469,"role":"SOLO","lane":"TOP"},{"platformId":"EUW1","gameId":2557898575,"champion":4,"queue":410,"season":7,"timestamp":1457728427242,"role":"NONE","lane":"JUNGLE"},{"platformId":"EUW1","gameId":2557777644,"champion":55,"queue":410,"season":7,"timestamp":1457723914778,"role":"SOLO","lane":"MID"},{"platformId":"EUW1","gameId":2557728191,"champion":8,"queue":410,"season":7,"timestamp":1457721702712,"role":"SOLO","lane":"TOP"}],"startIndex":0,"endIndex":3700,"totalGames":3700}
@@ -0,0 +1 @@
1
+ {"summonerId":100012,"pages":[{"id":599388,"name":"ad","current":false,"slots":[{"runeSlotId":1,"runeId":5253},{"runeSlotId":2,"runeId":5253},{"runeSlotId":3,"runeId":5253},{"runeSlotId":4,"runeId":5253},{"runeSlotId":5,"runeId":5253},{"runeSlotId":6,"runeId":5253},{"runeSlotId":7,"runeId":5253},{"runeSlotId":8,"runeId":5253},{"runeSlotId":9,"runeId":5253},{"runeSlotId":10,"runeId":5195},{"runeSlotId":11,"runeId":5331},{"runeSlotId":12,"runeId":5331},{"runeSlotId":13,"runeId":5331},{"runeSlotId":14,"runeId":5331},{"runeSlotId":15,"runeId":5331},{"runeSlotId":16,"runeId":5331},{"runeSlotId":17,"runeId":5331},{"runeSlotId":18,"runeId":5331},{"runeSlotId":19,"runeId":5289},{"runeSlotId":20,"runeId":5289},{"runeSlotId":21,"runeId":5289},{"runeSlotId":22,"runeId":5289},{"runeSlotId":23,"runeId":5289},{"runeSlotId":24,"runeId":5289},{"runeSlotId":25,"runeId":5289},{"runeSlotId":26,"runeId":5289},{"runeSlotId":27,"runeId":5289},{"runeSlotId":28,"runeId":5335},{"runeSlotId":29,"runeId":5335},{"runeSlotId":30,"runeId":5335}]},{"id":599389,"name":"ad steel life","current":false,"slots":[{"runeSlotId":1,"runeId":5253},{"runeSlotId":2,"runeId":5253},{"runeSlotId":3,"runeId":5253},{"runeSlotId":4,"runeId":5253},{"runeSlotId":5,"runeId":5253},{"runeSlotId":6,"runeId":5253},{"runeSlotId":7,"runeId":5253},{"runeSlotId":8,"runeId":5253},{"runeSlotId":9,"runeId":5253},{"runeSlotId":10,"runeId":5317},{"runeSlotId":11,"runeId":5317},{"runeSlotId":12,"runeId":5317},{"runeSlotId":13,"runeId":5317},{"runeSlotId":14,"runeId":5317},{"runeSlotId":15,"runeId":5317},{"runeSlotId":16,"runeId":5317},{"runeSlotId":17,"runeId":5317},{"runeSlotId":18,"runeId":5317},{"runeSlotId":19,"runeId":5289},{"runeSlotId":20,"runeId":5289},{"runeSlotId":21,"runeId":5289},{"runeSlotId":22,"runeId":5289},{"runeSlotId":23,"runeId":5289},{"runeSlotId":24,"runeId":5289},{"runeSlotId":25,"runeId":5289},{"runeSlotId":26,"runeId":5289},{"runeSlotId":27,"runeId":5289},{"runeSlotId":28,"runeId":5343},{"runeSlotId":29,"runeId":5343},{"runeSlotId":30,"runeId":5343}]},{"id":3976397,"name":"AP regen mana","current":true,"slots":[{"runeSlotId":1,"runeId":5273},{"runeSlotId":2,"runeId":5273},{"runeSlotId":3,"runeId":5273},{"runeSlotId":4,"runeId":5273},{"runeSlotId":5,"runeId":5273},{"runeSlotId":6,"runeId":5273},{"runeSlotId":7,"runeId":5273},{"runeSlotId":8,"runeId":5273},{"runeSlotId":9,"runeId":5273},{"runeSlotId":10,"runeId":5327},{"runeSlotId":11,"runeId":5327},{"runeSlotId":12,"runeId":5327},{"runeSlotId":13,"runeId":5327},{"runeSlotId":14,"runeId":5327},{"runeSlotId":15,"runeId":5327},{"runeSlotId":16,"runeId":5327},{"runeSlotId":17,"runeId":5327},{"runeSlotId":18,"runeId":5327},{"runeSlotId":19,"runeId":5289},{"runeSlotId":20,"runeId":5289},{"runeSlotId":21,"runeId":5289},{"runeSlotId":22,"runeId":5289},{"runeSlotId":23,"runeId":5289},{"runeSlotId":24,"runeId":5289},{"runeSlotId":25,"runeId":5289},{"runeSlotId":26,"runeId":5289},{"runeSlotId":27,"runeId":5289},{"runeSlotId":28,"runeId":5357},{"runeSlotId":29,"runeId":5357},{"runeSlotId":30,"runeId":5357}]},{"id":23126766,"name":"AP armor","current":false,"slots":[{"runeSlotId":1,"runeId":5273},{"runeSlotId":2,"runeId":5273},{"runeSlotId":3,"runeId":5273},{"runeSlotId":4,"runeId":5273},{"runeSlotId":5,"runeId":5273},{"runeSlotId":6,"runeId":5273},{"runeSlotId":7,"runeId":5273},{"runeSlotId":8,"runeId":5273},{"runeSlotId":9,"runeId":5273},{"runeSlotId":10,"runeId":5317},{"runeSlotId":11,"runeId":5317},{"runeSlotId":12,"runeId":5317},{"runeSlotId":13,"runeId":5317},{"runeSlotId":14,"runeId":5317},{"runeSlotId":15,"runeId":5317},{"runeSlotId":16,"runeId":5317},{"runeSlotId":17,"runeId":5317},{"runeSlotId":18,"runeId":5317},{"runeSlotId":19,"runeId":5289},{"runeSlotId":20,"runeId":5289},{"runeSlotId":21,"runeId":5289},{"runeSlotId":22,"runeId":5289},{"runeSlotId":23,"runeId":5289},{"runeSlotId":24,"runeId":5289},{"runeSlotId":25,"runeId":5289},{"runeSlotId":26,"runeId":5289},{"runeSlotId":27,"runeId":5289},{"runeSlotId":28,"runeId":5357},{"runeSlotId":29,"runeId":5357},{"runeSlotId":30,"runeId":5357}]},{"id":84133736,"name":"rune je suis un costeau","current":false,"slots":[{"runeSlotId":1,"runeId":5257},{"runeSlotId":2,"runeId":5257},{"runeSlotId":3,"runeId":5257},{"runeSlotId":4,"runeId":5257},{"runeSlotId":5,"runeId":5257},{"runeSlotId":6,"runeId":5257},{"runeSlotId":7,"runeId":5257},{"runeSlotId":8,"runeId":5257},{"runeSlotId":9,"runeId":5257},{"runeSlotId":10,"runeId":5317},{"runeSlotId":11,"runeId":5317},{"runeSlotId":12,"runeId":5317},{"runeSlotId":13,"runeId":5317},{"runeSlotId":14,"runeId":5317},{"runeSlotId":15,"runeId":5317},{"runeSlotId":16,"runeId":5317},{"runeSlotId":17,"runeId":5317},{"runeSlotId":18,"runeId":5317},{"runeSlotId":19,"runeId":5289},{"runeSlotId":20,"runeId":5289},{"runeSlotId":21,"runeId":5289},{"runeSlotId":22,"runeId":5289},{"runeSlotId":23,"runeId":5289},{"runeSlotId":24,"runeId":5289},{"runeSlotId":25,"runeId":5289},{"runeSlotId":26,"runeId":5289},{"runeSlotId":27,"runeId":5289},{"runeSlotId":28,"runeId":5347},{"runeSlotId":29,"runeId":5347},{"runeSlotId":30,"runeId":5347}]},{"id":101534484,"name":"ad critik de chez mendes","current":false,"slots":[{"runeSlotId":1,"runeId":5249},{"runeSlotId":2,"runeId":5249},{"runeSlotId":3,"runeId":5249},{"runeSlotId":4,"runeId":5249},{"runeSlotId":5,"runeId":5249},{"runeSlotId":6,"runeId":5249},{"runeSlotId":7,"runeId":5245},{"runeSlotId":8,"runeId":5245},{"runeSlotId":9,"runeId":5245},{"runeSlotId":10,"runeId":5311},{"runeSlotId":11,"runeId":5311},{"runeSlotId":12,"runeId":5311},{"runeSlotId":13,"runeId":5311},{"runeSlotId":14,"runeId":5311},{"runeSlotId":15,"runeId":5311},{"runeSlotId":16,"runeId":5311},{"runeSlotId":17,"runeId":5311},{"runeSlotId":18,"runeId":5311},{"runeSlotId":19,"runeId":5289},{"runeSlotId":20,"runeId":5289},{"runeSlotId":21,"runeId":5289},{"runeSlotId":22,"runeId":5289},{"runeSlotId":23,"runeId":5289},{"runeSlotId":24,"runeId":5289},{"runeSlotId":25,"runeId":5289},{"runeSlotId":26,"runeId":5289},{"runeSlotId":27,"runeId":5289},{"runeSlotId":28,"runeId":5339},{"runeSlotId":29,"runeId":5335},{"runeSlotId":30,"runeId":5335}]}]}
@@ -0,0 +1 @@
1
+ {"id":266,"key":"Aatrox","name":"Aatrox","title":"the Darkin Blade"}
@@ -0,0 +1 @@
1
+ {"type":"champion","version":"7.9.1","data":{"89":{"id":89,"key":"Leona","name":"Leona","title":"the Radiant Dawn"},"110":{"id":110,"key":"Varus","name":"Varus","title":"the Arrow of Retribution"},"111":{"id":111,"key":"Nautilus","name":"Nautilus","title":"the Titan of the Depths"},"112":{"id":112,"key":"Viktor","name":"Viktor","title":"the Machine Herald"},"113":{"id":113,"key":"Sejuani","name":"Sejuani","title":"Fury of the North"},"114":{"id":114,"key":"Fiora","name":"Fiora","title":"the Grand Duelist"},"236":{"id":236,"key":"Lucian","name":"Lucian","title":"the Purifier"},"115":{"id":115,"key":"Ziggs","name":"Ziggs","title":"the Hexplosives Expert"},"117":{"id":117,"key":"Lulu","name":"Lulu","title":"the Fae Sorceress"},"90":{"id":90,"key":"Malzahar","name":"Malzahar","title":"the Prophet of the Void"},"238":{"id":238,"key":"Zed","name":"Zed","title":"the Master of Shadows"},"91":{"id":91,"key":"Talon","name":"Talon","title":"the Blade's Shadow"},"119":{"id":119,"key":"Draven","name":"Draven","title":"the Glorious Executioner"},"92":{"id":92,"key":"Riven","name":"Riven","title":"the Exile"},"96":{"id":96,"key":"KogMaw","name":"Kog'Maw","title":"the Mouth of the Abyss"},"10":{"id":10,"key":"Kayle","name":"Kayle","title":"The Judicator"},"98":{"id":98,"key":"Shen","name":"Shen","title":"the Eye of Twilight"},"99":{"id":99,"key":"Lux","name":"Lux","title":"the Lady of Luminosity"},"11":{"id":11,"key":"MasterYi","name":"Master Yi","title":"the Wuju Bladesman"},"12":{"id":12,"key":"Alistar","name":"Alistar","title":"the Minotaur"},"13":{"id":13,"key":"Ryze","name":"Ryze","title":"the Rune Mage"},"14":{"id":14,"key":"Sion","name":"Sion","title":"The Undead Juggernaut"},"15":{"id":15,"key":"Sivir","name":"Sivir","title":"the Battle Mistress"},"16":{"id":16,"key":"Soraka","name":"Soraka","title":"the Starchild"},"17":{"id":17,"key":"Teemo","name":"Teemo","title":"the Swift Scout"},"18":{"id":18,"key":"Tristana","name":"Tristana","title":"the Yordle Gunner"},"19":{"id":19,"key":"Warwick","name":"Warwick","title":"the Uncaged Wrath of Zaun"},"240":{"id":240,"key":"Kled","name":"Kled","title":"the Cantankerous Cavalier"},"120":{"id":120,"key":"Hecarim","name":"Hecarim","title":"the Shadow of War"},"121":{"id":121,"key":"Khazix","name":"Kha'Zix","title":"the Voidreaver"},"1":{"id":1,"key":"Annie","name":"Annie","title":"the Dark Child"},"122":{"id":122,"key":"Darius","name":"Darius","title":"the Hand of Noxus"},"2":{"id":2,"key":"Olaf","name":"Olaf","title":"the Berserker"},"245":{"id":245,"key":"Ekko","name":"Ekko","title":"the Boy Who Shattered Time"},"3":{"id":3,"key":"Galio","name":"Galio","title":"the Colossus"},"4":{"id":4,"key":"TwistedFate","name":"Twisted Fate","title":"the Card Master"},"126":{"id":126,"key":"Jayce","name":"Jayce","title":"the Defender of Tomorrow"},"5":{"id":5,"key":"XinZhao","name":"Xin Zhao","title":"the Seneschal of Demacia"},"127":{"id":127,"key":"Lissandra","name":"Lissandra","title":"the Ice Witch"},"6":{"id":6,"key":"Urgot","name":"Urgot","title":"the Headsman's Pride"},"7":{"id":7,"key":"Leblanc","name":"LeBlanc","title":"the Deceiver"},"8":{"id":8,"key":"Vladimir","name":"Vladimir","title":"the Crimson Reaper"},"9":{"id":9,"key":"Fiddlesticks","name":"Fiddlesticks","title":"the Harbinger of Doom"},"20":{"id":20,"key":"Nunu","name":"Nunu","title":"the Yeti Rider"},"21":{"id":21,"key":"MissFortune","name":"Miss Fortune","title":"the Bounty Hunter"},"22":{"id":22,"key":"Ashe","name":"Ashe","title":"the Frost Archer"},"23":{"id":23,"key":"Tryndamere","name":"Tryndamere","title":"the Barbarian King"},"24":{"id":24,"key":"Jax","name":"Jax","title":"Grandmaster at Arms"},"25":{"id":25,"key":"Morgana","name":"Morgana","title":"Fallen Angel"},"26":{"id":26,"key":"Zilean","name":"Zilean","title":"the Chronokeeper"},"27":{"id":27,"key":"Singed","name":"Singed","title":"the Mad Chemist"},"28":{"id":28,"key":"Evelynn","name":"Evelynn","title":"the Widowmaker"},"29":{"id":29,"key":"Twitch","name":"Twitch","title":"the Plague Rat"},"131":{"id":131,"key":"Diana","name":"Diana","title":"Scorn of the Moon"},"133":{"id":133,"key":"Quinn","name":"Quinn","title":"Demacia's Wings"},"254":{"id":254,"key":"Vi","name":"Vi","title":"the Piltover Enforcer"},"497":{"id":497,"key":"Rakan","name":"Rakan","title":"The Charmer"},"134":{"id":134,"key":"Syndra","name":"Syndra","title":"the Dark Sovereign"},"498":{"id":498,"key":"Xayah","name":"Xayah","title":"the Rebel"},"136":{"id":136,"key":"AurelionSol","name":"Aurelion Sol","title":"The Star Forger"},"412":{"id":412,"key":"Thresh","name":"Thresh","title":"the Chain Warden"},"30":{"id":30,"key":"Karthus","name":"Karthus","title":"the Deathsinger"},"31":{"id":31,"key":"Chogath","name":"Cho'Gath","title":"the Terror of the Void"},"32":{"id":32,"key":"Amumu","name":"Amumu","title":"the Sad Mummy"},"33":{"id":33,"key":"Rammus","name":"Rammus","title":"the Armordillo"},"34":{"id":34,"key":"Anivia","name":"Anivia","title":"the Cryophoenix"},"35":{"id":35,"key":"Shaco","name":"Shaco","title":"the Demon Jester"},"36":{"id":36,"key":"DrMundo","name":"Dr. Mundo","title":"the Madman of Zaun"},"37":{"id":37,"key":"Sona","name":"Sona","title":"Maven of the Strings"},"38":{"id":38,"key":"Kassadin","name":"Kassadin","title":"the Void Walker"},"39":{"id":39,"key":"Irelia","name":"Irelia","title":"the Will of the Blades"},"143":{"id":143,"key":"Zyra","name":"Zyra","title":"Rise of the Thorns"},"266":{"id":266,"key":"Aatrox","name":"Aatrox","title":"the Darkin Blade"},"420":{"id":420,"key":"Illaoi","name":"Illaoi","title":"the Kraken Priestess"},"267":{"id":267,"key":"Nami","name":"Nami","title":"the Tidecaller"},"421":{"id":421,"key":"RekSai","name":"Rek'Sai","title":"the Void Burrower"},"268":{"id":268,"key":"Azir","name":"Azir","title":"the Emperor of the Sands"},"427":{"id":427,"key":"Ivern","name":"Ivern","title":"the Green Father"},"429":{"id":429,"key":"Kalista","name":"Kalista","title":"the Spear of Vengeance"},"40":{"id":40,"key":"Janna","name":"Janna","title":"the Storm's Fury"},"41":{"id":41,"key":"Gangplank","name":"Gangplank","title":"the Saltwater Scourge"},"42":{"id":42,"key":"Corki","name":"Corki","title":"the Daring Bombardier"},"43":{"id":43,"key":"Karma","name":"Karma","title":"the Enlightened One"},"44":{"id":44,"key":"Taric","name":"Taric","title":"the Shield of Valoran"},"45":{"id":45,"key":"Veigar","name":"Veigar","title":"the Tiny Master of Evil"},"48":{"id":48,"key":"Trundle","name":"Trundle","title":"the Troll King"},"150":{"id":150,"key":"Gnar","name":"Gnar","title":"the Missing Link"},"154":{"id":154,"key":"Zac","name":"Zac","title":"the Secret Weapon"},"432":{"id":432,"key":"Bard","name":"Bard","title":"the Wandering Caretaker"},"157":{"id":157,"key":"Yasuo","name":"Yasuo","title":"the Unforgiven"},"50":{"id":50,"key":"Swain","name":"Swain","title":"the Master Tactician"},"51":{"id":51,"key":"Caitlyn","name":"Caitlyn","title":"the Sheriff of Piltover"},"53":{"id":53,"key":"Blitzcrank","name":"Blitzcrank","title":"the Great Steam Golem"},"54":{"id":54,"key":"Malphite","name":"Malphite","title":"Shard of the Monolith"},"55":{"id":55,"key":"Katarina","name":"Katarina","title":"the Sinister Blade"},"56":{"id":56,"key":"Nocturne","name":"Nocturne","title":"the Eternal Nightmare"},"57":{"id":57,"key":"Maokai","name":"Maokai","title":"the Twisted Treant"},"58":{"id":58,"key":"Renekton","name":"Renekton","title":"the Butcher of the Sands"},"59":{"id":59,"key":"JarvanIV","name":"Jarvan IV","title":"the Exemplar of Demacia"},"161":{"id":161,"key":"Velkoz","name":"Vel'Koz","title":"the Eye of the Void"},"163":{"id":163,"key":"Taliyah","name":"Taliyah","title":"the Stoneweaver"},"164":{"id":164,"key":"Camille","name":"Camille","title":"the Steel Shadow"},"201":{"id":201,"key":"Braum","name":"Braum","title":"the Heart of the Freljord"},"202":{"id":202,"key":"Jhin","name":"Jhin","title":"the Virtuoso"},"203":{"id":203,"key":"Kindred","name":"Kindred","title":"The Eternal Hunters"},"60":{"id":60,"key":"Elise","name":"Elise","title":"the Spider Queen"},"61":{"id":61,"key":"Orianna","name":"Orianna","title":"the Lady of Clockwork"},"62":{"id":62,"key":"MonkeyKing","name":"Wukong","title":"the Monkey King"},"63":{"id":63,"key":"Brand","name":"Brand","title":"the Burning Vengeance"},"64":{"id":64,"key":"LeeSin","name":"Lee Sin","title":"the Blind Monk"},"67":{"id":67,"key":"Vayne","name":"Vayne","title":"the Night Hunter"},"68":{"id":68,"key":"Rumble","name":"Rumble","title":"the Mechanized Menace"},"69":{"id":69,"key":"Cassiopeia","name":"Cassiopeia","title":"the Serpent's Embrace"},"72":{"id":72,"key":"Skarner","name":"Skarner","title":"the Crystal Vanguard"},"74":{"id":74,"key":"Heimerdinger","name":"Heimerdinger","title":"the Revered Inventor"},"75":{"id":75,"key":"Nasus","name":"Nasus","title":"the Curator of the Sands"},"76":{"id":76,"key":"Nidalee","name":"Nidalee","title":"the Bestial Huntress"},"77":{"id":77,"key":"Udyr","name":"Udyr","title":"the Spirit Walker"},"78":{"id":78,"key":"Poppy","name":"Poppy","title":"Keeper of the Hammer"},"79":{"id":79,"key":"Gragas","name":"Gragas","title":"the Rabble Rouser"},"222":{"id":222,"key":"Jinx","name":"Jinx","title":"the Loose Cannon"},"101":{"id":101,"key":"Xerath","name":"Xerath","title":"the Magus Ascendant"},"102":{"id":102,"key":"Shyvana","name":"Shyvana","title":"the Half-Dragon"},"223":{"id":223,"key":"TahmKench","name":"Tahm Kench","title":"the River King"},"103":{"id":103,"key":"Ahri","name":"Ahri","title":"the Nine-Tailed Fox"},"104":{"id":104,"key":"Graves","name":"Graves","title":"the Outlaw"},"105":{"id":105,"key":"Fizz","name":"Fizz","title":"the Tidal Trickster"},"106":{"id":106,"key":"Volibear","name":"Volibear","title":"the Thunder's Roar"},"80":{"id":80,"key":"Pantheon","name":"Pantheon","title":"the Artisan of War"},"107":{"id":107,"key":"Rengar","name":"Rengar","title":"the Pridestalker"},"81":{"id":81,"key":"Ezreal","name":"Ezreal","title":"the Prodigal Explorer"},"82":{"id":82,"key":"Mordekaiser","name":"Mordekaiser","title":"the Iron Revenant"},"83":{"id":83,"key":"Yorick","name":"Yorick","title":"Shepherd of Souls"},"84":{"id":84,"key":"Akali","name":"Akali","title":"the Fist of Shadow"},"85":{"id":85,"key":"Kennen","name":"Kennen","title":"the Heart of the Tempest"},"86":{"id":86,"key":"Garen","name":"Garen","title":"The Might of Demacia"}}}
@@ -0,0 +1 @@
1
+ {"id":1001,"name":"Boots of Speed","description":"<groupLimit>Limited to 1.</groupLimit><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +25 Movement Speed","plaintext":"Slightly increases Movement Speed"}
@@ -0,0 +1 @@
1
+ {"type":"item","version":"7.9.1","basic":{"id":0,"name":"","group":"","description":"","sanitizedDescription":"","colloq":"","plaintext":"","consumed":false,"stacks":1,"depth":1,"consumeOnFull":false,"from":[],"into":[],"specialRecipe":0,"inStore":true,"hideFromAll":false,"requiredChampion":"","tags":[],"maps":{"1":true,"12":true,"8":true,"10":true},"image":null,"stats":{"rFlatArmorModPerLevel":0.0,"rFlatArmorPenetrationMod":0.0,"rFlatArmorPenetrationModPerLevel":0.0,"rFlatCritChanceModPerLevel":0.0,"rFlatCritDamageModPerLevel":0.0,"rFlatEnergyRegenModPerLevel":0.0,"rFlatDodgeMod":0.0,"rFlatDodgeModPerLevel":0.0,"rFlatGoldPer10Mod":0.0,"rFlatHPModPerLevel":0.0,"rFlatHPRegenModPerLevel":0.0,"rFlatMPRegenModPerLevel":0.0,"rFlatMagicDamageModPerLevel":0.0,"rFlatMagicPenetrationMod":0.0,"rFlatMagicPenetrationModPerLevel":0.0,"rFlatMPModPerLevel":0.0,"rFlatEnergyModPerLevel":0.0,"rFlatMovementSpeedModPerLevel":0.0,"rFlatPhysicalDamageModPerLevel":0.0,"rFlatSpellBlockModPerLevel":0.0,"rFlatTimeDeadMod":0.0,"rFlatTimeDeadModPerLevel":0.0,"rPercentArmorPenetrationMod":0.0,"rPercentArmorPenetrationModPerLevel":0.0,"rPercentAttackSpeedModPerLevel":0.0,"rPercentCooldownMod":0.0,"rPercentCooldownModPerLevel":0.0,"rPercentMagicPenetrationMod":0.0,"rPercentMagicPenetrationModPerLevel":0.0,"rPercentMovementSpeedModPerLevel":0.0,"rPercentTimeDeadMod":0.0,"rPercentTimeDeadModPerLevel":0.0,"FlatArmorMod":0.0,"FlatAttackSpeedMod":0.0,"FlatBlockMod":0.0,"FlatCritChanceMod":0.0,"FlatCritDamageMod":0.0,"FlatEnergyRegenMod":0.0,"FlatEnergyPoolMod":0.0,"FlatEXPBonus":0.0,"FlatHPPoolMod":0.0,"FlatHPRegenMod":0.0,"FlatMPPoolMod":0.0,"FlatMPRegenMod":0.0,"FlatMagicDamageMod":0.0,"FlatMovementSpeedMod":0.0,"FlatPhysicalDamageMod":0.0,"FlatSpellBlockMod":0.0,"PercentArmorMod":0.0,"PercentAttackSpeedMod":0.0,"PercentBlockMod":0.0,"PercentCritChanceMod":0.0,"PercentCritDamageMod":0.0,"PercentDodgeMod":0.0,"PercentEXPBonus":0.0,"PercentHPPoolMod":0.0,"PercentHPRegenMod":0.0,"PercentMPPoolMod":0.0,"PercentMPRegenMod":0.0,"PercentMagicDamageMod":0.0,"PercentMovementSpeedMod":0.0,"PercentPhysicalDamageMod":0.0,"PercentSpellBlockMod":0.0,"PercentSpellVampMod":0.0,"PercentLifeStealMod":0.0},"gold":{"base":0,"total":0,"sell":0,"purchasable":false},"rune":{"isRune":false,"tier":"1","type":"red"}},"data":{"3082":{"id":3082,"name":"Warden's Mail","description":"<stats>+40 Armor</stats><br><br><unique>UNIQUE Passive - Cold Steel:</unique> When hit by basic attacks, reduces the attacker's Attack Speed by 15% for 1 seconds.","plaintext":"Slows Attack Speed of enemy champions when receiving basic attacks"},"3640":{"id":3640,"name":"Flash Zone","description":"<br><font color='#FF9900'>Allows team to cast Flash repeatedly in a limited zone.</font><br><br>Creates a magic zone for your team for 5 seconds. While in this zone, you and your allies have your summoner spells replaced by an instant cast blink that moves you to any location in the zone (1 second cooldown).","plaintext":"Allows you and allies to repeatedly flash while in a zone"},"3089":{"id":3089,"name":"Rabadon's Deathcap","description":"<stats>+120 Ability Power </stats><br><br><unique>UNIQUE Passive:</unique> Increases Ability Power by 35%.","plaintext":"Massively increases Ability Power"},"3087":{"id":3087,"name":"Statikk Shiv","description":"<stats>+35% Attack Speed<br>+30% Critical Strike Chance<br>+5% Movement Speed</stats><br><br><passive>Passive:</passive> Moving and attacking will make an attack <a href='Energized'>Energized</a>.<br><br><unique>UNIQUE Passive - Shiv Lightning:</unique> Your Energized attacks deal 60~160 bonus magic damage (based on level) to up to 5 targets on hit (deals +65% bonus damage to minions and can critically strike).","plaintext":"Movement builds charges that release chain lightning on basic attack"},"3086":{"id":3086,"name":"Zeal","description":"<stats>+15% Attack Speed<br>+20% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique> +5% Movement Speed","plaintext":"Slight bonuses to Critical Strike Chance, Movement Speed and Attack Speed"},"3085":{"id":3085,"name":"Runaan's Hurricane","description":"<stats>+40% Attack Speed<br>+30% Critical Strike Chance<br>+7% Movement Speed</stats><br><br><unique>UNIQUE Passive - Wind's Fury:</unique> When basic attacking, bolts are fired at up to 2 enemies near the target, each dealing (40% of Attack Damage) physical damage. Bolts can critically strike and apply on hit effects.","plaintext":"Ranged attacks fire two bolts at nearby enemies"},"3084":{"id":3084,"name":"Overlord's Bloodmail","description":"<stats>+800 Health<br>+100% Base Health Regen </stats><br><br><unique>UNIQUE Passive:</unique> Upon champion kill or assist, restores 300 Health over 5 seconds.","plaintext":"Restores Health on kill or assist"},"3083":{"id":3083,"name":"Warmog's Armor","description":"<stats>+800 Health<br>+200% Base Health Regen </stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction<br><unique>UNIQUE Passive:</unique> Grants <unlockedPassive>Warmog's Heart</unlockedPassive> if you have at least 2750 maximum Health.<br><br><unlockedPassive>Warmog's Heart:</unlockedPassive> Restores 25% of maximum Health every 5 seconds if damage hasn't been taken within 6 seconds (3 seconds for damage from minions and monsters).","plaintext":"Grants massive Health and Health Regen"},"2303":{"id":2303,"name":"Eye of the Equinox","description":"<stats>+500 Health<br>+200% Base Health Regen <br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Spoils of War:</unique> Melee basic attacks execute minions below 320 (+20 per level) Health. Killing a minion heals the owner and the nearest allied champion for 50 Health and grants them kill Gold. These effects require a nearby ally. Recharges every 30 seconds. Max 4 charges.<br><active>UNIQUE Active - Warding:</active> Consumes a charge to place a <font color='#BBFFFF'>Stealth Ward</font> that reveals the surrounding area for 150 seconds. Holds up to 4 charges which refill upon visiting the shop.<hr><passive>QUEST:</passive> Earn 650 gold using this item.<br><passive>REWARD:</passive> <font color='#CFBF84'>Shield Battery</font>, a permanent shield that regenerates slowly outside of combat.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Provides Health and Stealth Wards over time"},"3513":{"id":3513,"name":"Eye of the Herald","description":"<br><unique>UNIQUE Passive - Glimpse of the Void:</unique> The holder of the Eye of the Herald has Empowered Recall.<br><br><active>UNIQUE Active:</active> Channel for 3.5 seconds to crush the Eye of the Herald, summoning the Rift Herald to siege enemy turrets.<br><br>The Eye of the Herald will be lost to the Void if not used within 240 seconds.</font>","plaintext":"Eye of the Herald - a Gift of the Void."},"2302":{"id":2302,"name":"Eye of the Oasis","description":"<stats>+200 Health<br>+100% Base Health Regen <br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Favor: </unique>Enemy minions killed by your allies sometimes drop coins that give either <font color='#D4AF37'>30</font> gold or <font color='#44DDFF'>8%</font> missing mana (minimum 15).<br><active>UNIQUE Active - Warding:</active> Consumes a charge to place a <font color='#BBFFFF'>Stealth Ward</font> that reveals the surrounding area for 150 seconds. Holds up to 4 charges which refill upon visiting the shop<hr><passive>QUEST:</passive> Earn 650 gold using this item.<br><passive>REWARD:</passive> <font color='#CFBF84'>Favor</font> is upgraded to <font color='#CFBF84'><a href='coinlinequestreward'>Emperor's Favor</a></font> and you receive an <font color='#29E3D6'><a href='coinlinequestrewardelixir'>Elixir Of Skill</a></font>.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Provides Regeneration and Stealth Wards over time"},"3512":{"id":3512,"name":"Zz'Rot Portal","description":"<stats>+55 Armor<br>+55 Magic Resist<br>+125% Base Health Regen <br></stats><br><unique>UNIQUE Passive - Point Runner:</unique> Builds up to +20% Movement Speed over 2 seconds while near turrets, fallen turrets and Void Gates.<br><active>UNIQUE Active:</active> Spawns a <a href='VoidGate'>Void Gate</a> for 120 seconds (120 second cooldown).<br><br>Every 4 seconds the gate makes a <a href='Voidspawn'>Voidspawn</a>. The first and every fourth Voidspawn gains 15% of maximum Health as damage.","plaintext":"Makes a Voidspawn generating Void Gate to push a lane with."},"2301":{"id":2301,"name":"Eye of the Watchers","description":"<stats>+200 Health<br><mana>+50% Base Mana Regen </mana><br>+35 Ability Power<br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Tribute:</unique> Damaging spells and attacks against champions or buildings deal 15 additional damage and grant 15 Gold. This can occur up to 3 times every 30 seconds.<br><active>UNIQUE Active - Warding:</active> Consumes a charge to place a <font color='#BBFFFF'>Stealth Ward</font> that reveals the surrounding area for 150 seconds. Holds up to 4 charges which refill upon visiting the shop.<hr><passive>QUEST:</passive> Earn 650 gold using this item.<br><passive>REWARD:</passive> <font color='#CFBF84'>Tribute</font> is upgraded into <font color='#CFBF84'><a href='frostqueenslinequestreward'>Queen's Tribute</a></font>.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Provides Ability Power and Stealth Wards over time"},"3630":{"id":3630,"name":"Siege Teleport","description":"<unique>Active:</unique> Use this trinket to teleport to one of your team's port pads. Can only be used from the summoning platform."},"3751":{"id":3751,"name":"Bami's Cinder","description":"<stats>+280 Health </stats><br><br><unique>UNIQUE Passive - Immolate:</unique> Deals 5 (+1 per champion level) magic damage per second to nearby enemies. Deals 50% bonus damage to minions and monsters.","plaintext":"Grants Health and Immolate Aura"},"3631":{"id":3631,"name":"Siege Ballista","description":"<br><font color='#FF9900'>Deploys a ballista that shoots the closest turret.</font><br><br>Places a long range ballista if within 2200 range of an enemy turret. After a 5 second delay, it will begin firing at the nearest enemy turret, dealing heavy damage. If the targeted turret expires, the ballista will as well.","plaintext":"Place a long range anti-turret ballista"},"3632":{"id":3632},"3633":{"id":3633,"name":"Siege Teleport","description":"<unique>Active:</unique> Use this trinket to teleport to one of your team's port pads. Can only be used from the summoning platform."},"3634":{"id":3634,"name":"Tower: Beam of Ruination","description":"<br><font color='#FF9900'>Attach, then recast to fire a damaging beam from a turret to your cursor.</font><br><br><font color='#FF9900'>First Cast:</font> Attach a Slayer Beam to the target turret that can be fired 3 times.<br></br><font color='#FF9900'>Next Three Casts:</font> Fires the attached beam towards your cursor, dealing 30/level + 30% of the hit target's maximum health (20% damage to minions) in magic damage to all targets in a line.<br></br><br></br>Beam will last 15 seconds, or until it has been fired 3 times.","plaintext":"Attaches a three shot beam to a turret which can then be aimed and fired"},"3635":{"id":3635,"name":"Port Pad","description":"<br><font color='#FF9900'>Deploy an additional teleport target.</font><br><br>Places a Port Pad at target location. After a 4 second delay, it activates, allowing you or your allies to teleport to it from base.","plaintext":"Creates another point for your team to Teleport to"},"3636":{"id":3636,"name":"Tower: Storm Bulwark","description":"<br><font color='#FF9900'>Makes a turret go invulnerable, then rain fire.</font><br><br>Makes the target turret invulnerable for 6 seconds. Two seconds before expiry, it unleashes a missile volley, dealing 2600 true damage over the remaining time to all nearby enemies.<br><br>Cannot be used on the same turret more than once in 15 seconds.","plaintext":"Make a turret go invulnerable while charging a powerful barrage"},"3637":{"id":3637,"name":"Nexus Siege: Siege Weapon Slot","description":"In Nexus Siege, Summoner Spells are replaced with Siege Weapon Slots. Spend Crystal Shards to buy single-use Siege Weapons from the item shop, then use your Summoner Spell keys to activate them!"},"3092":{"id":3092,"name":"Frost Queen's Claim","description":"<stats>+60 Ability Power<br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds<br><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive - Tribute:</unique> Damaging spells and attacks against champions or buildings deal 15 additional damage and grant 15 Gold. This can occur up to 3 times every 30 seconds.<br><active>UNIQUE Active:</active> Summon 2 icy ghosts for 6 seconds that seek out nearby enemy champions. Ghosts reveal enemies on contact and slow them by 40% for between 2 and 5 seconds based on how far the ghosts have traveled (90 second cooldown).<hr><passive>QUEST:</passive> Earn 650 gold using this item.<br><passive>REWARD:</passive> <font color='#CFBF84'>Tribute</font> is upgraded into <font color='#CFBF84'><a href='frostqueenslinequestreward'>Queen's Tribute</a></font>.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Sends out seeking wraiths that track hidden enemies and slow them"},"3091":{"id":3091,"name":"Wit's End","description":"<stats>+40% Attack Speed<br>+40 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal 40 bonus magic damage on hit.<br><unique>UNIQUE Passive:</unique> Basic attacks steal 5 Magic Resist from the target on hit (stacks up to 5 times.)","plaintext":"Deals bonus magic damage on basic attacks"},"3090":{"id":3090,"name":"Wooglet's Witchcap","description":"<stats>+100 Ability Power<br>+45 Armor </stats><br><br><unique>UNIQUE Passive:</unique> Increases Ability Power by 25%<br><active>UNIQUE Active:</active> Champion becomes invulnerable and untargetable for 2.5 seconds, but is unable to move, attack, cast spells, or use items during this time (120 second cooldown).","plaintext":"Massively increases Ability Power and can be activated to enter stasis"},"3098":{"id":3098,"name":"Frostfang","description":"<stats>+20 Ability Power<br>+2 Gold per 10 seconds<br><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive - Tribute:</unique> Damaging spells and attacks against champions or buildings deal 15 additional damage and grant 15 Gold. This can occur up to 3 times every 30 seconds. Killing a minion stops you from triggering for 6 seconds per minion slain.<hr><passive>QUEST:</passive> Earn 650 gold using this item.<br><passive>REWARD:</passive> <font color='#CFBF84'>Tribute</font> is upgraded into <font color='#CFBF84'><a href='frostqueenslinequestreward'>Queen's Tribute</a></font>.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Grants gold when you damage an enemy"},"3097":{"id":3097,"name":"Targon's Brace","description":"<stats>+175 Health<br>+50% Base Health Regen <br>+2 Gold per 10 seconds </stats><br><br><unique>UNIQUE Passive - Spoils of War:</unique> Melee basic attacks execute minions below 200 (+10 per level) Health. Killing a minion heals the owner and the nearest allied champion for 40 Health and grants them kill Gold.<br><br>These effects require a nearby ally. Recharges every 30 seconds. Max 3 charges.<hr><passive>QUEST:</passive> Earn 650 gold using this item.<br><passive>REWARD:</passive> <font color='#CFBF84'>Shield Battery</font>, a permanent shield that regenerates slowly outside of combat.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Periodically kill enemy minions to heal and grant gold to a nearby ally"},"3096":{"id":3096,"name":"Nomad's Medallion","description":"<stats>+25% Base Health Regen <br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Favor:</unique> Enemy minions killed by your allies sometimes drop coins that give either <font color='#D4AF37'>30</font> gold or <font color='#44DDFF'>8%</font> missing mana (minimum 15).<hr><passive>QUEST:</passive> Earn 650 gold using this item.<br><passive>REWARD:</passive> <font color='#CFBF84'>Favor</font> is upgraded to <font color='#CFBF84'><a href='coinlinequestreward'>Emperor's Favor</a></font> and you receive an <font color='#29E3D6'><a href='coinlinequestrewardelixir'>Elixir Of Skill</a></font>.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit><br><br><rules><font color='#447777'>''The medallion shines with the glory of a thousand voices when exposed to the sun.'' - Historian Shurelya, 22 June, 24 CLE</font></rules>","plaintext":"Grants gold when nearby enemy minions die, Health Regen and Mana Regen"},"3094":{"id":3094,"name":"Rapid Firecannon","description":"<stats>+30% Attack Speed<br>+30% Critical Strike Chance<br>+5% Movement Speed</stats><br><br><passive>Passive:</passive> Moving and attacking will make an attack <a href='Energized'>Energized</a>.<br><br><unique>UNIQUE Passive - Firecannon:</unique> Your Energized attacks gain 35% bonus Range (+150 range maximum) and deal 50~120 bonus magic damage (based on level) on hit.<br><br>Attacks become Energized 25% faster. Energized attacks function on structures.","plaintext":"Movement builds charges that release a sieging fire attack on release"},"3649":{"id":3649,"name":"Siege Sight Warder","description":"<groupLimit>Limited to 1 Trinket.</groupLimit><br><br><active>Active:</active> Places a <font color='#FFFFFF'>Stealth Ward</font> that lasts <font color='#FFFFFF'>30</font> seconds (30 second cooldown)."},"3401":{"id":3401,"name":"Face of the Mountain","description":"<stats>+450 Health<br>+100% Base Health Regen <br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds </stats><br><br><unique>UNIQUE Passive - Spoils of War:</unique> Melee basic attacks execute minions below 320 (+20 per level) Health. Killing a minion heals the owner and the nearest allied champion for 50 Health and grants them kill Gold. These effects require a nearby ally. Recharges every 30 seconds. Max 4 charges.<br><unique>UNIQUE Active:</unique> Grant a shield to you and an ally equal to 10% of your maximum Health for 4 seconds. After 4 seconds, the shields explode to slow nearby enemies by 40% for 2 seconds (60 second cooldown). Automatically targets the most wounded ally if cast upon self.<hr><passive>QUEST:</passive> Earn 650 gold using this item.<br><passive>REWARD:</passive> <font color='#CFBF84'>Shield Battery</font>, a permanent shield that regenerates slowly outside of combat.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Shield an ally from damage based on your Health"},"3641":{"id":3641,"name":"Vanguard Banner","description":"<br><font color='#FF9900'>Place a banner that buffs minions.</font><br><br>Place a Vanguard Banner at target location. After a 2 second delay, any nearby minions will be granted a buff, increasing their damage by 50%, and granting them 50 Armor and 100 Magic Resistance while within range.","plaintext":"Strengthens nearby minions"},"3642":{"id":3642,"name":"Siege Refund","description":"Refunds all purchased Siege Weapons for their full price.","plaintext":"Refunds all current Siege Weapons"},"3643":{"id":3643,"name":"Entropy Field","description":"<br><font color='#FF9900'>Stun minions and slow champions in an area.</font><br><br>Places an Entropy Field at target location for 5 seconds. Enemy minions and Siege Ballistas trapped in the field are unable to move or attack while in the field. Enemy champions in the field have their Movement Speed reduced by 25%.","plaintext":"Places a field that stuns enemy minions and slows champions"},"3645":{"id":3645,"name":"Seer Stone (Trinket)","description":"<groupLimit>Limited to 1 Trinket.</groupLimit><br><br><active>Active:</active> Reveals a small area within <font color='#FFFFF'>1400</font> range for 3 seconds. Enemy champions will be revealed for 5 seconds (60 second cooldown)","plaintext":"Briefly reveals a nearby targeted area"},"3647":{"id":3647,"name":"Shield Totem","description":"<br><font color='#FF9900'>Place a totem that shields nearby deployables.</font><br><br>Places a Shield Totem at target location. After a 2 second delay, the totem will activate, granting a 2 (+1 per additional Shield Totem) strength shield to all nearby deployables.","plaintext":"Grants bonus health to nearby Siege Weapons"},"3648":{"id":3648,"name":"Siege Teleport (Inactive)"},"3416":{"id":3416,"name":"Head of Kha'Zix","description":"<unique>UNIQUE Active - Scrying:</unique> Reveals a small location within 4000 range for 2 seconds. Enemy champions found will be revealed for 5 seconds (90 second cooldown).<br><br><unique>UNIQUE Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions and gains bonus effects based on how many trophies he has. Kills and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive> Thrill of the Hunt's Movement Speed while stealthed is doubled."},"3410":{"id":3410,"name":"Head of Kha'Zix","description":"<unique>UNIQUE Active - Sweeping Lens:</unique> Reveals and disables nearby invisible traps and invisible wards for 6 seconds in a medium radius and grants detection of invisible units for 10 seconds (60 second cooldown).<br><br><unique>UNIQUE Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions and gains bonus effects based on how many trophies he has. Kills and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive> Thrill of the Hunt's Movement Speed while stealthed is doubled."},"3671":{"id":3671,"name":"Enchantment: Warrior","description":"<stats>+60 Attack Damage<br>+10% Cooldown Reduction</stats>"},"3672":{"id":3672,"name":"Enchantment: Cinderhulk","description":"<stats>+400 Health<br>+15% Bonus Health</stats><br><br><unique>UNIQUE Passive - Immolate:</unique> Deals 7 (+2 per champion level) magic damage a second to nearby enemies while in combat. Deals 100% bonus damage to monsters. "},"3673":{"id":3673,"name":"Enchantment: Runic Echoes","description":"<stats>+60 Ability Power<br>+7% Movement Speed</stats><br><br><unique>UNIQUE Passive - Echo:</unique> Gain charges upon moving or casting. At 100 charges, the next damaging spell hit expends all charges to deal 60 (+10% of Ability Power) bonus magic damage to up to 4 targets on hit.<br><br>This effect deals 250% damage to Large Monsters. Hitting a Large Monster with this effect will restore 18% of your missing Mana."},"1011":{"id":1011,"name":"Giant's Belt","description":"<stats>+380 Health</stats>","plaintext":"Greatly increases Health"},"1006":{"id":1006,"name":"Rejuvenation Bead","description":"<stats>+50% Base Health Regen </stats>","plaintext":"Slightly increases Health Regen"},"1004":{"id":1004,"name":"Faerie Charm","description":"<stats><mana>+25% Base Mana Regen </mana></stats>","plaintext":"Slightly increases Mana Regen"},"3303":{"id":3303,"name":"Spellthief's Edge","description":"<stats>+5 Ability Power<br>+2 Gold per 10 seconds<br><mana>+25% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive - Tribute:</unique> Damaging spells and attacks against champions or buildings deal 10 additional damage and grant 8 Gold. This can occur up to 3 times every 30 seconds. Killing a minion stops you from triggering for 6 seconds per minion slain.<hr><passive>QUEST:</passive> Earn 650 gold using this item and upgrade to <font color='#CFBF84'>Frostfang</font>.<br><passive>REWARD:</passive> <font color='#CFBF84'>Tribute</font> is upgraded into <font color='#CFBF84'><a href='frostqueenslinequestreward'>Queen's Tribute</a></font>.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Grants gold when you damage enemies"},"3302":{"id":3302,"name":"Relic Shield","description":"<stats>+75 Health<br>+2 Gold per 10 seconds </stats><br><br><unique>UNIQUE Passive - Spoils of War:</unique> Melee basic attacks execute minions below 195 (+5 per level) Health. Killing a minion heals the owner and the nearest allied champion for 15 Health and grants them kill Gold. These effects require a nearby ally. Recharges every 40 seconds. Max 2 charges.<hr><passive>QUEST:</passive> Earn 650 gold using this item and upgrade to <font color='#CFBF84'>Targon's Brace</font>.<br><passive>REWARD:</passive> <font color='#CFBF84'>Shield Battery</font>, a permanent shield that regenerates slowly outside of combat.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit>","plaintext":"Kill minions periodically to heal and grant gold to a nearby ally"},"3301":{"id":3301,"name":"Ancient Coin","description":"<stats>+5% Cooldown Reduction<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Favor:</unique> Enemy minions killed by your allies sometimes drop coins that give either <font color='#D4AF37'>20</font> gold or <font color='#44DDFF'>8%</font> missing mana (minimum 15).<hr><passive>QUEST:</passive> Earn 650 gold using this item and upgrade to <font color='#CFBF84'>Nomad's Medallion</font>.<br><passive>REWARD:</passive> <font color='#CFBF84'>Favor</font> is upgraded to <font color='#CFBF84'><a href='coinlinequestreward'>Emperor's Favor</a></font> and you receive an <font color='#29E3D6'><a href='coinlinequestrewardelixir'>Elixir Of Skill</a></font>.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit><br><br><i><font color='#447777'>''Gold dust rises from the desert and clings to the coin.'' - Historian Shurelya, 11 November, 23 CLE</font></i>","plaintext":"Grants gold and mana when nearby minions die that you didn't kill"},"3422":{"id":3422,"name":"Head of Kha'Zix","description":"<unique>UNIQUE Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions and gains bonus effects based on how many trophies he has. Kills and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive> Thrill of the Hunt's Movement Speed while stealthed is doubled."},"1001":{"id":1001,"name":"Boots of Speed","description":"<groupLimit>Limited to 1.</groupLimit><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +25 Movement Speed","plaintext":"Slightly increases Movement Speed"},"3680":{"id":3680,"name":"Frosted Snax","description":"<active>Active - <a href='FeedTheKing'>Feed The King</a>:</active> The King lobs many projectiles at far-away enemies, each dealing <scaleLevel>213-775</scaleLevel> magic damage to targets in the center of the impact, scaling down to <scaleLevel>85-310</scaleLevel> on the edge. (120s cooldown)","plaintext":"King: Fires a barrage of icy artillery"},"3681":{"id":3681,"name":"Super Spicy Snax","description":"<active>Active - <a href='FeedTheKing'>Feed The King</a>:</active> The King breathes fire for 4 seconds, dealing <scaleLevel>705-1479</scaleLevel> true damage over the duration to enemies caught in the cone. Deals up to 560 true damage to Turrets. (120s cooldown)","plaintext":"King: Shoots flames that burn units and Turrets"},"3682":{"id":3682,"name":"Espresso Snax","description":"<active>Active - <a href='FeedTheKing'>Feed The King</a>:</active> The King leaps into the air and crashes down twice, knocking enemies away and dealing <scaleLevel>40-190</scaleLevel> physical damage. He also gains a decaying shield for <font color='#FF3300'>20% of his maximum health</font>, lasting 4 seconds. (30s cooldown)","plaintext":"King: Knocks back and grants a large shield"},"3683":{"id":3683,"name":"Rainbow Snax Party Pack!","description":"<active>Active - <a href='FeedTheKing'>Feed The King</a>:</active> The King tosses many Snax behind the enemy, attracting Poros which dash back towards him. Enemy champions hit will be knocked forwards and dealt <scaleLevel>230-680</scaleLevel> physical damage. (120s cooldown)","plaintext":"King: Poros knock enemies towards him"},"3200":{"id":3200,"name":"Prototype Hex Core","description":"<stats>+1 Ability Power per level<br>+10 Mana per level</stats><br><br><unique>UNIQUE Passive - Progress:</unique> This item can be upgraded three times to enhance Viktor's basic abilities.","plaintext":"Increases Ability Power and can be upgraded to improve Viktor's abilities"},"1018":{"id":1018,"name":"Cloak of Agility","description":"<stats>+20% Critical Strike Chance</stats>","plaintext":"Increases critical strike chance"},"3675":{"id":3675,"name":"Enchantment: Bloodrazor","description":"<stats>+50% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal 4% of the target's maximum Health in bonus physical damage (max 75 vs. monsters and minions) on hit."},"3690":{"id":3690,"name":"Cosmic Shackle","description":"<passive>Passive - Cosmic Shackle: </passive>Death Sentence pulls much farther (based on the target's Missing Health), and can be ignited by the Dark Star to do more damage.<br><br><flavorText>''A still more glorious dawn awaits.''</flavorText>"},"3691":{"id":3691,"name":"Singularity Lantern","description":"<passive>Passive - Singularity Lantern: </passive>Dark Passage automatically saves disabled allies. However, it no longer provides a shield.<br><br><flavorText>''The stars call to us.''</flavorText>"},"3692":{"id":3692,"name":"Dark Matter Scythe","description":"<passive>Passive - Dark Matter Scythe: </passive>Flay's on-hit passive charges damage very quickly. Flay will throw enemies much farther (based on their Missing Health).<br><br><flavorText>''If you want to make a Singularity from scratch, you must first destroy the universe.''</flavorText>"},"3693":{"id":3693,"name":"Gravity Boots","description":"<passive>Passive - Mass Conversion: </passive>Thresh's Health represents how far enemy pulls and pushes will send him. At lower Health, he will be thrown farther.<br><br><passive>Passive - Terminus Dwellers: </passive>Abyss Scuttlers emerge periodically, and will scurry towards the Dark Star when attacked. Gravitational disturbances will temporarily attract many of them."},"3694":{"id":3694,"name":"Cloak of Stars","description":"<passive>Passive - Stellar Spirit: </passive>Upon spawning, Thresh is invulnerable, untargetable, cannot cast, and is able to travel in open space. This is lost when stepping foot on stable ground.<br><br>Being saved by Dark Passage or using Death Sentence on one of the three <font color='#3091ec'>Gravity Anchors</font> will briefly put you into this invulnerable state and break enemy chains on you."},"3695":{"id":3695,"name":"Dark Star Sigil","description":"<passive>Passive - Stellar Fealty: </passive>Thresh cannot kill units directly - their souls, experience, and gold belong to the Dark Star.<br><br>Pulling or pushing an enemy into the Dark Star will destroy them instantly, scoring points for your team (+5, or +1 for Abyss Scuttlers).<br><br>Winning a round requires 100 points, and the final points must be from a champion kill."},"1033":{"id":1033,"name":"Null-Magic Mantle","description":"<stats>+25 Magic Resist</stats>","plaintext":"Slightly increases Magic Resist"},"3211":{"id":3211,"name":"Spectre's Cowl","description":"<stats>+250 Health<br>+25 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique> Grants 150% Base Health Regen for up to 10 seconds after taking damage from an enemy champion.","plaintext":"Improves defense and grants regeneration upon being damaged"},"1031":{"id":1031,"name":"Chain Vest","description":"<stats>+40 Armor</stats>","plaintext":"Greatly increases Armor"},"1029":{"id":1029,"name":"Cloth Armor","description":"<stats>+15 Armor</stats>","plaintext":"Slightly increases Armor"},"1028":{"id":1028,"name":"Ruby Crystal","description":"<stats>+150 Health</stats>","plaintext":"Increases Health"},"1027":{"id":1027,"name":"Sapphire Crystal","description":"<stats><mana>+250 Mana</mana></stats>","plaintext":"Increases Mana"},"1026":{"id":1026,"name":"Blasting Wand","description":"<stats>+40 Ability Power</stats>","plaintext":"Moderately increases Ability Power"},"3101":{"id":3101,"name":"Stinger","description":"<stats>+35% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction","plaintext":"Increased Attack Speed and Cooldown Reduction"},"3222":{"id":3222,"name":"Mikael's Crucible","description":"<stats>+40 Magic Resist<br>+10% Cooldown Reduction<br><mana>+100% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive:</unique> +20% Heal and Shield Power<br><unique>UNIQUE Passive - Harmony:</unique> Grants bonus % Base Health Regen equal to your bonus % Base Mana Regen.<br><active>UNIQUE Active:</active> Cleanses all stuns, roots, taunts, fears, silences, and slows on an allied champion and grants them slow immunity for 2 seconds (120 second cooldown).<br><br>Successfully cleansing an effect this way grants the ally 40% movement speed for 2 seconds.","plaintext":"Activate to heal and remove all disabling effects from an allied champion"},"1043":{"id":1043,"name":"Recurve Bow","description":"<stats>+25% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal an additional 15 physical damage on hit.","plaintext":"Greatly increases Attack Speed"},"2011":{"id":2011,"name":"Elixir Of Skill","description":"<consumable>Click to Consume:</consumable> Grants <font color='#29E3D6'>+1 Skill Points</font>."},"3100":{"id":3100,"name":"Lich Bane","description":"<stats>+80 Ability Power<br>+7% Movement Speed<br>+10% Cooldown Reduction<br><mana>+250 Mana</mana></stats><br><br><unique>UNIQUE Passive - Spellblade:</unique> After using an ability, the next basic attack deals 75% Base Attack Damage (+50% of Ability Power) bonus magic damage on hit (1.5 second cooldown).","plaintext":"Grants a bonus to next attack after spell cast"},"1042":{"id":1042,"name":"Dagger","description":"<stats>+12% Attack Speed</stats>","plaintext":"Slightly increases Attack Speed"},"2010":{"id":2010,"name":"Total Biscuit of Rejuvenation","description":"<consumable>Click to Consume:</consumable> Restores 15 Health and 15 Mana immediately and then 150 Health over 15 seconds."},"3341":{"id":3341,"name":"Sweeping Lens (Trinket)","description":"<groupLimit>Limited to 1 Trinket.</groupLimit><br><br><active>Active:</active> Scans an area for 6 seconds, warning against hidden hostile units and revealing invisible traps and revealing / disabling wards (90 to 60 second cooldown).<br><br>Cast range and sweep radius gradually improve with level.<br><br><rules>(Switching to a <font color='#BBFFFF'>Totem</font>-type trinket will disable <font color='#BBFFFF'>Trinket</font> use for 120 seconds.)</rules>","plaintext":"Detects and disables nearby invisible wards and traps"},"3462":{"id":3462,"name":"Seer Stone (Trinket)","description":"<groupLimit>Limited to 1 Trinket.</groupLimit><br><br><active>Active:</active> Reveals a small area within <font color='#FFFFF'>2500</font> range for 3 seconds. Enemy champions will be revealed for 5 seconds (60 second cooldown)","plaintext":"Briefly reveals a nearby targeted area"},"1041":{"id":1041,"name":"Hunter's Machete","description":"<stats>+10% Life Steal vs. Monsters</stats><br><br><unique>UNIQUE Passive - Nail:</unique> Basic attacks deal 25 bonus damage on hit vs. Monsters. Killing monsters grants <font color='#99BBBB'><a href='SpecialJungleExperience'>special bonus experience</a></font>.","plaintext":"Provides damage and life steal versus Monsters"},"3340":{"id":3340,"name":"Warding Totem (Trinket)","description":"<groupLimit>Limited to 1 Trinket.</groupLimit><br><br><active>Active:</active> Consume a charge to place an invisible <font color='#BBFFFF'>Stealth Ward</font> which reveals the surrounding area for <scaleLevel>60 - 120</scaleLevel> seconds. <br><br>Stores one charge every <scaleLevel>180 - 90</scaleLevel> seconds, up to 2 maximum charges.<br><br>Ward duration and recharge time gradually improve with level.<br><br><rules>(Limit 3 <font color='#BBFFFF'>Stealth Wards</font> on the map per player. Switching to a <font color='#BBFFFF'>Lens</font> type trinket will disable <font color='#BBFFFF'>Trinket</font> use for 120 seconds.)</rules>","plaintext":"Periodically place a Stealth Ward"},"3461":{"id":3461,"name":"Golden Transcendence (Disabled)","description":"<unique>Active:</unique> Use this trinket to teleport to one of the battle platforms. Can only be used from the summoning platform.<br><br><i><font color='#FDD017'>''It is at this magical precipice where a champion is dismantled, reforged, and empowered.''</font></i>"},"3460":{"id":3460,"name":"Golden Transcendence","description":"<unique>Active:</unique> Use this trinket to teleport to one of the battle platforms. Can only be used from the summoning platform.<br><br><i><font color='#FDD017'>''It is at this magical precipice where a champion is dismantled, reforged, and empowered.''</font></i>"},"2009":{"id":2009,"name":"Total Biscuit of Rejuvenation","description":"<consumable>Click to Consume:</consumable> Restores 80 Health and 50 Mana over 10 seconds."},"1039":{"id":1039,"name":"Hunter's Talisman","description":"<stats><mana>+150% Base Mana Regen while in Jungle </mana></stats><br><br><unique>UNIQUE Passive - Tooth:</unique> Damaging a monster with a spell or attack steals 25 Health over 5 seconds. Killing monsters grants <font color='#99BBBB'><a href='SpecialJungleExperience'>special bonus experience</a></font>.","plaintext":"Provides damage against Monsters and Mana Regen in the Jungle"},"1038":{"id":1038,"name":"B. F. Sword","description":"<stats>+40 Attack Damage</stats>","plaintext":"Greatly increases Attack Damage"},"1037":{"id":1037,"name":"Pickaxe","description":"<stats>+25 Attack Damage</stats>","plaintext":"Moderately increases Attack Damage"},"1036":{"id":1036,"name":"Long Sword","description":"<stats>+10 Attack Damage</stats>","plaintext":"Slightly increases Attack Damage"},"2003":{"id":2003,"name":"Health Potion","description":"<groupLimit>Limited to 5 at one time. Limited to 1 type of Healing Potion.</groupLimit><br><br><consumable>Click to Consume:</consumable> Restores 150 Health over 15 seconds.","plaintext":"Consume to restore Health over time"},"3455":{"id":3455,"name":"Head of Kha'Zix","description":"<unique>UNIQUE Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions and gains bonus effects based on how many trophies he has. Kills and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive> Thrill of the Hunt's Movement Speed while stealthed is doubled."},"1055":{"id":1055,"name":"Doran's Blade","description":"<stats>+8 Attack Damage<br>+80 Health<br>+3% Life Steal</stats>","plaintext":"Good starting item for attackers"},"3112":{"id":3112,"name":"Guardian's Orb","description":"<stats>+150 Health<br>+30 Ability Power<br><mana>+10 Mana regen per 5 seconds</mana></stats><br><br><groupLimit>Limited to 1 Guardian's Item.</groupLimit>","plaintext":"Good starting item for mages"},"1054":{"id":1054,"name":"Doran's Shield","description":"<stats>+80 Health</stats><br><br><passive>Passive: </passive>Restores 6 Health every 5 seconds.<br><passive>Passive: </passive>Basic attacks deal an additional 5 physical damage to minions on hit.<br><unique>UNIQUE Passive:</unique> Regain an additional 20 health over 10 seconds after taking damage from an enemy champion.","plaintext":"Good defensive starting item"},"3111":{"id":3111,"name":"Mercury's Treads","description":"<stats>+25 Magic Resist</stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed<br><unique>UNIQUE Passive - Tenacity:</unique> Reduces the duration of stuns, slows, taunts, fears, silences, blinds, polymorphs, and immobilizes by 30%.","plaintext":"Increases Movement Speed and reduces duration of disabling effects"},"1053":{"id":1053,"name":"Vampiric Scepter","description":"<stats>+15 Attack Damage<br>+10% Life Steal</stats>","plaintext":"Basic attacks restore Health"},"3110":{"id":3110,"name":"Frozen Heart","description":"<stats>+90 Armor<br>+20% Cooldown Reduction<br><mana>+400 Mana</mana></stats><br><br><aura>UNIQUE Aura:</aura> Reduces the Attack Speed of nearby enemies by 15%.","plaintext":"Massively increases Armor and slows enemy basic attacks"},"1052":{"id":1052,"name":"Amplifying Tome","description":"<stats>+20 Ability Power</stats>","plaintext":"Slightly increases Ability Power"},"1051":{"id":1051,"name":"Brawler's Gloves","description":"<stats>+10% Critical Strike Chance</stats>","plaintext":"Slightly increases Critical Strike Chance"},"2140":{"id":2140,"name":"Elixir of Wrath","description":"<stats><levelLimit>Level 9 required to purchase.</levelLimit></stats><br><br><consumable>Click to Consume:</consumable> Grants +30 Attack Damage and <font color='#FF8811'><u>Bloodlust</u></font> for 3 minutes.<br><br><font color='#FF8811'><u>Bloodlust:</u></font> Dealing physical damage to champions heals for 15% of the damage dealt.<br><br><rules>(Only one Elixir effect may be active at a time.)</rules>","plaintext":"Temporarily grants Attack Damage and heals you when dealing physical damage to champions."},"3109":{"id":3109,"name":"Knight's Vow","description":"<stats>+400 Health<br>+100% Base Health Regen <br>+40 Armor</stats><br><br><active>UNIQUE Active:</active> Designate an allied champion as your <a href='KnightsVowPartner'>Partner</a> (90 second cooldown).<br><passive>UNIQUE Passive:</passive> If your <a href='KnightsVowPartner'>Partner</a> is nearby, gain +20 additional Armor and +15% Movement Speed towards them.<br><passive>UNIQUE Passive:</passive> If your <a href='KnightsVowPartner'>Partner</a> is nearby, heal for 12% of the damage your <a href='KnightsVowPartner'>Partner</a> deals to champions and redirect 12% of the damage your <a href='KnightsVowPartner'>Partner</a> takes from champions to you as <font color='#FFFFFF'>true</font> damage (healing and damage redirection are reduced by 50% if you are ranged).<br><br><rules>(Champions can only be linked by one Knight's Vow at a time.)</rules>","plaintext":"Partner with an ally to protect each other"},"3902":{"id":3902,"name":"Death's Daughter","description":"Requires 500 Silver Serpents.<br><br><unique>UNIQUE Passive:</unique> Cannon Barrage additionally fires a mega-cannonball at center of the Barrage, dealing 300% true damage and slowing them by 60% for 1.5 seconds. ","plaintext":"Cannon Barrage fires a mega-cannonball"},"3108":{"id":3108,"name":"Fiendish Codex","description":"<stats>+30 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction","plaintext":"Increases Ability Power and Cooldown Reduction"},"3903":{"id":3903,"name":"Raise Morale","description":"Requires 500 Silver Serpents.<br><br><unique>UNIQUE Passive:</unique> Allies in the Cannon Barrage gain 30% Movement Speed for 2 seconds.","plaintext":"Cannon Barrage hastes allies"},"2139":{"id":2139,"name":"Elixir of Sorcery","description":"<stats><levelLimit>Level 9 required to purchase.</levelLimit></stats><br><br><consumable>Click to Consume:</consumable> Grants +50 Ability Power, 15 bonus Mana Regen per 5 seconds and <font color='#FF8811'><u>Sorcery</u></font> for 3 minutes. <br><br><font color='#FF8811'><u>Sorcery:</u></font> Damaging a champion or turret deals 25 bonus True Damage. This effect has a 5 second cooldown versus champions but no cooldown versus turrets.<br><br><rules>(Only one Elixir effect may be active at a time.)</rules><br>","plaintext":"Temporarily grants Ability Power and Bonus Damage to champions and turrets."},"3107":{"id":3107,"name":"Redemption","description":"<stats>+300 Health<br>+75% Base Health Regen <br>+125% Base Mana Regen <br>+10% Cooldown Reduction</stats><br><br><passive>UNIQUE Passive:</passive> +10% Heal and Shield Power<br><active>UNIQUE Active:</active> Target an area within 5500 range. After 2.5 seconds, call down a beam of light to heal allies for 40 (+25 per level of target) Health, burn enemy champions for 10% of their maximum Health as <font color='#FFFFFF'>true</font> damage and deal 250 <font color='#FFFFFF'>true</font> damage to enemy minions (120 second cooldown).<br><br>Can be used while dead.<br><br><rules>(Half effect if the target has been affected by another Redemption recently.)</rules>","plaintext":"Further improves defenses for nearby allies"},"2138":{"id":2138,"name":"Elixir of Iron","description":"<stats><levelLimit>Level 9 required to purchase.</levelLimit></stats><br><br><consumable>Click to Consume:</consumable> Grants +300 Health, 25% Tenacity, increased champion size, and <font color='#FF8811'><u>Path of Iron</u></font> for 3 minutes.<br><br><font color='#FF8811'><u>Path of Iron:</u></font> Moving leaves a path behind that boosts allied champion's Movement Speed by 15%.<br><br><rules>(Only one Elixir effect may be active at a time.)</rules>","plaintext":"Temporarily increases defenses. Leaves a trail for allies to follow."},"3348":{"id":3348,"name":"Arcane Sweeper","description":"<active>UNIQUE Active - Hunter's Sight:</active> An arcane mist grants vision in the target area for 5 seconds, revealing enemy champions and granting <font color='#ee91d7'>True Sight</font> of traps in the area for 3 seconds (90 second cooldown).","plaintext":"Activate to reveal a nearby area of the map"},"3105":{"id":3105,"name":"Aegis of the Legion","description":"<stats>+30 Armor<br>+30 Magic Resist</stats>","plaintext":"Grants Armor and Magic Resistance"},"2015":{"id":2015,"name":"Kircheis Shard","description":"<stats>+15% Attack Speed</stats><br><br><passive>Passive:</passive> Moving and attacking will make an attack <a href='Energized'>Energized</a>.<br><br><unique>UNIQUE Passive - Energized Strike:</unique> Your Energized attacks deal 50 bonus magic damage on hit.","plaintext":"Attack speed and a chargable magic hit"},"3104":{"id":3104,"name":"Lord Van Damm's Pillager","description":"<stats>+300 Health<br>+50 Attack Damage<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive - Ashes to Ashes:</unique> Controlling the nearest Altar sets you aflame, dealing 25 (+1 per champion level) magic damage per second to nearby enemies (Deals 50% bonus damage to minions and monsters). Controlling the furthest Altar causes your basic attacks to burn targets for up to 114 true damage (based on champion level) over 3 seconds.","plaintext":"Reduces Armor of nearby enemies"},"3345":{"id":3345,"name":"Soul Anchor (Trinket)","description":"<groupLimit>Limited to 1 Trinket.</groupLimit><br><br><active>Active:</active> Consumes a charge to instantly revive at your Summoner Platform and grants 125% Movement Speed that decays over 12 seconds.<br><br><rules>Additional charges are gained at levels 9 and 14.</rules><br><br><font color='#BBFFFF'>(Max: 2 charges)</font></rules><br><br>","plaintext":"Consumes charge to revive champion."},"3102":{"id":3102,"name":"Banshee's Veil","description":"<stats>+70 Ability Power<br>+45 Magic Resist<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique> Grants a spell shield that blocks the next enemy ability. This shield refreshes after no damage is taken from enemy champions for 40 seconds.","plaintext":"Periodically blocks enemy abilities"},"3901":{"id":3901,"name":"Fire at Will","description":"Requires 500 Silver Serpents.<br><br><unique>UNIQUE Passive:</unique> Cannon Barrage fires at an increasing rate over time (additional 6 waves over the duration).","plaintext":"Cannon Barrage gains extra waves"},"3123":{"id":3123,"name":"Executioner's Calling","description":"<stats>+15 Attack Damage</stats><br><br><unique>UNIQUE Passive - Executioner:</unique> Physical damage inflicts <a href='GrievousWounds'>Grievous Wounds</a> on enemy champions for 3 seconds.","plaintext":"Overcomes enemies with high health gain"},"2033":{"id":2033,"name":"Corrupting Potion","description":"<groupLimit>Limited to 1 type of Healing Potion.</groupLimit><br><br><active>UNIQUE Active:</active> Consumes a charge to restore 125 Health and 75 Mana over 12 seconds and grants <font color='#FF8811'><u>Touch of Corruption</u></font> during that time. Holds up to 3 charges that refills upon visiting the shop.<br><br><font color='#FF8811'><u>Touch of Corruption:</u></font> Damaging spells and attacks burn enemy champions for <scaleLevel>15 - 30</scaleLevel> magic damage over 3 seconds. (Half Damage for Area of Effect or Damage over Time spells. Damage increases with champion level.)<br><br><rules>(Corrupting Potion can be used even at full Health and Mana.)</rules>","plaintext":"Restores Health and Mana over time and boosts combat power - Refills at Shop"},"3001":{"id":3001,"name":"Abyssal Scepter","description":"<stats>+300 Health<br>+65 Magic Resist<br>+100% Base Health Regeneration <br>+10% Cooldown Reduction</stats><br><br><aura>UNIQUE Aura:</aura> Nearby enemy champions take 10% more magic damage.","plaintext":"Nearby enemies take more magic damage"},"3122":{"id":3122,"name":"Wicked Hatchet","description":"<stats>+20 Attack Damage<br>+10% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique> Critical Strikes cause your target to bleed for an additional 60% of your bonus Attack Damage as magic damage over 3 seconds.","plaintext":"Critical Strikes cause your target to bleed"},"3364":{"id":3364,"name":"Oracle Alteration","description":"<levelLimit>* Level 9+ required to upgrade.</levelLimit><stats></stats><br><br>Alters the <font color='#FFFFFF'>Sweeping Lens</font> Trinket:<br><br><stats><font color='#00FF00'>+</font> Increased detection radius<br><font color='#00FF00'>+</font> Sweeping effect follows you for 10 seconds<br><font color='#FF0000'>-</font> <font color='#FF6600'>Cast range reduced to zero</font></stats>","plaintext":"Disables nearby invisible wards and traps for a duration"},"2032":{"id":2032,"name":"Hunter's Potion","description":"<groupLimit>Limited to 1 type of Healing Potion.</groupLimit><br><br><active>UNIQUE Active:</active> Consumes a charge to restore 60 Health and 35 Mana over 8 seconds. Holds up to 5 charges and refills upon visiting the shop.<br><br>Killing a Large Monster grants 1 charge.<br><br><rules>(Killing a Large Monster at full charges will automatically consume the newest charge.)</rules>","plaintext":"Restores Health and Mana over time - Refills at shop and has increased capacity"},"3363":{"id":3363,"name":"Farsight Alteration","description":"<levelLimit>* Level 9+ required to upgrade.</levelLimit><br><br>Alters the <font color='#FFFFFF'>Warding Totem</font> Trinket:<br><br><stats><font color='#00FF00'>+</font> Massively increased cast range (+650%)<br><font color='#00FF00'>+</font> Infinite duration and does not count towards ward limit<br><font color='#FF0000'>-</font> <font color='#FF6600'>10% increased cooldown</font><br><font color='#FF0000'>-</font> <font color='#FF6600'>Ward is visible, fragile, untargetable by allies</font><br><font color='#FF0000'>-</font> <font color='#FF6600'>45% reduced ward vision radius</font><br><font color='#FF0000'>-</font> <font color='#FF6600'>Cannot store charges</font></stats>","plaintext":"Grants increased range and reveals the targetted area"},"2031":{"id":2031,"name":"Refillable Potion","description":"<groupLimit>Limited to 1 type of Healing Potion.</groupLimit><br><br><active>UNIQUE Active:</active> Consumes a charge to restore 125 Health over 12 seconds. Holds up to 2 charges and refills upon visiting the shop.","plaintext":"Restores Health over time. Refills at shop."},"3362":{"id":3362,"name":"Greater Vision Totem (Trinket)","description":"<groupLimit>Limited to 1 Trinket.</groupLimit><levelLimit> *Level 9+ required to upgrade.</levelLimit><stats></stats><br><br><unique>UNIQUE Active:</unique> Places a visible ward that reveals the surrounding area and invisible units in the area until killed (120 second cooldown). Limit 1 <font color='#BBFFFF'>Vision Ward</font> on the map per player.<br><br><rules>(Trinkets cannot be used in the first 30 seconds of a game. Selling a Trinket will disable Trinket use for 120 seconds).</rules>","plaintext":"Periodically place a Vision Ward"},"3361":{"id":3361,"name":"Greater Stealth Totem (Trinket)","description":"<groupLimit>Limited to 1 Trinket.</groupLimit><levelLimit> *Level 9+ required to upgrade.</levelLimit><stats></stats><br><br><unique>UNIQUE Active:</unique> Consume a charge to place an invisible ward that reveals the surrounding area for 180 seconds. Stores a charge every 60 seconds, up to 2 total. Limit 3 <font color='#BBFFFF'>Stealth Wards</font> on the map per player.<br><br><rules>(Trinkets cannot be used in the first 30 seconds of a game. Selling a Trinket will disable Trinket use for 120 seconds).</rules>","plaintext":"Periodically place a Stealth Ward"},"3117":{"id":3117,"name":"Boots of Mobility","description":"<unique>UNIQUE Passive - Enhanced Movement:</unique> +25 Movement Speed. Increases to +115 Movement Speed when out of combat for 5 seconds.","plaintext":"Greatly enhances Movement Speed when out of combat"},"3116":{"id":3116,"name":"Rylai's Crystal Scepter","description":"<stats>+300 Health<br>+75 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> Damaging spells and abilities reduce enemy movement speed by 20% for 1 second.","plaintext":"Abilities slow enemies"},"1058":{"id":1058,"name":"Needlessly Large Rod","description":"<stats>+60 Ability Power</stats>","plaintext":"Greatly increases Ability Power"},"3115":{"id":3115,"name":"Nashor's Tooth","description":"<stats>+50% Attack Speed<br>+80 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +20% Cooldown Reduction<br><unique>UNIQUE Passive:</unique> Basic attacks deal 15 (+15% of Ability Power) bonus magic damage on hit.<br>","plaintext":"Increases Attack Speed, Ability Power, and Cooldown Reduction"},"3599":{"id":3599,"name":"The Black Spear","description":"<stats></stats><br><active>Active:</active> Offer to bind with an ally for the remainder of the game, becoming Oathsworn Allies. Oathsworn empowers you both while near one another.","plaintext":"Kalista's spear that binds an Oathsworn Ally."},"1057":{"id":1057,"name":"Negatron Cloak","description":"<stats>+40 Magic Resist</stats>","plaintext":"Moderately increases Magic Resist"},"3114":{"id":3114,"name":"Forbidden Idol","description":"<stats><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction<br><unique>UNIQUE Passive:</unique> +8% Heal and Shield Power","plaintext":"Increases Mana Regeneration and Cooldown Reduction"},"1056":{"id":1056,"name":"Doran's Ring","description":"<stats>+60 Health<br>+15 Ability Power<br><mana>+50% Base Mana Regen </mana></stats><br><br><mana><passive>Passive:</passive> Restores 4 Mana upon killing a unit.</mana>","plaintext":"Good starting item for casters"},"3113":{"id":3113,"name":"Aether Wisp","description":"<stats>+30 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +5% Movement Speed","plaintext":"Increases Ability Power and Movement Speed"},"2045":{"id":2045,"name":"Ruby Sightstone","description":"<stats>+500 Health</stats><br><br><unique>UNIQUE Passive:</unique> Item Active cooldowns are reduced by 20%.<br><active>UNIQUE Active - Warding:</active> Consumes a charge to place a <font color='#BBFFFF'>Stealth Ward</font> that reveals the surrounding area for 150 seconds. Holds up to 4 charges and refills when visiting the shop.<br><br><rules>(A player may only have 3 <font color='#BBFFFF'>Stealth Wards</font> on the map at one time. Unique Passives with the same name don't stack.)</rules>","plaintext":"Greatly increases Health and provides Stealth Wards over time"},"3134":{"id":3134,"name":"Serrated Dirk","description":"<stats>+25 Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> +10 <a href='Lethality'>Lethality</a><br><unique>UNIQUE Passive:</unique> +20 Movement Speed out of Combat.","plaintext":"Increases Attack Damage and Lethality"},"3133":{"id":3133,"name":"Caulfield's Warhammer","description":"<stats>+25 Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction","plaintext":"Attack Damage and Cooldown Reduction"},"3010":{"id":3010,"name":"Catalyst of Aeons","description":"<stats>+225 Health<br><mana>+300 Mana</mana></stats><br><br><unique>UNIQUE Passive - Eternity:</unique> 15% of damage taken from champions is gained as Mana. <br><br>Spending Mana restores 20% of the cost as Health, up to 15 per spell cast. <br><br><rules>(Toggled Spells heal for a maximum of 15 per second.)</rules>","plaintext":"Spend Mana to recover Health"},"3252":{"id":3252,"name":"Poacher's Dirk","description":"<stats>+10 Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> +20 Movement Speed out of Combat<br><unique>UNIQUE Passive:</unique> After poaching 3 large monsters from the enemy jungle (50 second cooldown), transforms into a Serrated Dirk.","plaintext":"Transforms into a Serrated Dirk after poaching in the enemy jungle."},"3009":{"id":3009,"name":"Boots of Swiftness","description":"<unique>UNIQUE Passive - Enhanced Movement:</unique> +55 Movement Speed<br><unique>UNIQUE Passive - Slow Resist:</unique> Movement slowing effects are reduced by 25%.","plaintext":"Enhances Movement Speed and reduces the effect of slows"},"3008":{"id":3008,"name":"Manamune (Quick Charge)","description":"<stats>+25 Attack Damage<br><mana>+250 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum Mana. Refunds 15% of Mana spent.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +6 maximum Mana (max +750 Mana) for each basic attack, spell cast or Mana expenditure (occurs up to 2 times every 8 seconds).<br><br>Transforms into Muramana at +750 Mana.</mana>","plaintext":"Increases Attack Damage based on maximum Mana"},"3007":{"id":3007,"name":"Archangel's Staff (Quick Charge)","description":"<stats>+80 Ability Power<br><mana>+250 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants Ability Power equal to 3% of maximum Mana. Refunds 25% of Mana spent. <br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +12 maximum Mana (max +750 Mana) for each spell cast or Mana expenditure (occurs up to 2 times every 8 seconds).<br><br>Transforms into Seraph's Embrace at +750 Mana.</mana>","plaintext":"Increases Ability Power based on maximum Mana"},"3006":{"id":3006,"name":"Berserker's Greaves","description":"<stats> +35% Attack Speed</stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed","plaintext":"Enhances Movement Speed and Attack Speed"},"3004":{"id":3004,"name":"Manamune","description":"<stats>+25 Attack Damage<br><mana>+250 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum Mana. Refunds 15% of Mana spent.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +4 maximum Mana (max +750 Mana) for each basic attack, spell cast or Mana expenditure (occurs up to 2 times every 8 seconds).<br><br>Transforms into Muramana at +750 Mana.</mana>","plaintext":"Increases Attack Damage based on maximum Mana"},"3003":{"id":3003,"name":"Archangel's Staff","description":"<stats>+80 Ability Power<br><mana>+250 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants Ability Power equal to 3% of maximum Mana. Refunds 25% of Mana spent.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +8 maximum Mana (max +750 Mana) for each spell cast or Mana expenditure (occurs up to 2 times every 8 seconds).<br><br>Transforms into Seraph's Embrace at +750 Mana.</mana>","plaintext":"Increases Ability Power based on maximum Mana"},"3124":{"id":3124,"name":"Guinsoo's Rageblade","description":"<stats>+35 Attack Damage<br>+50 Ability Power<br>+25% Attack Speed</stats><br><br><passive>Passive: </passive>Basic attacks deal an additional 15 magic damage on hit.<br><unique>UNIQUE Passive:</unique> Basic attacks grant +8% Attack Speed, +3 Attack Damage, and +4 Ability Power for 5 seconds (stacks up to 6 times). While you have 6 stacks, gain <unlockedPassive>Guinsoo's Rage</unlockedPassive>.<br><br><unlockedPassive>Guinsoo's Rage:</unlockedPassive> Every other basic attack will trigger on hit effects an additional time.","plaintext":"Increases Ability Power and Attack Damage"},"3800":{"id":3800,"name":"Righteous Glory","description":"<stats>+500 Health<br><mana>+300 Mana</mana><br>+100% Base Health Regen </stats><br><br><unique>UNIQUE Passive - Eternity:</unique> 15% of damage taken from champions is gained as Mana. Spending Mana restores 20% of the cost as Health, up to 25 per spell cast. <br><unique>UNIQUE Active:</unique> Grants +75% Movement Speed when moving towards enemies or enemy turrets for 4 seconds. After 3 seconds, a shockwave is emitted, slowing nearby enemy champion Movement Speed by 75% for 2 second(s) (90 second cooldown).<br><br>This effect may be reactivated early to instantly release the shockwave.","plaintext":"Grants Health, Mana. Activate to speed towards enemies and slow them."},"3801":{"id":3801,"name":"Crystalline Bracer","description":"<stats>+200 Health<br>+50% Base Health Regen </stats>","plaintext":"Grants Health and Health Regen"},"3802":{"id":3802,"name":"Lost Chapter","description":"<stats>+25 Ability Power<br><mana>+300 Mana</mana></stats><br><br><unique>UNIQUE Passive:</unique> Upon levelling up, restores 20% of your maximum Mana over 3 seconds.","plaintext":"Restores Mana upon levelling up."},"3024":{"id":3024,"name":"Glacial Shroud","description":"<stats>+25 Armor<br><mana>+250 Mana</mana></stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction","plaintext":"Increases Armor and Cooldown Reduction"},"3145":{"id":3145,"name":"Hextech Revolver","description":"<stats>+40 Ability Power</stats><br><br><unique>UNIQUE Passive - Magic Bolt:</unique> Damaging an enemy champion with a basic attack shocks them for <scaleLevel>50 - 125</scaleLevel> bonus magic damage (40 second cooldown, shared with other <font color='#9999FF'><a href='itembolt'>Hextech</a></font> items).<br><br>Magic Bolt's cooldown is reduced by Active Item cooldown reduction.<br><br><rules>(Damage scales based on level. Hextech effects can trigger other item spell effects.)</rules>","plaintext":"Increases Ability Power. Deal bonus magic damage on attack periodically."},"2055":{"id":2055,"name":"Control Ward","description":"<groupLimit>Can only carry 3 Control Wards in inventory.</groupLimit><br><br><consumable>Click to Consume:</consumable> Places a ward that grants vision of the surrounding area. This device will also reveal invisible traps and reveal / disable wards. Control Wards do not disable other Control Wards. Camouflaged units will also be revealed. <br><br>Limit 1 <font color='#BBFFFF'>Control Ward</font> on the map per player.","plaintext":"Used to disable wards and invisible traps in an area."},"3144":{"id":3144,"name":"Bilgewater Cutlass","description":"<stats>+25 Attack Damage<br>+10% Life Steal</stats><br><br><active>UNIQUE Active:</active> Deals 100 magic damage and slows the target champion's Movement Speed by 25% for 2 seconds (90 second cooldown).","plaintext":"Activate to deal magic damage and slow target champion"},"2054":{"id":2054,"name":"Diet Poro-Snax","description":"All the flavor of regular Poro-Snax, without the calories! Keeps your Poro happy AND healthy.<br><br><consumable>Click to Consume:</consumable> Gives your Poros a delicious healthy treat."},"3022":{"id":3022,"name":"Frozen Mallet","description":"<stats>+700 Health<br>+30 Attack Damage</stats><br><br><unique>UNIQUE Passive - Icy:</unique> Basic attacks slow the target's Movement Speed for 1.5 seconds on hit (40% slow for melee attacks, 30% slow for ranged attacks).","plaintext":"Basic attacks slow enemies"},"3143":{"id":3143,"name":"Randuin's Omen","description":"<stats>+350 Health<br>+60 Armor</stats><br><br><unique>UNIQUE Passive:</unique> -20% damage taken from basic attack critical strikes.<br><unique>UNIQUE Passive - Cold Steel:</unique> When hit by basic attacks, reduces the attacker's Attack Speed by 15% for 1 second.<br><active>UNIQUE Active:</active> Slows the Movement Speed of nearby enemy units by 55% for 2 seconds (60 second cooldown).","plaintext":"Greatly increases defenses, activate to slow nearby enemies"},"2053":{"id":2053,"name":"Raptor Cloak","description":"<stats>+40 Armor<br>+125% Base Health Regen </stats><br><br><unique>UNIQUE Passive - Point Runner:</unique> Builds up to +20% Movement Speed over 2 seconds while near turrets, fallen turrets and Void Gates.","plaintext":"Enhances Movement Speed near turrets"},"3142":{"id":3142,"name":"Youmuu's Ghostblade","description":"<stats>+60 Attack Damage<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique> +15 <a href='Lethality'>Lethality</a><br><unique>UNIQUE Passive:</unique> +20 Movement Speed out of Combat<br><active>UNIQUE Active:</active> Grants +20% Movement Speed for 6 seconds (45 second cooldown).","plaintext":"Activate to greatly increase Movement Speed"},"2052":{"id":2052,"name":"Poro-Snax","description":"This savory blend of free-range, grass-fed Avarosan game hens and organic, non-ZMO Freljordian herbs contains the essential nutrients necessary to keep your Poro purring with pleasure.<br><br><i>All proceeds will be donated towards fighting Noxian animal cruelty.</i>"},"3020":{"id":3020,"name":"Sorcerer's Shoes","description":"<stats>+15 <a href='FlatMagicPen'>Magic Penetration</a></stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed","plaintext":"Enhances Movement Speed and magic damage"},"1083":{"id":1083,"name":"Cull","description":"<stats>+7 Attack Damage<br>+3 Life on Hit</stats><br><br><unique>UNIQUE Passive:</unique> Killing a lane minion grants 1 additional Gold. Killing 100 lane minions grants an additional 350 bonus gold immediately and disables this passive.","plaintext":"Provides damage and Life Steal on hit - Killing minions grant bonus Gold"},"2051":{"id":2051,"name":"Guardian's Horn","description":"<stats>+150 Health</stats><br><br><passive>Passive: </passive>Restores 20 Health every 5 seconds.<br><unique>UNIQUE Passive:</unique> Blocks 12 damage from attacks and spells from champions (25% effectiveness vs. damage over time abilities).<br><br><groupLimit>Limited to 1 Guardian's Item.</groupLimit>","plaintext":"Good starting item for tanks"},"3140":{"id":3140,"name":"Quicksilver Sash","description":"<stats>+30 Magic Resist</stats><br><br><active>UNIQUE Active - Quicksilver:</active> Removes all crowd control debuffs (90 second cooldown).","plaintext":"Activate to remove all crowd control debuffs"},"1082":{"id":1082,"name":"The Dark Seal","description":"<stats>+15 Ability Power<br>+25% Increased Healing from Potions<br><mana>+100 Mana</mana></stats><br><br><unique>UNIQUE Passive - Dread:</unique> Grants +3 Ability Power per Glory. <br><unique>UNIQUE Passive - Do or Die:</unique> Grants 2 Glory for a champion kill or 1 Glory for an assist, up to 10 Glory total. Lose 4 Glory on death.","plaintext":"Provides Ability Power and Mana. Increases in power as you kill enemies."},"2050":{"id":2050,"name":"Explorer's Ward","description":"<consumable>Click to Consume:</consumable> Places an invisible ward that reveals the surrounding area for 60 seconds."},"3814":{"id":3814,"name":"Edge of Night","description":"<stats>+55 Attack Damage<br>+35 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique> +15 <a href='Lethality'>Lethality</a><br><unique>UNIQUE Passive:</unique> +20 Movement Speed out of Combat<br><unique>UNIQUE Active - Night's Veil:</unique> Channel for 1.5 second to grant a spell shield that blocks the next enemy ability. Lasts for 5 seconds (45 second cooldown).<br><br><rules>(Can move while channeling, but taking damage breaks the channel.)</rules>","plaintext":"Blocks an incoming enemy spell."},"3139":{"id":3139,"name":"Mercurial Scimitar","description":"<stats>+65 Attack Damage<br>+35 Magic Resist<br>+10% Life Steal</stats><br><br><active>UNIQUE Active - Quicksilver:</active> Removes all crowd control debuffs and also grants +50% bonus Movement Speed for 1 second (90 second cooldown).","plaintext":"Activate to remove all crowd control debuffs and grant massive Movement Speed"},"2049":{"id":2049,"name":"Sightstone","description":"<stats>+150 Health</stats><br><br><active>UNIQUE Active - Warding:</active> Consumes a charge to place a <font color='#BBFFFF'>Stealth Ward</font> that reveals the surrounding area for 150 seconds. Holds up to 3 charges which refill upon visiting the shop. <br><br><rules>(A player may only have 3 <font color='#BBFFFF'>Stealth Wards</font> on the map at one time. Unique Passives with the same name don't stack.)</rules>","plaintext":"Increases Health and provides Stealth Wards over time"},"3137":{"id":3137,"name":"Dervish Blade","description":"<stats>+50% Attack Speed<br>+45 Magic Resist<br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active - Quicksilver:</active> Removes all debuffs, and if the champion is melee, also grants +50% bonus Movement Speed for 1 second (90 second cooldown).","plaintext":"Activate to remove all debuffs and grant massive Movement Speed"},"2047":{"id":2047,"name":"Oracle's Extract","description":"<consumable>Click to Consume:</consumable> Grants detection of nearby invisible or unseen enemy units for 5 minutes.","plaintext":"Allows champion to see invisible or unseen enemy units"},"3136":{"id":3136,"name":"Haunting Guise","description":"<stats>+25 Ability Power<br>+200 Health</stats><br><br><unique>UNIQUE Passive - Eyes of Pain:</unique> +15 <a href='FlatMagicPen'>Magic Penetration</a>","plaintext":"Increases magic damage"},"3135":{"id":3135,"name":"Void Staff","description":"<stats>+80 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +35% <a href='TotalMagicPen'>Magic Penetration</a>.","plaintext":"Increases magic damage"},"3812":{"id":3812,"name":"Death's Dance","description":"<stats>+80 Attack Damage<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique> Dealing physical damage heals for 15% of the damage dealt. This is 33% as effective for Area of Effect damage.<br><unique>UNIQUE Passive:</unique> 30% of damage taken is dealt as a Bleed effect over 3 seconds instead.","plaintext":"Trades incoming damage now for incoming damage later"},"3035":{"id":3035,"name":"Last Whisper","description":"<stats>+10 Attack Damage</stats><br><br><unique>UNIQUE Passive - Last Whisper:</unique> +35% <a href='BonusArmorPen'>Bonus Armor Penetration</a>","plaintext":"Overcomes enemies with high Armor"},"3156":{"id":3156,"name":"Maw of Malmortius","description":"<stats>+50 Attack Damage<br>+45 Magic Resist<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive - Lifeline:</unique> Upon taking magic damage that would reduce Health below 30%, grants a shield that absorbs magic damage equal to 300 + 1 per bonus Magic Resistance for 5 seconds (90 second cooldown).<br><unlockedPassive>Lifegrip:</unlockedPassive> When <i>Lifeline</i> triggers, gain +20 Attack Damage, +10% Spell Vamp and +10% Life Steal until out of combat.","plaintext":"Grants bonus Attack Damage when Health is low"},"3034":{"id":3034,"name":"Giant Slayer","description":"<stats>+10 Attack Damage</stats><br><br><unique>UNIQUE Passive - Giant Slayer:</unique> Grants up to +10% physical damage against enemy champions with greater maximum Health than you (+1% damage per 100 Health difference, maxing at 1000 Health difference).<br><br><rules>(Unique Passives with the same name don't stack.)</rules>","plaintext":"Overcomes enemies with high Health"},"3155":{"id":3155,"name":"Hexdrinker","description":"<stats>+20 Attack Damage<br>+35 Magic Resist</stats><br><br><unique>UNIQUE Passive - Lifeline:</unique> Upon taking magic damage that would reduce Health below 30%, grants a shield that absorbs 110 to 280 (based on level) magic damage for 5 seconds (90 second cooldown).","plaintext":"Increases Attack Damage and Magic Resist"},"3033":{"id":3033,"name":"Mortal Reminder","description":"<stats>+50 Attack Damage</stats><br><br><unique>UNIQUE Passive - Executioner:</unique> Physical damage inflicts <a href='GrievousWounds'>Grievous Wounds</a> on enemy champions for 5 seconds.<br><unique>UNIQUE Passive - Last Whisper:</unique> +35% <a href='BonusArmorPen'>Bonus Armor Penetration</a>.","plaintext":"Overcomes enemies with high Health recovery and Armor"},"3153":{"id":3153,"name":"Blade of the Ruined King","description":"<stats>+40 Attack Damage<br>+25% Attack Speed<br>+15% Life Steal</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal 8% of the target's current Health in bonus physical damage (max 60 vs. monsters and minions) on hit. Life Steal applies to this damage.<br><active>UNIQUE Active:</active> Deals 100 magic damage to target champion and steals 25% of their Movement Speed for 3 seconds (90 second cooldown).","plaintext":"Deals damage based on target's Health, can steal Movement Speed"},"3031":{"id":3031,"name":"Infinity Edge","description":"<stats>+70 Attack Damage<br>+20% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique> Critical strike bonus damage is increased by 50%.","plaintext":"Massively enhances critical strikes"},"3152":{"id":3152,"name":"Hextech Protobelt-01","description":"<stats>+300 Health<br>+60 Ability Power<br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Active - Fire Bolt:</unique> Dash forward and unleash a nova of fire bolts that deal <scaleLevel>75 - 150</scaleLevel> (+25% of your Ability Power) as magic damage (40 second cooldown, shared with other <font color='#9999FF'><a href='itembolt'>Hextech</a></font> items).<br><br>Champions and Monsters hit by multiple fire bolts take 10% damage per additional bolt.<br><br><rules>(This dash cannot pass through terrain.)</rules>","plaintext":"Activate to dash forward and unleash a fiery explosion"},"3030":{"id":3030,"name":"Hextech GLP-800","description":"<stats>+300 Health<br><mana>+400 Mana</mana><br>+80 Ability Power</stats><br><br><unique>UNIQUE Passive - Eternity:</unique> 15% of damage taken from champions is gained as Mana. Spending Mana restores 20% of the cost as Health, up to 25 per spell cast.<br><unique>UNIQUE Active - Frost Bolt:</unique> Fires a spray of icy bolts that explode, dealing <scaleLevel>100 - 200</scaleLevel> (+35% of your Ability Power) magic damage to all enemies hit. (40 second cooldown, shared with other <font color='#9999FF'><a href='itembolt'>Hextech</a></font> items).<br><br>Enemies hit are slowed by 65% decaying over 0.5 seconds.<br><br><rules>(Frost Bolt has a cast time, in contrast to most actives.)</rules> ","plaintext":"Activate to fire icy bolts to slow enemies"},"3151":{"id":3151,"name":"Liandry's Torment","description":"<stats>+80 Ability Power<br>+300 Health</stats><br><br><unique>UNIQUE Passive - Eyes of Pain:</unique> +15 <a href='FlatMagicPen'>Magic Penetration</a><br><unique>UNIQUE Passive:</unique> Spells burn enemies for 3 seconds, dealing bonus magic damage equal to 2% of their current Health per second. Burn damage is doubled against <a href='MovementImpaired'>movement-impaired</a> units.","plaintext":"Spell damage burns enemies for a portion of their Health"},"1402":{"id":1402,"name":"Enchantment: Runic Echoes","description":"<stats>+60 Ability Power<br>+7% Movement Speed</stats><br><br><unique>UNIQUE Passive - Echo:</unique> Gain charges upon moving or casting. At 100 charges, the next damaging spell hit expends all charges to deal 60 (+10% of Ability Power) bonus magic damage to up to 4 targets on hit.<br><br>This effect deals 250% damage to Large Monsters. Hitting a Large Monster with this effect will restore 18% of your missing Mana.","plaintext":"Grants Ability Power and periodically empowers your Spells"},"3706":{"id":3706,"name":"Stalker's Blade","description":"<groupLimit>Limited to 1 Jungle item</groupLimit><br><br><stats>+10% Life Steal vs. Monsters<br><mana>+180% Base Mana Regen while in Jungle</mana></stats><br><br><unique>UNIQUE Passive - Chilling Smite:</unique> Smite can be cast on enemy champions, dealing reduced true damage and stealing 20% Movement Speed for 2 seconds. <br><unique>UNIQUE Passive - Tooth / Nail:</unique> Basic attacks deal 25 bonus damage vs. monsters. Damaging a monster with a spell or attack steals 30 Health over 5 seconds. Killing monsters grants <font color='#99BBBB'><a href='SpecialJungleExperience'>special bonus experience</a></font>.","plaintext":"Lets your Smite slow Champions"},"1401":{"id":1401,"name":"Enchantment: Cinderhulk","description":"<stats>+400 Health<br>+15% Bonus Health</stats><br><br><unique>UNIQUE Passive - Immolate:</unique> Deals 11 (+1 per champion level) magic damage a second to nearby enemies while in combat. Deals 200% bonus damage to minions and monsters. ","plaintext":"Grants Health and Immolate Aura"},"3029":{"id":3029,"name":"Rod of Ages (Quick Charge)","description":"<stats>+300 Health<br><mana>+300 Mana</mana><br>+60 Ability Power</stats><br><br><passive>Passive:</passive> Grants +20 Health, +10 Mana, and +4 Ability Power per stack (max +200 Health, +100 Mana, and +40 Ability Power). Grants 1 stack per 40 seconds (max 10 stacks).<br><unique>UNIQUE Passive - Eternity:</unique> 15% of damage taken from champions is gained as Mana. Spending Mana restores 20% of the cost as Health, up to 25 per spell cast.","plaintext":"Greatly increases Health, Mana, and Ability Power"},"1400":{"id":1400,"name":"Enchantment: Warrior","description":"<stats>+60 Attack Damage<br>+10% Cooldown Reduction</stats>","plaintext":"Grants Attack Damage and Cooldown Reduction"},"3028":{"id":3028,"name":"Chalice of Harmony","description":"<stats>+30 Magic Resist<br><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive - Harmony:</unique> Grants bonus % Base Health Regen equal to your bonus % Base Mana Regen.</unique>","plaintext":"Increases Mana and Health Regeneration"},"3027":{"id":3027,"name":"Rod of Ages","description":"<stats>+300 Health<br><mana>+300 Mana</mana><br>+60 Ability Power</stats><br><br><passive>Passive:</passive> Grants +20 Health, +10 Mana, and +4 Ability Power per stack (max +200 Health, +100 Mana, and +40 Ability Power). Grants 1 stack per minute (max 10 stacks).<br><unique>UNIQUE Passive - Eternity:</unique> 15% of damage taken from champions is gained as Mana. Spending Mana restores 20% of the cost as Health, up to 25 per spell cast.","plaintext":"Greatly increases Health, Mana, and Ability Power"},"3026":{"id":3026,"name":"Guardian Angel","description":"<stats>+40 Attack Damage<br>+30 Armor</stats><br><br><unique>UNIQUE Passive:</unique> Upon taking lethal damage, restores 50% of base Health and 30% of maximum Mana after 4 seconds of stasis (300 second cooldown).","plaintext":"Periodically revives champion upon death"},"3147":{"id":3147,"name":"Duskblade of Draktharr","description":"<stats>+65 Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> +15 <a href='Lethality'>Lethality</a><br><unique>UNIQUE Passive:</unique> +20 Movement Speed out of Combat.<br><unique>UNIQUE Passive - Nightstalker:</unique> After being unseen for at least 1 second, your next Basic Attack against an enemy champion will deal 75 (+200% Lethality) true damage on-hit (lasts for 4 seconds after being seen by an enemy champion).<br><unique>UNIQUE Passive - Blackout:</unique> When spotted by an enemy ward, causes a blackout for 8 seconds, revealing invisible traps and revealing / disabling wards (90 second cooldown).","plaintext":"Deals additional true damage on-hit and provides true sight periodically"},"3025":{"id":3025,"name":"Iceborn Gauntlet","description":"<stats>+65 Armor<br>+20% Cooldown Reduction<br><mana>+500 Mana</mana></stats><br><br><unique>UNIQUE Passive - Spellblade:</unique> After using an ability, the next basic attack deals bonus physical damage equal to 100% of base Attack Damage in an area and creates an icy zone for 2 seconds that slows Movement Speed by 30% (1.5 second cooldown).<br><br>Size of zone increases with bonus armor.","plaintext":"Basic attacks create a slow field after spell cast"},"3146":{"id":3146,"name":"Hextech Gunblade","description":"<stats>+40 Attack Damage<br>+80 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> Heal for 15% of damage dealt. This is 33% as effective for Area of Effect damage.<br><active>UNIQUE Active - Lightning Bolt:</active> Deals <scaleLevel>175 - 250</scaleLevel> (+30% of Ability Power) magic damage and slows the target champion's Movement Speed by 40% for 2 seconds (40 second cooldown, shared with other <font color='#9999FF'><a href='itembolt'>Hextech</a></font> items).","plaintext":"Increases Attack Damage and Ability Power, activate to slow a target"},"1409":{"id":1409,"name":"Enchantment: Cinderhulk","description":"<stats>+400 Health<br>+15% Bonus Health</stats><br><br><unique>UNIQUE Passive - Immolate:</unique> Deals 11 (+1 per champion level) magic damage a second to nearby enemies while in combat. Deals 200% bonus damage to minions and monsters. ","plaintext":"Grants Health and Immolate Aura"},"1408":{"id":1408,"name":"Enchantment: Warrior","description":"<stats>+60 Attack Damage<br>+10% Cooldown Reduction</stats>","plaintext":"Grants Attack Damage and Cooldown Reduction"},"3046":{"id":3046,"name":"Phantom Dancer","description":"<stats>+45% Attack Speed<br>+30% Critical Strike Chance<br>+5% Movement Speed</stats><br><br><unique>UNIQUE Passive - Spectral Waltz:</unique> While within 550 units of an enemy champion you can see, +7% Movement Speed and you can move through units.<br><unique>UNIQUE Passive - Lament:</unique> The last champion hit deals 12% less damage to you (ends after 10 seconds of not hitting).","plaintext":"Move faster near enemies and reduce incoming damage"},"3044":{"id":3044,"name":"Phage","description":"<stats>+200 Health<br>+15 Attack Damage</stats><br><br><unique>UNIQUE Passive - Rage:</unique> Basic attacks grant 20 Movement Speed for 2 seconds. Kills grant 60 Movement Speed instead. This Movement Speed bonus is halved for ranged champions.","plaintext":"Attacks and kills give a small burst of speed"},"3165":{"id":3165,"name":"Morellonomicon","description":"<stats>+100 Ability Power<br><mana>+400 Mana</mana></stats><br><br><unique>UNIQUE Passive:</unique> +20% Cooldown Reduction<br><unique>UNIQUE Passive:</unique> Dealing magic damage to champions below 35% Health inflicts <a href='GrievousWounds'>Grievous Wounds</a> for 8 seconds.<br><unique>UNIQUE Passive:</unique> Kills and Assists restore 20% of your maximum Mana.","plaintext":"Greatly increases Ability Power and Cooldown Reduction"},"3043":{"id":3043,"name":"Muramana","description":"<stats>+25 Attack Damage<br><mana>+1000 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum Mana. Refunds 15% of Mana spent.</mana><br><mana><unique>UNIQUE Passive - Shock:</unique> Single target spells and attacks (on hit) on <font color='#FFFFFF'>Champions</font> consume 3% of current Mana to deal bonus physical damage equal to twice the amount of Mana consumed.<br><br>This effect only activates while you have greater than 20% maximum Mana.</mana>"},"3285":{"id":3285,"name":"Luden's Echo","description":"<stats>+100 Ability Power<br>+10% Movement Speed</stats><br><br><unique>UNIQUE Passive - Echo:</unique> Gain charges upon moving or casting. At 100 charges, the next damaging spell hit expends all charges to deal 100 (+10% of Ability Power) bonus magic damage to up to 4 targets on hit.","plaintext":"Movement and casting builds charges that release chain lightning on next spell hit"},"3042":{"id":3042,"name":"Muramana","description":"<stats>+25 Attack Damage<br><mana>+1000 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum Mana. Refunds 15% of Mana spent.</mana><br><mana><unique>UNIQUE Passive - Shock:</unique> Single target spells and attacks (on hit) on <font color='#FFFFFF'>Champions</font> consume 3% of current Mana to deal bonus physical damage equal to twice the amount of Mana consumed.<br><br>This effect only activates while you have greater than 20% maximum Mana.</mana>"},"3041":{"id":3041,"name":"Mejai's Soulstealer","description":"<stats>+20 Ability Power<br><mana>+200 Mana</mana></stats><br><br><unique>UNIQUE Passive - Dread:</unique> Grants +5 Ability Power per Glory. Grants 10% Movement Speed if you have at least 15 Glory.<br><unique>UNIQUE Passive - Do or Die:</unique> Grants 4 Glory for a champion kill or 2 Glory for an assist, up to 25 Glory total. Lose 10 stacks of Glory upon dying.","plaintext":"Grants Ability Power for kills and assists"},"3040":{"id":3040,"name":"Seraph's Embrace","description":"<stats>+80 Ability Power<br><mana>+1000 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants Ability Power equal to 3% of maximum Mana. Refunds 25% of Mana spent.</mana><br><active>UNIQUE Active - Mana Shield:</active> Consumes 20% of current Mana to grant a shield for 3 seconds that absorbs damage equal to 150 plus the amount of Mana consumed (120 second cooldown)."},"3715":{"id":3715,"name":"Skirmisher's Sabre","description":"<groupLimit>Limited to 1 Jungle item</groupLimit><br><br><stats>+10% Life Steal vs. Monsters<br><mana>+180% Base Mana Regen while in Jungle</mana></stats><br><br><passive>Passive - Challenging Smite:</passive> Smite can be cast on enemy champions, marking them for 4 seconds. While marked, the target is revealed, your basic attacks deal bonus true damage over 3 seconds, and their damage to you is reduced by 20%.<br><unique>UNIQUE Passive - Tooth / Nail:</unique> Basic attacks deal 25 bonus damage vs. monsters. Damaging a monster with a spell or attack steals 30 Health over 5 seconds. Killing monsters grants <font color='#99BBBB'><a href='SpecialJungleExperience'>special bonus experience</a></font>.","plaintext":"Lets your Smite mark Champions, giving you combat power against them."},"1414":{"id":1414,"name":"Enchantment: Runic Echoes","description":"<stats>+60 Ability Power<br>+7% Movement Speed</stats><br><br><unique>UNIQUE Passive - Echo:</unique> Gain charges upon moving or casting. At 100 charges, the next damaging spell hit expends all charges to deal 60 (+10% of Ability Power) bonus magic damage to up to 4 targets on hit.<br><br>This effect deals 250% damage to Large Monsters. Hitting a Large Monster with this effect will restore 18% of your missing Mana.","plaintext":"Grants Ability Power and periodically empowers your Spells"},"1413":{"id":1413,"name":"Enchantment: Cinderhulk","description":"<stats>+400 Health<br>+15% Bonus Health</stats><br><br><unique>UNIQUE Passive - Immolate:</unique> Deals 11 (+1 per champion level) magic damage a second to nearby enemies while in combat. Deals 200% bonus damage to minions and monsters. ","plaintext":"Grants Health and Immolate Aura"},"1412":{"id":1412,"name":"Enchantment: Warrior","description":"<stats>+60 Attack Damage<br>+10% Cooldown Reduction</stats>","plaintext":"Grants Attack Damage and Cooldown Reduction"},"1410":{"id":1410,"name":"Enchantment: Runic Echoes","description":"<stats>+60 Ability Power<br>+7% Movement Speed</stats><br><br><unique>UNIQUE Passive - Echo:</unique> Gain charges upon moving or casting. At 100 charges, the next damaging spell hit expends all charges to deal 60 (+10% of Ability Power) bonus magic damage to up to 4 targets on hit.<br><br>This effect deals 250% damage to Large Monsters. Hitting a Large Monster with this effect will restore 18% of your missing Mana.","plaintext":"Grants Ability Power and periodically empowers your Spells"},"3158":{"id":3158,"name":"Ionian Boots of Lucidity","description":"<unique>UNIQUE Passive:</unique> +10% Cooldown Reduction<br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed<br><unique>UNIQUE Passive:</unique> Reduces Summoner Spell cooldowns by 10%<br><br><br><rules><font color='#FDD017'>''This item is dedicated in honor of Ionia's victory over Noxus in the Rematch for the Southern Provinces on 10 December, 20 CLE.''</font></rules>","plaintext":"Increases Movement Speed and Cooldown Reduction"},"3036":{"id":3036,"name":"Lord Dominik's Regards","description":"<stats>+50 Attack Damage</stats><br><br><unique>UNIQUE Passive - Giant Slayer:</unique> Grants up to +20% physical damage against enemy champions with greater maximum Health than you (+2% damage per 100 Health difference, maxing at 1000 Health difference).<br><unique>UNIQUE Passive - Last Whisper:</unique> +35% <a href='BonusArmorPen'>Bonus Armor Penetration</a>","plaintext":"Overcomes enemies with high health and armor"},"3157":{"id":3157,"name":"Zhonya's Hourglass","description":"<stats>+70 Ability Power<br>+45 Armor<br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active - Stasis:</active> Champion becomes invulnerable and untargetable for 2.5 seconds, but is unable to move, attack, cast spells, or use items during this time (120 second cooldown).","plaintext":"Activate to become invincible but unable to take actions"},"1419":{"id":1419,"name":"Enchantment: Bloodrazor","description":"<stats>+50% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal 4% of the target's maximum Health in bonus physical damage (max 75 vs. monsters and minions) on hit.","plaintext":"Increases Attack Speed and deals damage based on the target's Health"},"3711":{"id":3711,"name":"Tracker's Knife","description":"<groupLimit>Limited to 1 Jungle item</groupLimit><br><br><stats>+10% Life Steal vs. Monsters<br><mana>+180% Base Mana Regen while in Jungle</mana></stats><br><br><unique>UNIQUE Passive - Tooth / Nail:</unique> Basic attacks deal 25 bonus damage vs. monsters. Damaging a monster with a spell or attack steals 30 Health over 5 seconds. Killing monsters grants <font color='#99BBBB'><a href='SpecialJungleExperience'>special bonus experience</a></font>.<br><active>UNIQUE Active - Warding:</active> Consumes a charge to place a <font color='#BBFFFF'>Stealth Ward</font> that reveals the surrounding area for 150 seconds. Holds up to 2 charges which refill upon visiting the shop. <br><br><rules>(A player may only have 3 <font color='#BBFFFF'>Stealth Wards</font> on the map at one time. Unique Passives with the same name don't stack.)</rules>","plaintext":"Provides Stealth Wards over time"},"1418":{"id":1418,"name":"Enchantment: Bloodrazor","description":"<stats>+50% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal 4% of the target's maximum Health in bonus physical damage (max 75 vs. monsters and minions) on hit.","plaintext":"Increases Attack Speed and deals damage based on the target's Health"},"1416":{"id":1416,"name":"Enchantment: Bloodrazor","description":"<stats>+50% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal 4% of the target's maximum Health in bonus physical damage (max 75 vs. monsters and minions) on hit.","plaintext":"Increases Attack Speed and deals damage based on the target's Health"},"3170":{"id":3170,"name":"Moonflair Spellblade","description":"<stats>+50 Ability Power<br>+50 Armor<br>+50 Magic Resist</stats><br><br><unique>UNIQUE Passive - Tenacity:</unique> Reduces the duration of stuns, slows, taunts, fears, silences, blinds, polymorphs, and immobilizes by 35%.","plaintext":"Improves defense and reduces duration of disabling effects"},"3057":{"id":3057,"name":"Sheen","description":"<stats><mana>+250 Mana</mana><br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive - Spellblade:</unique> After using an ability, the next basic attack deals bonus physical damage equal to 100% base Attack Damage on hit (1.5 second cooldown).","plaintext":"Grants a bonus to next attack after spell cast"},"3056":{"id":3056,"name":"Ohmwrecker","description":"<stats>+300 Health<br>+50 Armor<br>+150% Base Health Regen <br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active:</active> Prevents nearby enemy turrets from attacking for 3 seconds (120 second cooldown). This effect cannot be used against the same turret more than once every 8 seconds.<br><br><unique>UNIQUE Passive - Point Runner:</unique> Builds up to +20% Movement Speed over 2 seconds while near turrets (including fallen turrets) and Void Gates.","plaintext":"Temporarily disables enemy turrets"},"3175":{"id":3175,"name":"Head of Kha'Zix","description":"<unique>UNIQUE Active - Bonetooth Totem:</unique> Places a Stealth Ward that lasts 180 seconds (90 Second cooldown). Limit 3 Stealth Wards on the map per player.<br><br><unique>UNIQUE Passive - Mementos of the Hunt:</unique> Rengar collects trophies when killing Champions and gains bonus effects based on how many trophies he has. Kills and assists grant 1 trophy.<br><br><passive>3 Trophies:</passive> Rengar gains 25 Movement Speed whilst out of combat or in brush. <br><passive>6 Trophies:</passive> Increases the range of Rengar's Leap by 125.<br><passive>12 Trophies:</passive> Thrill of the Hunt's duration is increased by 5 seconds.<br><passive>20 Trophies:</passive> Rengar gains the movement speed bonus of Thrill of the Hunt while he is stealthed."},"3053":{"id":3053,"name":"Sterak's Gage","description":"<stats>+400 Health<br>+30% Base Attack Damage </stats><br><br><unique>UNIQUE Passive - Lifeline:</unique> Upon taking at least 400 to 1800 damage (based on level) within 5 seconds, gain a rapidly decaying Shield for 75% of your bonus Health for 8 seconds (60 second cooldown).<br><br><unlockedPassive>Sterak's Fury:</unlockedPassive> When <i>Lifeline</i> triggers, grow in size and strength, gaining +30% additional Base Attack Damage.","plaintext":"Shields against large bursts of damage"},"3174":{"id":3174,"name":"Athene's Unholy Grail","description":"<stats>+40 Ability Power<br>+30 Magic Resist<br>+20% Cooldown Reduction<br><mana>+75% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive:</unique> Gain 20% of the <a href='premitigation'><font color='#6666FF'><u>premitigation</u></font></a> damage dealt to champions as Blood Charges, up to <scaleLevel>100 - 250</scaleLevel> max. Healing or shielding another ally consumes charges to heal them, up to the original effect amount.<br><unique>UNIQUE Passive - Harmony:</unique> Grants bonus % Base Health Regen equal to your bonus % Base Mana Regen.<br><br><rules>(Maximum amount of Blood Charges stored is based on level. Healing amplification is applied to the total heal value.)</rules>","plaintext":"Deal damage to empower your heals and shields"},"3052":{"id":3052,"name":"Jaurim's Fist","description":"<stats>+15 Attack Damage<br>+150 Health</stats><br><br><unique>UNIQUE Passive:</unique> Killing a unit grants 5 maximum Health. This bonus stacks up to 30 times.","plaintext":"Attack Damage and stacking Health on Unit Kill"},"3050":{"id":3050,"name":"Zeke's Harbinger","description":"<stats><mana>+250 Mana</mana><br>+30 Armor<br>+50 Ability Power<br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active - Conduit:</active> Bind to target ally (60 second cooldown).<br><unique>UNIQUE Passive:</unique> When within 1000 units of each other, you and your ally generate Charges. Attacking or casting spells generates extra Charges. At 100 Charges, causing damage consumes them, increasing your and your ally's Ability Power by 20% and Critical Strike Chance by 50% for 8 seconds.<br><br><rules>(Champions can only be linked by one Zeke's Harbinger at a time.)</rules>","plaintext":"Grants an ally bursts of Critical Strike Chance and Ability Power"},"3048":{"id":3048,"name":"Seraph's Embrace","description":"<stats>+80 Ability Power<br><mana>+1000 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants Ability Power equal to 3% of maximum Mana. Refunds 25% of Mana spent.</mana><br><active>UNIQUE Active - Mana Shield:</active> Consumes 20% of current Mana to grant a shield for 3 seconds that absorbs damage equal to 150 plus the amount of Mana consumed (120 second cooldown)."},"3047":{"id":3047,"name":"Ninja Tabi","description":"<stats>+30 Armor</stats><br><br><unique>UNIQUE Passive:</unique> Blocks 12% of the damage from basic attacks.<br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed","plaintext":"Enhances Movement Speed and reduces incoming basic attack damage"},"3060":{"id":3060,"name":"Banner of Command","description":"<stats>+60 Armor<br>+30 Magic Resist<br><mana>+400 Mana</mana><br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active - Promote:</active> Greatly increases the power of a lane minion and grants it immunity to magic damage (120 second cooldown).","plaintext":"Promotes a siege minion to a more powerful unit"},"3181":{"id":3181,"name":"Sanguine Blade","description":"<stats>+45 Attack Damage<br>+10% Life Steal</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks grant +6 Attack Damage and +1% Life Steal for 8 seconds on hit (effect stacks up to 5 times).","plaintext":"Greatly increases Attack Damage and Life Steal"},"3068":{"id":3068,"name":"Sunfire Cape","description":"<stats>+425 Health<br>+60 Armor </stats><br><br><unique>UNIQUE Passive - Immolate:</unique> Deals 11 (+1 per champion level) magic damage per second to nearby enemies. Deals 200% bonus damage to minions and monsters.","plaintext":"Constantly deals damage to nearby enemies"},"3067":{"id":3067,"name":"Kindlegem","description":"<stats>+200 Health </stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction","plaintext":"Increases Health and Cooldown Reduction"},"3187":{"id":3187,"name":"Arcane Sweeper","description":"<stats>+225 Health<br>+250 Mana<br>+25 Armor<br>+20% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive - Trap Detection:</unique> Grants <font color='#ee91d7'>True Sight</font> of nearby enemy traps.<br><active>UNIQUE Active - Hunter's Sight:</active> An arcane mist grants vision in the target area for 5 seconds, revealing enemy champions in the area for 3 seconds (60 second cooldown).","plaintext":"Activate to reveal a nearby area of the map"},"3065":{"id":3065,"name":"Spirit Visage","description":"<stats>+425 Health<br>+60 Magic Resist<br>+200% Base Health Regen <br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique> Increases all healing received by 30%.","plaintext":"Increases Health and healing effects"},"3185":{"id":3185,"name":"The Lightbringer","description":"<stats>+30 Attack Damage<br>+30% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique> Critical Strikes cause enemies to bleed for an additional 90% of bonus Attack Damage as magic damage over 3 seconds and reveal them for the duration.<br><unique>UNIQUE Passive - Trap Detection:</unique> Nearby stealthed enemy traps are revealed.<br><active>UNIQUE Active - Hunter's Sight:</active> A stealth-detecting mist grants vision in the target area for 5 seconds, revealing enemy champions that enter for 3 seconds (60 second cooldown).","plaintext":"Critical Strikes cause your target to bleed and be revealed"},"3184":{"id":3184,"name":"Guardian's Hammer","description":"<stats>+150 Health<br>+15 Attack Damage<br>+10% Life Steal</stats><br><br><groupLimit>Limited to 1 Guardian's Item.</groupLimit>","plaintext":"Good starting item for attackers"},"3071":{"id":3071,"name":"The Black Cleaver","description":"<stats>+400 Health<br>+40 Attack Damage<br>+20% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique> Dealing physical damage to an enemy champion Cleaves them, reducing their Armor by 4% for 6 seconds (stacks up to 6 times, up to 24%).<br><unique>UNIQUE Passive - Rage:</unique> Dealing physical damage grants 20 movement speed for 2 seconds. Assists on Cleaved enemy champions or kills on any unit grant 60 movement speed for 2 seconds instead. This Movement Speed is halved for ranged champions.","plaintext":"Dealing physical damage to enemy champions reduces their Armor"},"3070":{"id":3070,"name":"Tear of the Goddess","description":"<stats><mana>+250 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Refunds 15% of Mana spent.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants 4 maximum Mana on spell cast or Mana expenditure (up to 2 times per 8 seconds).<br><br>Caps at +750 Mana.</mana>","plaintext":"Increases maximum Mana as Mana is spent"},"3191":{"id":3191,"name":"Seeker's Armguard","description":"<stats>+30 Armor<br>+20 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> Killing a unit grants 0.5 bonus Armor and Ability Power. This bonus stacks up to 30 times.","plaintext":"Increases Armor and Ability Power"},"3190":{"id":3190,"name":"Locket of the Iron Solari","description":"<stats>+30 Armor<br>+60 Magic Resist</stats><br><br><active>UNIQUE Active:</active> Grants a decaying shield to nearby allies for 2.5 seconds that absorbs up to 35 (+35 per level) damage (90 second cooldown).<br><br><rules>(Half effect if the target has been affected by another Locket of the Iron Solari recently.)</rules>","plaintext":"Activate to shield nearby allies from damage"},"3078":{"id":3078,"name":"Trinity Force","description":"<stats>+250 Health<br><mana>+250 Mana</mana><br>+25 Attack Damage<br>+40% Attack Speed<br>+20% Cooldown Reduction<br>+5% Movement Speed</stats><br><br><unique>UNIQUE Passive - Rage:</unique> Basic attacks grant 20 Movement Speed for 2 seconds. Kills grant 60 Movement Speed instead. This Movement Speed bonus is halved for ranged champions.<br><unique>UNIQUE Passive - Spellblade:</unique> After using an ability, the next basic attack deals bonus physical damage equal to 200% of base Attack Damage on hit (1.5 second cooldown).","plaintext":"Tons of Damage"},"3077":{"id":3077,"name":"Tiamat","description":"<stats>+20 Attack Damage<br>+50% Base Health Regen </stats><br><br><unique>UNIQUE Passive - Cleave:</unique> Basic attacks deal 20% to 60% of total Attack Damage as bonus physical damage to enemies near the target on hit (enemies closest to the target take the most damage).<br><active>UNIQUE Active - Crescent:</active> Deals 60% to 100% of total Attack Damage as physical damage to nearby enemy units (enemies closest to the target take the most damage) (10 second cooldown).","plaintext":"Melee attacks hit nearby enemies"},"3198":{"id":3198,"name":"Perfect Hex Core","description":"<stats>+10 Ability Power per level<br>+25 Mana per level</stats><br><br><unique>UNIQUE Passive - Glorious Evolution:</unique> Viktor has reached the pinnacle of his power, upgrading Chaos Storm in addition to his basic spells.","plaintext":"Allows Viktor to improve an ability of his choice"},"3197":{"id":3197,"name":"The Hex Core mk-2","description":"<stats>+6 Ability Power per level<br>+20 Mana per level</stats><br><br><unique>UNIQUE Passive - Progress:</unique> Viktor can upgrade one of his basic spells.","plaintext":"Allows Viktor to improve an ability of his choice"},"3075":{"id":3075,"name":"Thornmail","description":"<stats>+100 Armor </stats><br><br><unique>UNIQUE Passive:</unique> Upon being hit by a basic attack, reflects magic damage back to the attacker equal to 25% of your bonus Armor plus 15% of the incoming damage.<br><br><rules>(Bonus Armor is Armor from items, buffs, runes and masteries.)</rules><br><rules>(Reflect damage is calculated based on damage taken before being reduced by Armor.)</rules>","plaintext":"Returns damage taken from basic attacks as magic damage"},"3196":{"id":3196,"name":"The Hex Core mk-1","description":"<stats>+3 Ability Power per level<br>+15 Mana per level</stats><br><br><unique>UNIQUE Passive - Progress:</unique> Viktor can upgrade one of his basic spells.","plaintext":"Allows Viktor to improve an ability of his choice"},"3074":{"id":3074,"name":"Ravenous Hydra","description":"<stats>+80 Attack Damage<br>+100% Base Health Regen <br>+12% Life Steal</stats><br><br><passive>Passive:</passive> 50% of total Life Steal applies to damage dealt by this item.<br><unique>UNIQUE Passive - Cleave:</unique> Basic attacks deal 20% to 60% of total Attack Damage as bonus physical damage to enemies near the target on hit (enemies closest to the target take the most damage).<br><active>UNIQUE Active - Crescent:</active> Deals 60% to 100% of total Attack Damage as physical damage to nearby enemy units (closest enemies take the most damage) (10 second cooldown).","plaintext":"Melee attacks hit nearby enemies, dealing damage and restoring Health"},"3073":{"id":3073,"name":"Tear of the Goddess (Quick Charge)","description":"<stats><mana>+250 Mana</mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Refunds 15% of Mana spent.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants 6 maximum Mana on spell cast or Mana expenditure (up to 2 times per 8 seconds).<br><br>Caps at +750 Mana.</mana>","plaintext":"Increases maximum Mana as Mana is spent"},"3194":{"id":3194,"name":"Adaptive Helm","description":"<stats>+300 Health<br>+55 Magic Resist<br>+100% Base Health Regeneration <br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique> Taking magic damage from a spell or effect reduces all subsequent magic damage from that same spell or effect by 15% for 4 seconds.","plaintext":"Reduces damage from repeated spells and effects."},"3072":{"id":3072,"name":"The Bloodthirster","description":"<stats>+80 Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> +20% Life Steal<br><unique>UNIQUE Passive:</unique> Your basic attacks can now overheal you. Excess life is stored as a shield that can block 50-350 damage, based on champion level.<br><br>This shield decays slowly if you haven't dealt or taken damage in the last 25 seconds.","plaintext":"Grants Attack Damage, Life Steal and Life Steal now overheals"},"3193":{"id":3193,"name":"Gargoyle Stoneplate","description":"<stats>+40 Armor<br>+40 Magic Resist</stats></stats><br><br><unique>UNIQUE Passive - Stone Skin:</unique> If 3+ enemy champions are nearby, grants 40 bonus Armor and Magic Resist.<br><active>UNIQUE Active - Metallicize:</active> Increases Health by 40% and increases champion size, but reduces damage dealt by 60% for 4 seconds (90 second cooldown). If Stone Skin is active, the Health increase becomes 100% instead.","plaintext":"Greatly increases defense near multiple enemies."},"3748":{"id":3748,"name":"Titanic Hydra","description":"<stats>+450 Health<br>+35 Attack Damage<br>+100% Base Health Regen </stats><br><br><unique>UNIQUE Passive - Cleave:</unique> Basic attacks deal 5 + 1% of your maximum health as bonus physical damage to your target and 40 + 2.5% of your maximum health as physical damage to other enemies in a cone on hit.<br><active>UNIQUE Active - Crescent:</active> Cleave damage to all targets is increased to 40 + 10% of your maximum health as bonus physical damage in a larger cone for your next basic attack (20 second cooldown).<br><br><rules>(Unique Passives with the same name don't stack.)</rules>","plaintext":"Deals area of effect damage based on owner's health"},"3504":{"id":3504,"name":"Ardent Censer","description":"<stats>+60 Ability Power<br>+10% Cooldown Reduction<br><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive:</unique> +10% Heal and Shield Power<br><unique>UNIQUE Passive:</unique> +8% Movement Speed<br><unique>UNIQUE Passive:</unique> Your heals and shields on another allied champion grant them 20% - 35% Attack Speed and their attacks drain 20 - 35 health on-hit for 6 seconds.<br><br><rules>(This does not include regeneration effects or effects on yourself. Bonus effects are based on target's level.</rules>)</rules>","plaintext":"Shield and heal effects on other units grant them Attack Speed and their attacks drain life"},"3069":{"id":3069,"name":"Talisman of Ascension","description":"<stats>+45 Armor<br>+150% Base Health Regen <br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Point Runner:</unique> Builds up to +200% Movement Speed over 2 seconds while near turrets, fallen turrets and Void Gates.<br><unique>UNIQUE Passive - Favor: </unique>Enemy minions killed by your allies sometimes drop coins that give either <font color='#D4AF37'>30</font> gold or <font color='#44DDFF'>8%</font> missing mana (minimum 15).<br><active>UNIQUE Active:</active> Grants nearby allies +40% Movement Speed for 3 seconds (60 second cooldown).<hr><passive>QUEST:</passive> Earn 650 gold using.<br><passive>REWARD:</passive> <font color='#CFBF84'>Favor</font> is upgraded to <font color='#CFBF84'><a href='coinlinequestreward'>Emperor's Favor</a></font> and you receive an <font color='#29E3D6'><a href='coinlinequestrewardelixir'>Elixir Of Skill</a>s</font>.<br><br><groupLimit>Limited to 1 Gold Income Item.</groupLimit><br><br><rules><font color='#447777'>''Praise the sun.'' - Historian Shurelya, 22 September, 25 CLE</font></rules>","plaintext":"Increases Health / Mana Regeneration and Cooldown Reduction. Activate to speed up nearby allies."},"3742":{"id":3742,"name":"Dead Man's Plate","description":"<stats>+425 Health<br>+60 Armor</stats><br><br><unique>UNIQUE Passive - Dreadnought:</unique> While moving, build stacks of Momentum, increasing movement speed by up to 60 at 100 stacks. Momentum decays while under the effect of a slow, stun, taunt, fear, polymorph, or immobilize effect, as well as when basic attacking.<br><unique>UNIQUE Passive - Crushing Blow:</unique> Basic attacks at 100 stacks deal 100 bonus damage and slow the target by 50% for 1 second (melee only).<br><br><flavorText>''There's only one way you'll get this armor from me...'' - forgotten namesake</flavorText>","plaintext":"Build momentum as you move around then smash into enemies."},"3508":{"id":3508,"name":"Essence Reaver","description":"<stats>+70 Attack Damage<br>+20% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction<br><unique>UNIQUE Passive:</unique> Gain increasingly more Cooldown Reduction from Critical Strike Chance provided by other sources (maximum +20% additional Cooldown Reduction at 30% Critical Strike Chance).<br><unique>UNIQUE Passive:</unique> Critical strikes restore 3% of your maximum Mana pool.","plaintext":"Critical Strike provides Cooldown Reduction and Mana"}}}
@@ -0,0 +1 @@
1
+ {"type":"map","version":"7.9.1","data":{"11":{"mapName":"Summoner's Rift","mapId":11,"image":{"full":"map11.png","sprite":"map0.png","group":"map","x":96,"y":0,"w":48,"h":48}},"12":{"mapName":"Howling Abyss","mapId":12,"image":{"full":"map12.png","sprite":"map0.png","group":"map","x":144,"y":0,"w":48,"h":48}},"14":{"mapName":"Butcher's Bridge","mapId":14,"image":{"full":"map14.png","sprite":"map0.png","group":"map","x":192,"y":0,"w":48,"h":48}},"16":{"mapName":"Cosmic Ruins","mapId":16,"image":{"full":"map16.png","sprite":"map0.png","group":"map","x":240,"y":0,"w":48,"h":48}},"8":{"mapName":"The Crystal Scar","mapId":8,"image":{"full":"map8.png","sprite":"map0.png","group":"map","x":0,"y":0,"w":48,"h":48}},"10":{"mapName":"The Twisted Treeline","mapId":10,"image":{"full":"map10.png","sprite":"map0.png","group":"map","x":48,"y":0,"w":48,"h":48}}}}
@@ -0,0 +1 @@
1
+ {"id":6111,"name":"Fury","description":["+0.8% Attack Speed","+1.6% Attack Speed","+2.4% Attack Speed","+3.2% Attack Speed","+4% Attack Speed"]}
@@ -0,0 +1 @@
1
+ {"type":"mastery","version":"7.9.1","data":{"6131":{"id":6131,"name":"Vampirism","description":["+0.4% Lifesteal and Spell Vamp","+0.8% Lifesteal and Spell Vamp","+1.2% Lifesteal and Spell Vamp","+1.6% Lifesteal and Spell Vamp","+2.0% Lifesteal and Spell Vamp"]},"6351":{"id":6351,"name":"Precision","description":["Gain 1.2 Lethality and 0.3 + 0.05 per level Magic Penetration","Gain 2.4 Lethality and 0.6 + 0.10 per level Magic Penetration","Gain 3.6 Lethality and 0.9 + 0.15 per level Magic Penetration","Gain 4.8 Lethality and 1.2 + 0.20 per level Magic Penetration","Gain 6 Lethality and 1.5 + 0.25 per level Magic Penetration"]},"6252":{"id":6252,"name":"Legendary Guardian","description":["+0.6 Armor and Magic Resist for each nearby enemy champion","+1.2 Armor and Magic Resist for each nearby enemy champion","+1.8 Armor and Magic Resist for each nearby enemy champion","+2.4 Armor and Magic Resist for each nearby enemy champion","+3 Armor and Magic Resist for each nearby enemy champion"]},"6251":{"id":6251,"name":"Swiftness","description":["+3% Tenacity and Slow Resist","+6% Tenacity and Slow Resist","+9% Tenacity and Slow Resist","+12% Tenacity and Slow Resist","+15% Tenacity and Slow Resist"]},"6111":{"id":6111,"name":"Fury","description":["+0.8% Attack Speed","+1.6% Attack Speed","+2.4% Attack Speed","+3.2% Attack Speed","+4% Attack Speed"]},"6331":{"id":6331,"name":"Merciless","description":["Deal 0.6% increased damage to champions below 40% Health","Deal 1.2% increased damage to champions below 40% Health","Deal 1.8% increased damage to champions below 40% Health","Deal 2.4% increased damage to champions below 40% Health","Deal 3% increased damage to champions below 40% Health"]},"6232":{"id":6232,"name":"Veteran's Scars","description":["+10 Health","+20 Health","+30 Health","+40 Health","+50 Health"]},"6154":{"id":6154,"name":"Piercing Thoughts","description":["+1.4% Magic Penetration","+2.8% Magic Penetration","+4.2% Magic Penetration","+5.6% Magic Penetration","+7% Magic Penetration"]},"6352":{"id":6352,"name":"Intelligence","description":["Your Cooldown Reduction cap is increased to 41% and you gain 1% Cooldown Reduction","Your Cooldown Reduction cap is increased to 42% and you gain 2% Cooldown Reduction","Your Cooldown Reduction cap is increased to 43% and you gain 3% Cooldown Reduction","Your Cooldown Reduction cap is increased to 44% and you gain 4% Cooldown Reduction","Your Cooldown Reduction cap is increased to 45% and you gain 5% Cooldown Reduction"]},"6231":{"id":6231,"name":"Runic Armor","description":["Shields, healing, regeneration, and lifesteal on you are 1.6% stronger","Shields, healing, regeneration, and lifesteal on you are 3.2% stronger","Shields, healing, regeneration, and lifesteal on you are 4.8% stronger","Shields, healing, regeneration, and lifesteal on you are 6.4% stronger","Shields, healing, regeneration, and lifesteal on you are 8% stronger"]},"6311":{"id":6311,"name":"Wanderer","description":["+0.6% Movement Speed out of combat","+1.2% Movement Speed out of combat","+1.8% Movement Speed out of combat","+2.4% Movement Speed out of combat","+3% Movement Speed out of combat"]},"6212":{"id":6212,"name":"Unyielding","description":["+1% Bonus Armor and Magic Resist","+2% Bonus Armor and Magic Resist","+3% Bonus Armor and Magic Resist","+4% Bonus Armor and Magic Resist","+5% Bonus Armor and Magic Resist"]},"6134":{"id":6134,"name":"Natural Talent","description":["Gain 0.4 + 0.09 per level Attack Damage, and 0.6 + 0.13 per level Ability Power (+2 Attack Damage and 3 Ability Power at level 18)","Gain 0.8 + 0.18 per level Attack Damage, and 1.2 + 0.27 per level Ability Power (+4 Attack Damage and 6 Ability Power at level 18)","Gain 1.2 + 0.27 per level Attack Damage, and 1.8 + 0.4 per level Ability Power (+6 Attack Damage and 9 Ability Power at level 18)","Gain 1.6 + 0.36 per level Attack Damage, and 2.4 + 0.53 per level Ability Power (+8 Attack Damage and 12 Ability Power at level 18)","Gain 2 + 0.44 per level Attack Damage, and 3 + 0.67 per level Ability Power (+10 Attack Damage and 15 Ability Power at level 18)"]},"6332":{"id":6332,"name":"Meditation","description":["Regenerate 0.25% of your missing Mana every 5 seconds","Regenerate 0.5% of your missing Mana every 5 seconds","Regenerate 0.75% of your missing Mana every 5 seconds","Regenerate 1.0% of your missing Mana every 5 seconds","Regenerate 1.25% of your missing Mana every 5 seconds"]},"6211":{"id":6211,"name":"Recovery","description":["+0.4 Health per 5 seconds","+0.8 Health per 5 seconds","+1.2 Health per 5 seconds","+1.6 Health per 5 seconds","+2.0 Health per 5 seconds"]},"6114":{"id":6114,"name":"Sorcery","description":["+0.4% increased Ability damage","+0.8% increased Ability damage","+1.2% increased Ability damage","+1.6% increased Ability damage","+2.0% increased Ability damage"]},"6312":{"id":6312,"name":"Savagery","description":["Single target attacks and spells deal 1 bonus damage to minions and monsters","Single target attacks and spells deal 2 bonus damage to minions and monsters","Single target attacks and spells deal 3 bonus damage to minions and monsters","Single target attacks and spells deal 4 bonus damage to minions and monsters","Single target attacks and spells deal 5 bonus damage to minions and monsters"]},"6151":{"id":6151,"name":"Battering Blows","description":["+1.4% Armor Penetration","+2.8% Armor Penetration","+4.2% Armor Penetration","+5.6% Armor Penetration","+7% Armor Penetration"]},"6142":{"id":6142,"name":"Double Edged Sword","description":["Deal 3% additional damage, take 1.5% additional damage."]},"6164":{"id":6164,"name":"Deathfire Touch","description":["Your damaging abilities cause enemy champions to take magic damage over 4 seconds.<br><br>Damage: 8 + 45% Bonus Attack Damage and 25% Ability Power<br><br>Deathfire Touch's duration is reduced for:<br> - Area of Effect: 2 second duration. <br> - Damage over Time: 1 second duration."]},"6362":{"id":6362,"name":"Thunderlord's Decree","description":["Your 3rd attack or damaging spell against the same enemy champion calls down a lightning strike, dealing magic damage in the area. <br><br>Damage: 10 per level, plus 30% of your Bonus Attack Damage, and 10% of your Ability Power (25-15 second cooldown, based on level)."]},"6241":{"id":6241,"name":"Insight","description":["Reduces the cooldown of Summoner Spells by 15%"]},"6263":{"id":6263,"name":"Stoneborn Pact","description":["Gain 5% total health.<br>Your movement impairing effects brand enemy champions with an earthen rune for 4 seconds. Other allied champions who attack branded enemies heal for 5 + 2.5% of your maximum health over 2 seconds (halved if you are ranged)."]},"6141":{"id":6141,"name":"Bounty Hunter","description":["Deal 1% increased damage for each unique enemy champion you have killed"]},"6361":{"id":6361,"name":"Stormraider's Surge","description":["Dealing 30% of a champion's max Health within 2.5 seconds grants you 40% Movement Speed and 75% Slow Resistance for 3 seconds (10 second cooldown)."]},"6262":{"id":6262,"name":"Courage of the Colossus","description":["Gain a shield for 3-54 (+5% of your maximum health) for each nearby enemy champion for 3 seconds after hitting an enemy champion with a stun, taunt, snare, or knock up (45-30 second cooldown, based on level)."]},"6122":{"id":6122,"name":"Feast","description":["Killing a unit restores 20 Health (30 second cooldown)"]},"6342":{"id":6342,"name":"Bandit","description":["Gain 1 gold for each nearby minion killed by an ally. <br><br>Gain 3 gold (10 if melee) when hitting an enemy champion with a basic attack (5 second cooldown)"]},"6221":{"id":6221,"name":"Explorer","description":["+15 Movement Speed in Brush and River"]},"6243":{"id":6243,"name":"Fearless","description":["Gain 10% +1.5 per level bonus Armor and Magic Resist when damaged by an enemy champion for 2 seconds (9s Cooldown)"]},"6121":{"id":6121,"name":"Fresh Blood","description":["Your first basic attack against a champion deals an additional 10 +1 per level damage (6 second cooldown)"]},"6143":{"id":6143,"name":"Battle Trance","description":["Gain up to 3% increased damage over 3 seconds when in combat with enemy Champions"]},"6341":{"id":6341,"name":"Greenfather's Gift","description":["Stepping into brush causes your next damaging attack or ability to deal 3% of your target's current health as bonus magic damage (9s Cooldown)"]},"6363":{"id":6363,"name":"Windspeaker's Blessing","description":["Your heals and shields are 10% stronger. Additionally, your shields and heals on other allies increase their armor by 5-22 (based on level) and their magic resistance by half that amount for 3 seconds."]},"6242":{"id":6242,"name":"Perseverance","description":["+50% Base Health Regen, increased to +200% when below 25% Health"]},"6322":{"id":6322,"name":"Secret Stash","description":["Your Potions and Elixirs last 10% longer.<br><br>Your Health Potions are replaced with Biscuits that restore 15 Health and Mana instantly on use"]},"6223":{"id":6223,"name":"Tough Skin","description":["You take 2 less damage from champion and neutral monster basic attacks"]},"6123":{"id":6123,"name":"Expose Weakness","description":["Damaging enemy champions causes them to take 3% more damage from your allies"]},"6321":{"id":6321,"name":"Runic Affinity","description":["Buffs from neutral monsters last 15% longer"]},"6343":{"id":6343,"name":"Dangerous Game","description":["Champion kills and assists restore 5% of your missing Health and Mana"]},"6222":{"id":6222,"name":"Siegemaster","description":["Gain 8 Armor and Magic Resistance when near an allied tower"]},"6323":{"id":6323,"name":"Assassin","description":["Deal 2% increased damage to champions when no allied champions are nearby"]},"6162":{"id":6162,"name":"Fervor of Battle","description":["Hitting champions with basic attacks generates a Fervor stack (2 for melee attacks). Stacks of Fervor last 8 seconds (max 8 stacks)and increase your AD by 1-8 for each stack."]},"6261":{"id":6261,"name":"Grasp of the Undying","description":["Every 4 seconds in combat, your next attack against an enemy champion deals damage equal to 3% of your max Health and heals you for 1.5% of your max Health (halved for ranged champions, deals magic damage)"]},"6161":{"id":6161,"name":"Warlord's Bloodlust","description":["Moving or attacking will charge an Energized attack. Energized attacks heal for 5-40% of your total Attack Damage (amplified by Critical Strikes) and grant 30% Movement Speed for 0.75 seconds."]}}}
@@ -0,0 +1 @@
1
+ {"css":"7.9.1","dd":"7.9.1","l":"en_GB","n":{"item":"7.9.1","rune":"7.9.1","mastery":"7.9.1","summoner":"7.9.1","champion":"7.9.1","profileicon":"7.9.1","map":"7.9.1","language":"7.9.1","sticker":"7.9.1"},"profileiconmax":28,"v":"7.9.1","lg":"7.9.1","cdn":"http://ddragon.leagueoflegends.com/cdn"}
@@ -0,0 +1 @@
1
+ {"id":5001,"name":"Lesser Mark of Attack Damage","description":"+0.53 attack damage","rune":{"isRune":true,"tier":"1","type":"red"}}
@@ -0,0 +1 @@
1
+ {"type":"rune","version":"7.9.1","data":{"5021":{"id":5021,"name":"Lesser Mark of Cooldown Reduction","description":"-0.11% cooldowns","rune":{"isRune":true,"tier":"1","type":"red"}},"5143":{"id":5143,"name":"Mark of Cooldown Reduction","description":"-0.16% cooldowns","rune":{"isRune":true,"tier":"2","type":"red"}},"5023":{"id":5023,"name":"Lesser Mark of Ability Power","description":"+0.33 ability power","rune":{"isRune":true,"tier":"1","type":"red"}},"5265":{"id":5265,"name":"Greater Mark of Cooldown Reduction","description":"-0.2% cooldowns","rune":{"isRune":true,"tier":"3","type":"red"}},"5024":{"id":5024,"name":"Lesser Mark of Scaling Ability Power","description":"+0.06 ability power per level (+1.08 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"red"}},"5145":{"id":5145,"name":"Mark of Ability Power","description":"+0.46 ability power","rune":{"isRune":true,"tier":"2","type":"red"}},"5025":{"id":5025,"name":"Lesser Mark of Mana","description":"+3.28 mana","rune":{"isRune":true,"tier":"1","type":"red"}},"5146":{"id":5146,"name":"Mark of Scaling Ability Power","description":"+0.08 ability power per level (+1.44 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"red"}},"5267":{"id":5267,"name":"Greater Mark of Ability Power","description":"+0.59 ability power","rune":{"isRune":true,"tier":"3","type":"red"}},"5026":{"id":5026,"name":"Lesser Mark of Scaling Mana","description":"+0.65 mana per level (+11.7 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"red"}},"5147":{"id":5147,"name":"Mark of Mana","description":"+4.59 mana","rune":{"isRune":true,"tier":"2","type":"red"}},"5268":{"id":5268,"name":"Greater Mark of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"red"}},"5260":{"id":5260,"name":"Greater Mark of Scaling Magic Resist","description":"+0.07 magic resist per level (+1.26 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"red"}},"5016":{"id":5016,"name":"Lesser Mark of Scaling Magic Resist","description":"+0.04 magic resist per level (+0.72 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"red"}},"5137":{"id":5137,"name":"Mark of Magic Resist","description":"+0.6 magic resist","rune":{"isRune":true,"tier":"2","type":"red"}},"5138":{"id":5138,"name":"Mark of Scaling Magic Resist","description":"+0.06 magic resist per level (+1.08 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"red"}},"5259":{"id":5259,"name":"Greater Mark of Magic Resist","description":"+0.77 magic resist","rune":{"isRune":true,"tier":"3","type":"red"}},"5151":{"id":5151,"name":"Mark of Magic Penetration","description":"+0.68 magic penetration","rune":{"isRune":true,"tier":"2","type":"red"}},"5031":{"id":5031,"name":"Lesser Glyph of Attack Damage","description":"+0.16 attack damage","rune":{"isRune":true,"tier":"1","type":"blue"}},"5273":{"id":5273,"name":"Greater Mark of Magic Penetration","description":"+0.87 magic penetration","rune":{"isRune":true,"tier":"3","type":"red"}},"5032":{"id":5032,"name":"Lesser Glyph of Scaling Attack Damage","description":"+0.02 attack damage per level (+0.36 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"blue"}},"5153":{"id":5153,"name":"Glyph of Attack Damage","description":"+0.22 attack damage","rune":{"isRune":true,"tier":"2","type":"blue"}},"5033":{"id":5033,"name":"Lesser Glyph of Attack Speed","description":"+0.35% attack speed","rune":{"isRune":true,"tier":"1","type":"blue"}},"5154":{"id":5154,"name":"Glyph of Scaling Attack Damage","description":"+0.03 attack damage per level (+0.57 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"blue"}},"5275":{"id":5275,"name":"Greater Glyph of Attack Damage","description":"+0.28 attack damage","rune":{"isRune":true,"tier":"3","type":"blue"}},"5155":{"id":5155,"name":"Glyph of Attack Speed","description":"+0.5% attack speed","rune":{"isRune":true,"tier":"2","type":"blue"}},"5276":{"id":5276,"name":"Greater Glyph of Scaling Attack Damage","description":"+0.04 attack damage per level (+0.73 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"blue"}},"5035":{"id":5035,"name":"Lesser Glyph of Critical Damage","description":"+0.31% critical damage","rune":{"isRune":true,"tier":"1","type":"blue"}},"5277":{"id":5277,"name":"Greater Glyph of Attack Speed","description":"+0.64% attack speed","rune":{"isRune":true,"tier":"3","type":"blue"}},"5157":{"id":5157,"name":"Glyph of Critical Damage","description":"+0.43% critical damage","rune":{"isRune":true,"tier":"2","type":"blue"}},"5037":{"id":5037,"name":"Lesser Glyph of Critical Chance","description":"+0.15% critical chance","rune":{"isRune":true,"tier":"1","type":"blue"}},"5279":{"id":5279,"name":"Greater Glyph of Critical Damage","description":"+0.56% critical damage","rune":{"isRune":true,"tier":"3","type":"blue"}},"5270":{"id":5270,"name":"Greater Mark of Scaling Mana","description":"+1.17 mana per level (+21.06 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"red"}},"5271":{"id":5271,"name":"Greater Mark of Mana Regeneration","description":"+0.26 mana regen / 5 sec.","rune":{"isRune":true,"tier":"3","type":"red"}},"5027":{"id":5027,"name":"Lesser Mark of Mana Regeneration","description":"+0.15 mana regen / 5 sec.","rune":{"isRune":true,"tier":"1","type":"red"}},"5148":{"id":5148,"name":"Mark of Scaling Mana","description":"+0.91 mana per level (+16.38 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"red"}},"5269":{"id":5269,"name":"Greater Mark of Mana","description":"+5.91 mana","rune":{"isRune":true,"tier":"3","type":"red"}},"5149":{"id":5149,"name":"Mark of Mana Regeneration","description":"+0.2 mana regen / 5 sec.","rune":{"isRune":true,"tier":"2","type":"red"}},"5029":{"id":5029,"name":"Lesser Mark of Magic Penetration","description":"+0.49 magic penetration","rune":{"isRune":true,"tier":"1","type":"red"}},"5041":{"id":5041,"name":"Lesser Glyph of Health","description":"+1.49 health","rune":{"isRune":true,"tier":"1","type":"blue"}},"5042":{"id":5042,"name":"Lesser Glyph of Scaling Health","description":"+0.3 health per level (+5.4 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"blue"}},"5163":{"id":5163,"name":"Glyph of Health","description":"+2.08 health","rune":{"isRune":true,"tier":"2","type":"blue"}},"5043":{"id":5043,"name":"Lesser Glyph of Armor","description":"+0.39 armor","rune":{"isRune":true,"tier":"1","type":"blue"}},"5164":{"id":5164,"name":"Glyph of Scaling Health","description":"+0.42 health per level (+7.56 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"blue"}},"5285":{"id":5285,"name":"Greater Glyph of Health","description":"+2.67 health","rune":{"isRune":true,"tier":"3","type":"blue"}},"5165":{"id":5165,"name":"Glyph of Armor","description":"+0.55 armor","rune":{"isRune":true,"tier":"2","type":"blue"}},"5286":{"id":5286,"name":"Greater Glyph of Scaling Health","description":"+0.54 health per level (+9.72 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"blue"}},"5045":{"id":5045,"name":"Lesser Glyph of Magic Resist","description":"+0.74 magic resist","rune":{"isRune":true,"tier":"1","type":"blue"}},"5287":{"id":5287,"name":"Greater Glyph of Armor","description":"+0.7 armor","rune":{"isRune":true,"tier":"3","type":"blue"}},"5046":{"id":5046,"name":"Lesser Glyph of Scaling Magic Resist","description":"+0.09 magic resist per level (+1.68 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"blue"}},"5167":{"id":5167,"name":"Glyph of Magic Resist","description":"+1.04 magic resist","rune":{"isRune":true,"tier":"2","type":"blue"}},"5047":{"id":5047,"name":"Lesser Glyph of Health Regeneration","description":"+0.15 health regen / 5 sec.","rune":{"isRune":true,"tier":"1","type":"blue"}},"5168":{"id":5168,"name":"Glyph of Scaling Magic Resist","description":"+0.13 magic resist per level (+2.34 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"blue"}},"5289":{"id":5289,"name":"Greater Glyph of Magic Resist","description":"+1.34 magic resist","rune":{"isRune":true,"tier":"3","type":"blue"}},"5169":{"id":5169,"name":"Glyph of Health Regeneration","description":"+0.21 health regen / 5 sec.","rune":{"isRune":true,"tier":"2","type":"blue"}},"5281":{"id":5281,"name":"Greater Glyph of Critical Chance","description":"+0.28% critical chance","rune":{"isRune":true,"tier":"3","type":"blue"}},"5159":{"id":5159,"name":"Glyph of Critical Chance","description":"+0.22% critical chance","rune":{"isRune":true,"tier":"2","type":"blue"}},"5052":{"id":5052,"name":"Lesser Glyph of Scaling Cooldown Reduction","description":"-0.05% cooldowns per level (-0.93% at champion level 18)","rune":{"isRune":true,"tier":"1","type":"blue"}},"5173":{"id":5173,"name":"Glyph of Cooldown Reduction","description":"-0.67% cooldowns","rune":{"isRune":true,"tier":"2","type":"blue"}},"5053":{"id":5053,"name":"Lesser Glyph of Ability Power","description":"+0.66 ability power","rune":{"isRune":true,"tier":"1","type":"blue"}},"5174":{"id":5174,"name":"Glyph of Scaling Cooldown Reduction","description":"-0.07% cooldowns per level (-1.3% at champion level 18)","rune":{"isRune":true,"tier":"2","type":"blue"}},"5295":{"id":5295,"name":"Greater Glyph of Cooldown Reduction","description":"-0.83% cooldowns","rune":{"isRune":true,"tier":"3","type":"blue"}},"5054":{"id":5054,"name":"Lesser Glyph of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"blue"}},"5175":{"id":5175,"name":"Glyph of Ability Power","description":"+0.92 ability power","rune":{"isRune":true,"tier":"2","type":"blue"}},"5296":{"id":5296,"name":"Greater Glyph of Scaling Cooldown Reduction","description":"-0.09% cooldowns per level (-1.67% at champion level 18)","rune":{"isRune":true,"tier":"3","type":"blue"}},"5055":{"id":5055,"name":"Lesser Glyph of Mana","description":"+6.25 mana","rune":{"isRune":true,"tier":"1","type":"blue"}},"5176":{"id":5176,"name":"Glyph of Scaling Ability Power","description":"+0.13 ability power per level (+2.34 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"blue"}},"5297":{"id":5297,"name":"Greater Glyph of Ability Power","description":"+1.19 ability power","rune":{"isRune":true,"tier":"3","type":"blue"}},"5056":{"id":5056,"name":"Lesser Glyph of Scaling Mana","description":"+0.79 mana per level (+14.22 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"blue"}},"5177":{"id":5177,"name":"Glyph of Mana","description":"+8.75 mana","rune":{"isRune":true,"tier":"2","type":"blue"}},"5298":{"id":5298,"name":"Greater Glyph of Scaling Ability Power","description":"+0.17 ability power per level (+3.06 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"blue"}},"5057":{"id":5057,"name":"Lesser Glyph of Mana Regeneration","description":"+0.19 mana regen / 5 sec.","rune":{"isRune":true,"tier":"1","type":"blue"}},"5178":{"id":5178,"name":"Glyph of Scaling Mana","description":"+1.1 mana per level (+19.8 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"blue"}},"5299":{"id":5299,"name":"Greater Glyph of Mana","description":"+11.25 mana","rune":{"isRune":true,"tier":"3","type":"blue"}},"5058":{"id":5058,"name":"Lesser Glyph of Scaling Mana Regeneration","description":"+0.04 mana regen / 5 sec. per level (+0.67 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"blue"}},"5179":{"id":5179,"name":"Glyph of Mana Regeneration","description":"+0.26 mana regen / 5 sec.","rune":{"isRune":true,"tier":"2","type":"blue"}},"5059":{"id":5059,"name":"Lesser Glyph of Magic Penetration","description":"+0.35 magic penetration","rune":{"isRune":true,"tier":"1","type":"blue"}},"5290":{"id":5290,"name":"Greater Glyph of Scaling Magic Resist","description":"+0.16 magic resist per level (+3 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"blue"}},"5291":{"id":5291,"name":"Greater Glyph of Health Regeneration","description":"+0.27 health regen / 5 sec.","rune":{"isRune":true,"tier":"3","type":"blue"}},"5051":{"id":5051,"name":"Lesser Glyph of Cooldown Reduction","description":"-0.47% cooldowns","rune":{"isRune":true,"tier":"1","type":"blue"}},"5063":{"id":5063,"name":"Lesser Seal of Attack Speed","description":"+0.42% attack speed","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5184":{"id":5184,"name":"Seal of Scaling Attack Damage","description":"+0.05 attack damage per level (+0.85 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5185":{"id":5185,"name":"Seal of Attack Speed","description":"+0.59% attack speed","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5065":{"id":5065,"name":"Lesser Seal of Critical Damage","description":"+0.43% critical damage","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5187":{"id":5187,"name":"Seal of Critical Damage","description":"+0.61% critical damage","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5067":{"id":5067,"name":"Lesser Seal of Critical Chance","description":"+0.23% critical chance","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5189":{"id":5189,"name":"Seal of Critical Chance","description":"+0.32% critical chance","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5180":{"id":5180,"name":"Glyph of Scaling Mana Regeneration","description":"+0.05 mana regen / 5 sec. per level (+0.94 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"blue"}},"5181":{"id":5181,"name":"Glyph of Magic Penetration","description":"+0.49 magic penetration","rune":{"isRune":true,"tier":"2","type":"blue"}},"5061":{"id":5061,"name":"Lesser Seal of Attack Damage","description":"+0.24 attack damage","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5062":{"id":5062,"name":"Lesser Seal of Scaling Attack Damage","description":"+0.03 attack damage per level (+0.61 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5183":{"id":5183,"name":"Seal of Attack Damage","description":"+0.33 attack damage","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5074":{"id":5074,"name":"Lesser Seal of Scaling Armor","description":"+0.09 armor per level (+1.68 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5195":{"id":5195,"name":"Seal of Armor","description":"+0.78 armor","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5075":{"id":5075,"name":"Lesser Seal of Magic Resist","description":"+0.41 magic resist","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5196":{"id":5196,"name":"Seal of Scaling Armor","description":"+0.13 armor per level (+2.34 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5076":{"id":5076,"name":"Lesser Seal of Scaling Magic Resist","description":"+0.05 magic resist per level (+0.9 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5197":{"id":5197,"name":"Seal of Magic Resist","description":"+0.58 magic resist","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5077":{"id":5077,"name":"Lesser Seal of Health Regeneration","description":"+0.31 health regen / 5 sec.","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5198":{"id":5198,"name":"Seal of Scaling Magic Resist","description":"+0.08 magic resist per level (+1.44 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5078":{"id":5078,"name":"Lesser Seal of Scaling Health Regeneration","description":"+0.06 health regen / 5 sec. per level (+1.08 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5199":{"id":5199,"name":"Seal of Health Regeneration","description":"+0.43 health regen / 5 sec.","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5071":{"id":5071,"name":"Lesser Seal of Health","description":"+4.48 health","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5072":{"id":5072,"name":"Lesser Seal of Scaling Health","description":"+0.75 health per level (+13.44 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5193":{"id":5193,"name":"Seal of Health","description":"+6.24 health","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5073":{"id":5073,"name":"Lesser Seal of Armor","description":"+0.56 armor","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5194":{"id":5194,"name":"Seal of Scaling Health","description":"+1.04 health per level (+18.72 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5085":{"id":5085,"name":"Lesser Seal of Mana","description":"+3.83 mana","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5086":{"id":5086,"name":"Lesser Seal of Scaling Mana","description":"+0.65 mana per level (+11.7 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5087":{"id":5087,"name":"Lesser Seal of Mana Regeneration","description":"+0.23 mana regen / 5 sec.","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5088":{"id":5088,"name":"Lesser Seal of Scaling Mana Regeneration","description":"+0.036 mana regen / 5 sec. per level (+0.65 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5400":{"id":5400,"name":"Lesser Mark of Precision","description":"+0.63 Lethality / +0.34 Magic Penetration","rune":{"isRune":true,"tier":"1","type":"red"}},"5081":{"id":5081,"name":"Lesser Seal of Cooldown Reduction","description":"-0.2% cooldowns","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5083":{"id":5083,"name":"Lesser Seal of Ability Power","description":"+0.33 ability power","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5084":{"id":5084,"name":"Lesser Seal of Scaling Ability Power","description":"+0.06 ability power per level (+1.08 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"8002":{"id":8002,"name":"Lesser Mark of the Yuletide Tannenbaum ","description":"+0.62% critical chance","rune":{"isRune":true,"tier":"1","type":"red"}},"5097":{"id":5097,"name":"Lesser Quintessence of Critical Chance","description":"+1.03% critical chance","rune":{"isRune":true,"tier":"1","type":"black"}},"8003":{"id":8003,"name":"Glyph of the Special Stocking","description":"-0.75% cooldowns","rune":{"isRune":true,"tier":"2","type":"blue"}},"5099":{"id":5099,"name":"Lesser Quintessence of Lethality","description":"+1.78 lethality","rune":{"isRune":true,"tier":"1","type":"black"}},"8001":{"id":8001,"name":"Mark of the Crippling Candy Cane","description":"+2% critical damage","rune":{"isRune":true,"tier":"2","type":"red"}},"8006":{"id":8006,"name":"Lesser Seal of the Stout Snowman","description":"+0.72 health per level (+12.96 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"yellow"}},"8007":{"id":8007,"name":"Lesser Mark of Alpine Attack Speed","description":"+1.13% attack speed","rune":{"isRune":true,"tier":"1","type":"red"}},"5410":{"id":5410,"name":"Lesser Quintessence of Life Steal","description":"+0.84% Life Steal","rune":{"isRune":true,"tier":"1","type":"black"}},"5411":{"id":5411,"name":"Quintessence of Life Steal","description":"+1.17% Life Steal","rune":{"isRune":true,"tier":"2","type":"black"}},"8005":{"id":8005,"name":"Lesser Glyph of the Gracious Gift","description":"+0.12 ability power per level (+2.16 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"blue"}},"5091":{"id":5091,"name":"Lesser Quintessence of Attack Damage","description":"+1.25 attack damage","rune":{"isRune":true,"tier":"1","type":"black"}},"5092":{"id":5092,"name":"Lesser Quintessence of Scaling Attack Damage","description":"+0.14 attack damage per level (+2.52 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5093":{"id":5093,"name":"Lesser Quintessence of Attack Speed","description":"+2.52% attack speed","rune":{"isRune":true,"tier":"1","type":"black"}},"5095":{"id":5095,"name":"Lesser Quintessence of Critical Damage","description":"+2.48% critical damage","rune":{"isRune":true,"tier":"1","type":"black"}},"5409":{"id":5409,"name":"Greater Quintessence of Spell Vamp","description":"+2% Spellvamp.","rune":{"isRune":true,"tier":"3","type":"black"}},"5401":{"id":5401,"name":"Mark of Precision","description":"+0.7 Leth / +0.48 M.Pen","rune":{"isRune":true,"tier":"2","type":"red"}},"5402":{"id":5402,"name":"Greater Mark of Precision","description":"+1.13 Lethality / +0.62 Magic Penetration","rune":{"isRune":true,"tier":"3","type":"red"}},"5403":{"id":5403,"name":"Greater Seal of Gold","description":"+0.25 gold / 10 sec.","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5404":{"id":5404,"name":"Lesser Quintessence of Percent Health","description":"+0.84% increased health.","rune":{"isRune":true,"tier":"1","type":"black"}},"5405":{"id":5405,"name":"Quintessence of Percent Health","description":"+1.17% increased health.","rune":{"isRune":true,"tier":"2","type":"black"}},"5406":{"id":5406,"name":"Greater Quintessence of Percent Health","description":"+1.5% increased health.","rune":{"isRune":true,"tier":"3","type":"black"}},"5407":{"id":5407,"name":"Lesser Quintessence of Spell Vamp","description":"+1.12% Spellvamp.","rune":{"isRune":true,"tier":"1","type":"black"}},"5408":{"id":5408,"name":"Quintessence of Spell Vamp","description":"+1.56% Spellvamp.","rune":{"isRune":true,"tier":"2","type":"black"}},"8013":{"id":8013,"name":"Quintessence of the Headless Horseman","description":"+2.96 lethality","rune":{"isRune":true,"tier":"2","type":"black"}},"8014":{"id":8014,"name":"Quintessence of the Piercing Screech","description":"+1.85 magic penetration","rune":{"isRune":true,"tier":"2","type":"black"}},"8011":{"id":8011,"name":"Lesser Glyph of the Challenger","description":"+0.66 ability power","rune":{"isRune":true,"tier":"1","type":"blue"}},"8012":{"id":8012,"name":"Glyph of the Soaring Slalom","description":"-0.75% cooldowns","rune":{"isRune":true,"tier":"2","type":"blue"}},"8017":{"id":8017,"name":"Quintessence of the Witches Brew","description":"+4.56 ability power","rune":{"isRune":true,"tier":"2","type":"black"}},"5300":{"id":5300,"name":"Greater Glyph of Scaling Mana","description":"+1.42 mana per level (+25.56 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"blue"}},"8015":{"id":8015,"name":"Quintessence of Bountiful Treats","description":"+24 health","rune":{"isRune":true,"tier":"2","type":"black"}},"5301":{"id":5301,"name":"Greater Glyph of Mana Regeneration","description":"+0.33 mana regen / 5 sec.","rune":{"isRune":true,"tier":"3","type":"blue"}},"8016":{"id":8016,"name":"Quintessence of the Speedy Specter","description":"+1.39% movement speed","rune":{"isRune":true,"tier":"2","type":"black"}},"5412":{"id":5412,"name":"Greater Quintessence of Life Steal","description":"+1.5% Life Steal.","rune":{"isRune":true,"tier":"3","type":"black"}},"5413":{"id":5413,"name":"Lesser Seal of Percent Health","description":"+0.28% Health.","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5414":{"id":5414,"name":"Seal of Percent Health","description":"+0.39% Health.","rune":{"isRune":true,"tier":"2","type":"yellow"}},"8008":{"id":8008,"name":"Mark of the Combatant","description":"+2% critical damage","rune":{"isRune":true,"tier":"2","type":"red"}},"5415":{"id":5415,"name":"Greater Seal of Percent Health","description":"+0.5% Health.","rune":{"isRune":true,"tier":"3","type":"yellow"}},"8009":{"id":8009,"name":"Lesser Seal of the Medalist","description":"+3.56 health","rune":{"isRune":true,"tier":"1","type":"yellow"}},"5416":{"id":5416,"name":"Lesser Quintessence of Precision","description":"+1.24 Lethality / +0.78 Magic Penetration","rune":{"isRune":true,"tier":"1","type":"black"}},"5417":{"id":5417,"name":"Quintessence of Precision","description":"+1.74 Lethality / +1.09 Magic Penetration","rune":{"isRune":true,"tier":"2","type":"black"}},"5418":{"id":5418,"name":"Greater Quintessence of Precision","description":"+2.24 Lethality / +1.4 Magic Penetration","rune":{"isRune":true,"tier":"3","type":"black"}},"8022":{"id":8022,"name":"Greater Quintessence of Sugar Rush","description":"+1.5% movement speed","rune":{"isRune":true,"tier":"3","type":"black"}},"5311":{"id":5311,"name":"Greater Seal of Critical Chance","description":"+0.42% critical chance","rune":{"isRune":true,"tier":"3","type":"yellow"}},"8020":{"id":8020,"name":"Greater Quintessence of the Deadly Wreath","description":"+3.20 lethality","rune":{"isRune":true,"tier":"3","type":"black"}},"8021":{"id":8021,"name":"Greater Quintessence of Frosty Health","description":"+26 health","rune":{"isRune":true,"tier":"3","type":"black"}},"5302":{"id":5302,"name":"Greater Glyph of Scaling Mana Regeneration","description":"+0.06 mana regen / 5 sec. per level (+1.2 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"blue"}},"5303":{"id":5303,"name":"Greater Glyph of Magic Penetration","description":"+0.63 magic penetration","rune":{"isRune":true,"tier":"3","type":"blue"}},"8019":{"id":8019,"name":"Greater Quintessence of the Piercing Present","description":"+2.01 magic penetration","rune":{"isRune":true,"tier":"3","type":"black"}},"5305":{"id":5305,"name":"Greater Seal of Attack Damage","description":"+0.43 attack damage","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5306":{"id":5306,"name":"Greater Seal of Scaling Attack Damage","description":"+0.06 attack damage per level (+1.09 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5307":{"id":5307,"name":"Greater Seal of Attack Speed","description":"+0.76% attack speed","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5309":{"id":5309,"name":"Greater Seal of Critical Damage","description":"+0.78% critical damage","rune":{"isRune":true,"tier":"3","type":"yellow"}},"8035":{"id":8035,"name":"Greater Quintessence of Studio Rumble","description":"+1.5% movement speed","rune":{"isRune":true,"tier":"3","type":"black"}},"5320":{"id":5320,"name":"Greater Seal of Scaling Magic Resist","description":"+0.1 magic resist per level (+1.8 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5200":{"id":5200,"name":"Seal of Scaling Health Regeneration","description":"+0.09 health regen / 5 sec. per level (+1.62 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5321":{"id":5321,"name":"Greater Seal of Health Regeneration","description":"+0.56 health regen / 5 sec.","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5322":{"id":5322,"name":"Greater Seal of Scaling Health Regeneration","description":"+0.11 health regen / 5 sec. per level (+1.98 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5315":{"id":5315,"name":"Greater Seal of Health","description":"+8 health","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5316":{"id":5316,"name":"Greater Seal of Scaling Health","description":"+1.33 health per level (+24 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5317":{"id":5317,"name":"Greater Seal of Armor","description":"+1 armor","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5318":{"id":5318,"name":"Greater Seal of Scaling Armor","description":"+0.16 armor per level (+3 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5319":{"id":5319,"name":"Greater Seal of Magic Resist","description":"+0.74 magic resist","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5330":{"id":5330,"name":"Greater Seal of Scaling Mana","description":"+1.17 mana per level (+21.06 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5210":{"id":5210,"name":"Seal of Scaling Mana Regeneration","description":"+0.05 mana regen / 5 sec. per level (+0.9 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5331":{"id":5331,"name":"Greater Seal of Mana Regeneration","description":"+0.41 mana regen / 5 sec.","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5332":{"id":5332,"name":"Greater Seal of Scaling Mana Regeneration","description":"+0.065 mana regen / 5 sec. per level (+1.17 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5213":{"id":5213,"name":"Quintessence of Attack Damage","description":"+1.75 attack damage","rune":{"isRune":true,"tier":"2","type":"black"}},"5203":{"id":5203,"name":"Seal of Cooldown Reduction","description":"-0.29% cooldowns","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5325":{"id":5325,"name":"Greater Seal of Cooldown Reduction","description":"-0.36% cooldowns","rune":{"isRune":true,"tier":"3","type":"yellow"}},"10002":{"id":10002,"name":"Razer Quintessence of Speed","description":"+1.5% movement speed","rune":{"isRune":true,"tier":"3","type":"black"}},"5205":{"id":5205,"name":"Seal of Ability Power","description":"+0.46 ability power","rune":{"isRune":true,"tier":"2","type":"yellow"}},"10001":{"id":10001,"name":"Razer Mark of Precision","description":"+2.23% critical damage","rune":{"isRune":true,"tier":"3","type":"red"}},"5206":{"id":5206,"name":"Seal of Scaling Ability Power","description":"+0.08 ability power per level (+1.44 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5327":{"id":5327,"name":"Greater Seal of Ability Power","description":"+0.59 ability power","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5207":{"id":5207,"name":"Seal of Mana","description":"+5.36 mana","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5328":{"id":5328,"name":"Greater Seal of Scaling Ability Power","description":"+0.1 ability power per level (+1.8 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5208":{"id":5208,"name":"Seal of Scaling Mana","description":"+0.91 mana per level (+16.38 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5329":{"id":5329,"name":"Greater Seal of Mana","description":"+6.89 mana","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5209":{"id":5209,"name":"Seal of Mana Regeneration","description":"+0.32 mana regen / 5 sec.","rune":{"isRune":true,"tier":"2","type":"yellow"}},"5341":{"id":5341,"name":"Greater Quintessence of Critical Chance","description":"+1.86% critical chance","rune":{"isRune":true,"tier":"3","type":"black"}},"5221":{"id":5221,"name":"Quintessence of Lethality","description":"+2.49 lethality","rune":{"isRune":true,"tier":"2","type":"black"}},"5101":{"id":5101,"name":"Lesser Quintessence of Health","description":"+14.5 health","rune":{"isRune":true,"tier":"1","type":"black"}},"5343":{"id":5343,"name":"Greater Quintessence of Lethality","description":"+3.20 lethality","rune":{"isRune":true,"tier":"3","type":"black"}},"5102":{"id":5102,"name":"Lesser Quintessence of Scaling Health","description":"+1.5 health per level (+27 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5223":{"id":5223,"name":"Quintessence of Health","description":"+20 health","rune":{"isRune":true,"tier":"2","type":"black"}},"5103":{"id":5103,"name":"Lesser Quintessence of Armor","description":"+2.37 armor","rune":{"isRune":true,"tier":"1","type":"black"}},"5224":{"id":5224,"name":"Quintessence of Scaling Health","description":"+2.1 health per level (+37.8 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5345":{"id":5345,"name":"Greater Quintessence of Health","description":"+26 health","rune":{"isRune":true,"tier":"3","type":"black"}},"5214":{"id":5214,"name":"Quintessence of Scaling Attack Damage","description":"+0.19 attack damage per level (+3.42 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5335":{"id":5335,"name":"Greater Quintessence of Attack Damage","description":"+2.25 attack damage","rune":{"isRune":true,"tier":"3","type":"black"}},"5215":{"id":5215,"name":"Quintessence of Attack Speed","description":"+3.51% attack speed","rune":{"isRune":true,"tier":"2","type":"black"}},"5336":{"id":5336,"name":"Greater Quintessence of Scaling Attack Damage","description":"+0.25 attack damage per level (+4.5 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5337":{"id":5337,"name":"Greater Quintessence of Attack Speed","description":"+4.5% attack speed","rune":{"isRune":true,"tier":"3","type":"black"}},"5217":{"id":5217,"name":"Quintessence of Critical Damage","description":"+3.47% critical damage","rune":{"isRune":true,"tier":"2","type":"black"}},"5339":{"id":5339,"name":"Greater Quintessence of Critical Damage","description":"+4.46% critical damage","rune":{"isRune":true,"tier":"3","type":"black"}},"5219":{"id":5219,"name":"Quintessence of Critical Chance","description":"+1.44% critical chance","rune":{"isRune":true,"tier":"2","type":"black"}},"5350":{"id":5350,"name":"Greater Quintessence of Scaling Magic Resist","description":"+0.37 magic resist per level (+6.66 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5230":{"id":5230,"name":"Quintessence of Scaling Health Regeneration","description":"+0.22 health regen / 5 sec. per level (+3.96 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5351":{"id":5351,"name":"Greater Quintessence of Health Regeneration","description":"+2.7 health regen / 5 sec.","rune":{"isRune":true,"tier":"3","type":"black"}},"5352":{"id":5352,"name":"Greater Quintessence of Scaling Health Regeneration","description":"+0.28 health regen / 5 sec. per level (+5.04 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5111":{"id":5111,"name":"Lesser Quintessence of Cooldown Reduction","description":"-1.4% cooldowns","rune":{"isRune":true,"tier":"1","type":"black"}},"5112":{"id":5112,"name":"Lesser Quintessence of Scaling Cooldown Reduction","description":"-0.15% cooldowns per level (-2.8% at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5233":{"id":5233,"name":"Quintessence of Cooldown Reduction","description":"-1.95% cooldowns","rune":{"isRune":true,"tier":"2","type":"black"}},"5113":{"id":5113,"name":"Lesser Quintessence of Ability Power","description":"+2.75 ability power","rune":{"isRune":true,"tier":"1","type":"black"}},"5234":{"id":5234,"name":"Quintessence of Scaling Cooldown Reduction","description":"-0.21% cooldowns per level (-3.9% at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5355":{"id":5355,"name":"Greater Quintessence of Cooldown Reduction","description":"-2.5% cooldowns","rune":{"isRune":true,"tier":"3","type":"black"}},"5114":{"id":5114,"name":"Lesser Quintessence of Scaling Ability Power","description":"+0.24 ability power per level (+4.32 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5235":{"id":5235,"name":"Quintessence of Ability Power","description":"+3.85 ability power","rune":{"isRune":true,"tier":"2","type":"black"}},"5356":{"id":5356,"name":"Greater Quintessence of Scaling Cooldown Reduction","description":"-0.28% cooldowns per level (-5% at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5104":{"id":5104,"name":"Lesser Quintessence of Scaling Armor","description":"+0.21 armor per level (+3.78 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5225":{"id":5225,"name":"Quintessence of Armor","description":"+3.32 armor","rune":{"isRune":true,"tier":"2","type":"black"}},"5346":{"id":5346,"name":"Greater Quintessence of Scaling Health","description":"+2.7 health per level (+48.6 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5105":{"id":5105,"name":"Lesser Quintessence of Magic Resist","description":"+2.22 magic resist","rune":{"isRune":true,"tier":"1","type":"black"}},"5226":{"id":5226,"name":"Quintessence of Scaling Armor","description":"+0.29 armor per level (+5.22 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5347":{"id":5347,"name":"Greater Quintessence of Armor","description":"+4.26 armor","rune":{"isRune":true,"tier":"3","type":"black"}},"5106":{"id":5106,"name":"Lesser Quintessence of Scaling Magic Resist","description":"+0.21 magic resist per level (+3.78 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5227":{"id":5227,"name":"Quintessence of Magic Resist","description":"+3.11 magic resist","rune":{"isRune":true,"tier":"2","type":"black"}},"5348":{"id":5348,"name":"Greater Quintessence of Scaling Armor","description":"+0.38 armor per level (+6.84 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5107":{"id":5107,"name":"Lesser Quintessence of Health Regeneration","description":"+1.5 health regen / 5 sec.","rune":{"isRune":true,"tier":"1","type":"black"}},"5228":{"id":5228,"name":"Quintessence of Scaling Magic Resist","description":"+0.29 magic resist per level (+5.22 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5349":{"id":5349,"name":"Greater Quintessence of Magic Resist","description":"+4 magic resist","rune":{"isRune":true,"tier":"3","type":"black"}},"5108":{"id":5108,"name":"Lesser Quintessence of Scaling Health Regeneration","description":"+0.16 health regen / 5 sec. per level (+2.88 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5229":{"id":5229,"name":"Quintessence of Health Regeneration","description":"+2.1 health regen / 5 sec.","rune":{"isRune":true,"tier":"2","type":"black"}},"5360":{"id":5360,"name":"Greater Quintessence of Scaling Mana","description":"+4.17 mana per level (+75.06 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5240":{"id":5240,"name":"Quintessence of Scaling Mana Regeneration","description":"+0.19 mana regen / 5 sec. per level (+3.42 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5361":{"id":5361,"name":"Greater Quintessence of Mana Regeneration","description":"+1.25 mana regen / 5 sec.","rune":{"isRune":true,"tier":"3","type":"black"}},"5241":{"id":5241,"name":"Quintessence of Magic Penetration","description":"+1.56 magic penetration","rune":{"isRune":true,"tier":"2","type":"black"}},"5362":{"id":5362,"name":"Greater Quintessence of Scaling Mana Regeneration","description":"+0.24 mana regen / 5 sec. per level (+4.32 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5121":{"id":5121,"name":"Lesser Quintessence of Movement Speed","description":"+0.83% movement speed","rune":{"isRune":true,"tier":"1","type":"black"}},"5363":{"id":5363,"name":"Greater Quintessence of Magic Penetration","description":"+2.01 magic penetration","rune":{"isRune":true,"tier":"3","type":"black"}},"5001":{"id":5001,"name":"Lesser Mark of Attack Damage","description":"+0.53 attack damage","rune":{"isRune":true,"tier":"1","type":"red"}},"5243":{"id":5243,"name":"Quintessence of Movement Speed","description":"+1.17% movement speed","rune":{"isRune":true,"tier":"2","type":"black"}},"5002":{"id":5002,"name":"Lesser Mark of Scaling Attack Damage","description":"+0.08 attack damage per level (+1.35 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"red"}},"5123":{"id":5123,"name":"Mark of Attack Damage","description":"+0.74 attack damage","rune":{"isRune":true,"tier":"2","type":"red"}},"5365":{"id":5365,"name":"Greater Quintessence of Movement Speed","description":"+1.5% movement speed","rune":{"isRune":true,"tier":"3","type":"black"}},"5003":{"id":5003,"name":"Lesser Mark of Attack Speed","description":"+0.94% attack speed","rune":{"isRune":true,"tier":"1","type":"red"}},"5124":{"id":5124,"name":"Mark of Scaling Attack Damage","description":"+0.1 attack damage per level (+1.89 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"red"}},"5245":{"id":5245,"name":"Greater Mark of Attack Damage","description":"+0.95 attack damage","rune":{"isRune":true,"tier":"3","type":"red"}},"5366":{"id":5366,"name":"Greater Quintessence of Revival","description":"-5% time dead","rune":{"isRune":true,"tier":"3","type":"black"}},"5125":{"id":5125,"name":"Mark of Attack Speed","description":"+1.32% attack speed","rune":{"isRune":true,"tier":"2","type":"red"}},"5246":{"id":5246,"name":"Greater Mark of Scaling Attack Damage","description":"+0.13 attack damage per level (+2.43 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"red"}},"5367":{"id":5367,"name":"Greater Quintessence of Gold","description":"+1 gold / 10 sec.","rune":{"isRune":true,"tier":"3","type":"black"}},"5115":{"id":5115,"name":"Lesser Quintessence of Mana","description":"+20.83 mana","rune":{"isRune":true,"tier":"1","type":"black"}},"5236":{"id":5236,"name":"Quintessence of Scaling Ability Power","description":"+0.34 ability power per level (+6.12 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5357":{"id":5357,"name":"Greater Quintessence of Ability Power","description":"+4.95 ability power","rune":{"isRune":true,"tier":"3","type":"black"}},"5116":{"id":5116,"name":"Lesser Quintessence of Scaling Mana","description":"+2.31 mana per level (+41.58 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5237":{"id":5237,"name":"Quintessence of Mana","description":"+29.17 mana","rune":{"isRune":true,"tier":"2","type":"black"}},"5358":{"id":5358,"name":"Greater Quintessence of Scaling Ability Power","description":"+0.43 ability power per level (+7.74 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"black"}},"5117":{"id":5117,"name":"Lesser Quintessence of Mana Regeneration","description":"+0.69 mana regen / 5 sec.","rune":{"isRune":true,"tier":"1","type":"black"}},"5238":{"id":5238,"name":"Quintessence of Scaling Mana","description":"+3.24 mana per level (+58.32 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"black"}},"5359":{"id":5359,"name":"Greater Quintessence of Mana","description":"+37.5 mana","rune":{"isRune":true,"tier":"3","type":"black"}},"5118":{"id":5118,"name":"Lesser Quintessence of Scaling Mana Regeneration","description":"+0.14 mana regen / 5 sec. per level (+2.52 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"black"}},"5239":{"id":5239,"name":"Quintessence of Mana Regeneration","description":"+0.97 mana regen / 5 sec.","rune":{"isRune":true,"tier":"2","type":"black"}},"5119":{"id":5119,"name":"Lesser Quintessence of Magic Penetration","description":"+1.11 magic penetration","rune":{"isRune":true,"tier":"1","type":"black"}},"5371":{"id":5371,"name":"Greater Glyph of Energy","description":"+2.2 Energy","rune":{"isRune":true,"tier":"3","type":"blue"}},"5251":{"id":5251,"name":"Greater Mark of Critical Chance","description":"+0.93% critical chance","rune":{"isRune":true,"tier":"3","type":"red"}},"5372":{"id":5372,"name":"Greater Glyph of Scaling Energy","description":"+0.161 Energy/level (+2.89 at level 18)","rune":{"isRune":true,"tier":"3","type":"blue"}},"5131":{"id":5131,"name":"Mark of Lethality","description":"+1.25 lethality","rune":{"isRune":true,"tier":"2","type":"red"}},"5373":{"id":5373,"name":"Greater Quintessence of Energy Regeneration","description":"+1.575 Energy regen/5 sec","rune":{"isRune":true,"tier":"3","type":"black"}},"5011":{"id":5011,"name":"Lesser Mark of Health","description":"+1.93 health","rune":{"isRune":true,"tier":"1","type":"red"}},"5253":{"id":5253,"name":"Greater Mark of Lethality","description":"+1.60 lethality","rune":{"isRune":true,"tier":"3","type":"red"}},"5374":{"id":5374,"name":"Greater Quintessence of Energy","description":"+5.4 Energy","rune":{"isRune":true,"tier":"3","type":"black"}},"5012":{"id":5012,"name":"Lesser Mark of Scaling Health","description":"+0.3 health per level (+5.4 at champion level 18)","rune":{"isRune":true,"tier":"1","type":"red"}},"5133":{"id":5133,"name":"Mark of Health","description":"+2.7 health","rune":{"isRune":true,"tier":"2","type":"red"}},"5013":{"id":5013,"name":"Lesser Mark of Armor","description":"+0.51 armor","rune":{"isRune":true,"tier":"1","type":"red"}},"5134":{"id":5134,"name":"Mark of Scaling Health","description":"+0.42 health per level (+7.56 at champion level 18)","rune":{"isRune":true,"tier":"2","type":"red"}},"5255":{"id":5255,"name":"Greater Mark of Health","description":"+3.47 health","rune":{"isRune":true,"tier":"3","type":"red"}},"5135":{"id":5135,"name":"Mark of Armor","description":"+0.71 armor","rune":{"isRune":true,"tier":"2","type":"red"}},"5256":{"id":5256,"name":"Greater Mark of Scaling Health","description":"+0.54 health per level (+9.72 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"red"}},"5015":{"id":5015,"name":"Lesser Mark of Magic Resist","description":"+0.43 magic resist","rune":{"isRune":true,"tier":"1","type":"red"}},"5257":{"id":5257,"name":"Greater Mark of Armor","description":"+0.91 armor","rune":{"isRune":true,"tier":"3","type":"red"}},"5370":{"id":5370,"name":"Greater Seal of Scaling Energy Regeneration","description":"+0.064 Energy regen/5 sec per level (+1.15 at champion level 18)","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5005":{"id":5005,"name":"Lesser Mark of Critical Damage","description":"+1.24% critical damage","rune":{"isRune":true,"tier":"1","type":"red"}},"5247":{"id":5247,"name":"Greater Mark of Attack Speed","description":"+1.7% attack speed","rune":{"isRune":true,"tier":"3","type":"red"}},"5368":{"id":5368,"name":"Greater Quintessence of Experience","description":"+2% experience gained","rune":{"isRune":true,"tier":"3","type":"black"}},"5127":{"id":5127,"name":"Mark of Critical Damage","description":"+1.74% critical damage","rune":{"isRune":true,"tier":"2","type":"red"}},"5369":{"id":5369,"name":"Greater Seal of Energy Regeneration","description":"+0.63 Energy regen/5 sec","rune":{"isRune":true,"tier":"3","type":"yellow"}},"5007":{"id":5007,"name":"Lesser Mark of Critical Chance","description":"+0.52% critical chance","rune":{"isRune":true,"tier":"1","type":"red"}},"5249":{"id":5249,"name":"Greater Mark of Critical Damage","description":"+2.23% critical damage","rune":{"isRune":true,"tier":"3","type":"red"}},"5129":{"id":5129,"name":"Mark of Critical Chance","description":"+0.72% critical chance","rune":{"isRune":true,"tier":"2","type":"red"}},"5009":{"id":5009,"name":"Lesser Mark of Lethality","description":"+0.90 lethality","rune":{"isRune":true,"tier":"1","type":"red"}}}}
@@ -0,0 +1 @@
1
+ {"name":"Cleanse","description":"Removes all disables (excluding suppression) and summoner spell debuffs affecting your champion and lowers the duration of incoming disables by 65% for 3 seconds.","summonerLevel":6,"id":1,"key":"SummonerBoost"}
@@ -0,0 +1 @@
1
+ {"type":"summoner","version":"7.9.1","data":{"SummonerBarrier":{"name":"Barrier","description":"Shields your champion from 115-455 damage (depending on champion level) for 2 seconds.","summonerLevel":4,"id":21,"key":"SummonerBarrier"},"SummonerPoroRecall":{"name":"To the King!","description":"Quickly travel to the Poro King's side.","summonerLevel":1,"id":30,"key":"SummonerPoroRecall"},"SummonerBoost":{"name":"Cleanse","description":"Removes all disables (excluding suppression) and summoner spell debuffs affecting your champion and lowers the duration of incoming disables by 65% for 3 seconds.","summonerLevel":6,"id":1,"key":"SummonerBoost"},"SummonerDarkStarChampSelect2":{"name":"Disabled Summoner Spells","description":"Summoner spells are disabled in this mode.","summonerLevel":1,"id":36,"key":"SummonerDarkStarChampSelect2"},"SummonerTeleport":{"name":"Teleport","description":"After channeling for 4.5 seconds, teleports your champion to target allied structure, minion, or ward.","summonerLevel":6,"id":12,"key":"SummonerTeleport"},"SummonerDarkStarChampSelect1":{"name":"Disabled Summoner Spells","description":"Summoner spells are disabled in this mode.","summonerLevel":1,"id":35,"key":"SummonerDarkStarChampSelect1"},"SummonerFlash":{"name":"Flash","description":"Teleports your champion a short distance toward your cursor's location.","summonerLevel":8,"id":4,"key":"SummonerFlash"},"SummonerSnowball":{"name":"Mark","description":"Throw a snowball in a straight line at your enemies. If it hits an enemy, they become marked, granting True Sight, and your champion can quickly travel to the marked target as a follow up.","summonerLevel":1,"id":32,"key":"SummonerSnowball"},"SummonerHeal":{"name":"Heal","description":"Restores 90-345 Health (depending on champion level) and grants 30% Movement Speed for 1 second to you and target allied champion. This healing is halved for units recently affected by Summoner Heal.","summonerLevel":1,"id":7,"key":"SummonerHeal"},"SummonerMana":{"name":"Clarity","description":"Restores 50% of your champion's maximum Mana. Also restores allies for 25% of their maximum Mana.","summonerLevel":1,"id":13,"key":"SummonerMana"},"SummonerPoroThrow":{"name":"Poro Toss","description":"Toss a Poro at your enemies. If it hits, you can quickly travel to your target as a follow up.","summonerLevel":1,"id":31,"key":"SummonerPoroThrow"},"SummonerSmite":{"name":"Smite","description":"Deals 390-1000 true damage (depending on champion level) to target epic or large monster or enemy minion. Restores Health based on your maximum life when used against monsters.","summonerLevel":10,"id":11,"key":"SummonerSmite"},"SummonerSiegeChampSelect1":{"name":"Nexus Siege: Siege Weapon Slot","description":"In Nexus Siege, Summoner Spells are replaced with Siege Weapon Slots. Spend Crystal Shards to buy single-use Siege Weapons from the item shop, then use your Summoner Spell keys to activate them!","summonerLevel":1,"id":33,"key":"SummonerSiegeChampSelect1"},"SummonerSiegeChampSelect2":{"name":"Nexus Siege: Siege Weapon Slot","description":"In Nexus Siege, Summoner Spells are replaced with Siege Weapon Slots. Spend Crystal Shards to buy single-use Siege Weapons from the item shop, then use your Summoner Spell keys to activate them!","summonerLevel":1,"id":34,"key":"SummonerSiegeChampSelect2"},"SummonerExhaust":{"name":"Exhaust","description":"Exhausts target enemy champion, reducing their Movement Speed by 30%, and their damage dealt by 40% for 2.5 seconds.","summonerLevel":4,"id":3,"key":"SummonerExhaust"},"SummonerDot":{"name":"Ignite","description":"Ignites target enemy champion, dealing 70-410 true damage (depending on champion level) over 5 seconds, grants you vision of the target, and reduces healing effects on them for the duration.","summonerLevel":10,"id":14,"key":"SummonerDot"},"SummonerHaste":{"name":"Ghost","description":"Your champion gains increased Movement Speed and can move through units for 10 seconds. Grants a maximum of 28-45% (depending on champion level) Movement Speed after accelerating for 2 seconds.","summonerLevel":1,"id":6,"key":"SummonerHaste"}}}
@@ -0,0 +1 @@
1
+ ["7.10.1","7.9.2","7.9.1","7.8.1","7.7.1","7.6.1","7.5.2","7.5.1","7.4.3","7.4.2","7.4.1","7.3.3","7.3.2","7.3.1","7.2.1","7.1.1","6.24.1","6.23.1","6.22.1","6.21.1","6.20.1","6.19.1","6.18.1","6.17.1","6.16.2","6.16.1","6.15.1","6.14.2","6.14.1","6.13.1","6.12.1","6.11.1","6.10.1","6.9.1","6.8.1","6.7.1","6.6.1","6.5.1","6.4.2","6.4.1","6.3.1","6.2.1","6.1.1","5.24.2","5.24.1","5.23.1","5.22.3","5.22.2","5.22.1","5.21.1","5.20.1","5.19.1","5.18.1","5.17.1","5.16.1","5.15.1","5.14.1","5.13.1","5.12.1","5.11.1","5.10.1","5.9.1","5.8.1","5.7.2","5.7.1","5.6.2","5.6.1","5.5.3","5.5.2","5.5.1","5.4.1","5.3.1","5.2.2","5.2.1","5.1.2","5.1.1","4.21.5","4.21.4","4.21.3","4.21.1","4.20.2","4.20.1","4.19.3","4.19.2","4.18.1","4.17.1","4.16.1","4.15.1","4.14.2","4.13.1","4.12.2","4.12.1","4.11.3","4.10.7","4.10.2","4.9.1","4.8.3","4.8.2","4.8.1","4.7.16","4.7.9","4.7.8","4.6.3","4.5.4","4.4.3","4.4.2","4.3.18","4.3.12","4.3.10","4.3.4","4.3.2","4.2.6","4.2.5","4.2.1","4.1.43","4.1.41","4.1.13","4.1.9","4.1.2","3.15.5","3.15.4","3.15.2","3.14.41","3.14.23","3.14.22","3.14.20","3.14.19","3.14.16","3.14.13","3.14.12","3.13.24","3.13.8","3.13.6","3.13.1","3.12.37","3.12.36","3.12.34","3.12.33","3.12.26","3.12.24","3.12.2","3.11.4","3.11.2","3.10.6","3.10.3","3.10.2","3.9.7","3.9.5","3.9.4","3.8.5","3.8.3","3.8.1","3.7.9","3.7.2","3.7.1","3.6.15","3.6.14","0.154.3","0.154.2","0.153.2","0.152.115","0.152.108","0.152.107","0.152.55","0.151.101","0.151.2"]
@@ -0,0 +1 @@
1
+ {"id":19325407,"accountId":22016665,"name":"FoO","profileIconId":11,"revisionDate":1447284435000,"summonerLevel":30}
@@ -0,0 +1 @@
1
+ {"id":100023,"accountId":105754,"name":"qjQ1rLbjXvq05BRT","profileIconId":20,"revisionDate":1323135738000,"summonerLevel":3}
@@ -0,0 +1 @@
1
+ {"frames":[{"participantFrames":{"1":{"participantId":1,"position":{"x":561,"y":581},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":561,"y":361},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":351,"y":293},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":222,"y":471},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":311,"y":649},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":14486,"y":14511},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":14486,"y":14291},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":14277,"y":14223},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":14148,"y":14401},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":14237,"y":14579},"currentGold":500,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[],"timestamp":135},{"participantFrames":{"1":{"participantId":1,"position":{"x":2915,"y":11380},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":5193,"y":8594},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":7690,"y":5102},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":10564,"y":3268},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":11745,"y":2127},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":5445,"y":12412},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":7179,"y":9864},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8183,"y":8315},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":11008,"y":5532},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":9731,"y":6338},"currentGold":0,"totalGold":500,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_PURCHASED","timestamp":2602,"participantId":5,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":2797,"participantId":3,"itemId":1027},{"type":"ITEM_PURCHASED","timestamp":3056,"participantId":10,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":3120,"participantId":5,"itemId":3303},{"type":"ITEM_PURCHASED","timestamp":3249,"participantId":2,"itemId":1041},{"type":"ITEM_PURCHASED","timestamp":3314,"participantId":1,"itemId":1056},{"type":"ITEM_PURCHASED","timestamp":3314,"participantId":10,"itemId":3302},{"type":"ITEM_PURCHASED","timestamp":3410,"participantId":5,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":3475,"participantId":4,"itemId":1055},{"type":"ITEM_PURCHASED","timestamp":3507,"participantId":10,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":3540,"participantId":1,"itemId":2003},{"type":"ITEM_PURCHASED","timestamp":3572,"participantId":5,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":3637,"participantId":2,"itemId":2031},{"type":"ITEM_PURCHASED","timestamp":3669,"participantId":4,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":3669,"participantId":10,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":3701,"participantId":5,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":3701,"participantId":1,"itemId":2003},{"type":"ITEM_PURCHASED","timestamp":3895,"participantId":10,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":3895,"participantId":4,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":4088,"participantId":1,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":4216,"participantId":9,"itemId":1055},{"type":"ITEM_PURCHASED","timestamp":4376,"participantId":2,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":4472,"participantId":9,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":4796,"participantId":9,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":5182,"participantId":8,"itemId":1056},{"type":"ITEM_PURCHASED","timestamp":5863,"participantId":8,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":6186,"participantId":8,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":6865,"participantId":3,"itemId":2003},{"type":"ITEM_PURCHASED","timestamp":7027,"participantId":3,"itemId":2003},{"type":"ITEM_PURCHASED","timestamp":7124,"participantId":3,"itemId":2003},{"type":"ITEM_PURCHASED","timestamp":7610,"participantId":3,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":9842,"participantId":7,"itemId":1039},{"type":"ITEM_PURCHASED","timestamp":10552,"participantId":7,"itemId":2031},{"type":"ITEM_PURCHASED","timestamp":10777,"participantId":7,"itemId":3340},{"type":"SKILL_LEVEL_UP","timestamp":17374,"participantId":8,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":19084,"participantId":6,"itemId":2033},{"type":"ITEM_PURCHASED","timestamp":19408,"participantId":6,"itemId":3340},{"type":"SKILL_LEVEL_UP","timestamp":28355,"participantId":2,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":34700,"participantId":4,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":48109,"participantId":3,"skillSlot":3,"levelUpType":"NORMAL"}],"timestamp":60164},{"participantFrames":{"1":{"participantId":1,"position":{"x":1802,"y":11127},"currentGold":1,"totalGold":501,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":3563,"y":6695},"currentGold":117,"totalGold":617,"level":2,"xp":330,"minionsKilled":0,"jungleMinionsKilled":2,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":6902,"y":7371},"currentGold":95,"totalGold":595,"level":1,"xp":235,"minionsKilled":5,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":12281,"y":2343},"currentGold":58,"totalGold":558,"level":1,"xp":96,"minionsKilled":3,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12264,"y":2822},"currentGold":9,"totalGold":509,"level":1,"xp":96,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":2773,"y":12683},"currentGold":1,"totalGold":501,"level":1,"xp":0,"minionsKilled":0,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":10699,"y":8886},"currentGold":101,"totalGold":601,"level":2,"xp":290,"minionsKilled":0,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":7858,"y":7210},"currentGold":41,"totalGold":541,"level":1,"xp":176,"minionsKilled":2,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":13397,"y":2831},"currentGold":61,"totalGold":561,"level":1,"xp":115,"minionsKilled":3,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13403,"y":2683},"currentGold":26,"totalGold":526,"level":1,"xp":115,"minionsKilled":1,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"SKILL_LEVEL_UP","timestamp":81515,"participantId":10,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":86209,"participantId":1,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":89411,"wardType":"YELLOW_TRINKET","creatorId":7},{"type":"SKILL_LEVEL_UP","timestamp":90514,"participantId":7,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":95342,"participantId":5,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":97972,"participantId":6,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":99821,"participantId":9,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":108118,"participantId":7,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":110033,"wardType":"YELLOW_TRINKET","creatorId":10},{"type":"SKILL_LEVEL_UP","timestamp":114154,"participantId":2,"skillSlot":2,"levelUpType":"NORMAL"}],"timestamp":120190},{"participantFrames":{"1":{"participantId":1,"position":{"x":2127,"y":12208},"currentGold":277,"totalGold":777,"level":2,"xp":500,"minionsKilled":8,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":12431,"y":6488},"currentGold":823,"totalGold":1323,"level":3,"xp":857,"minionsKilled":0,"jungleMinionsKilled":5,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":7328,"y":6939},"currentGold":416,"totalGold":916,"level":3,"xp":886,"minionsKilled":16,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":12647,"y":2903},"currentGold":328,"totalGold":828,"level":2,"xp":404,"minionsKilled":11,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":11822,"y":6008},"currentGold":354,"totalGold":854,"level":2,"xp":434,"minionsKilled":1,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":2754,"y":12696},"currentGold":314,"totalGold":814,"level":3,"xp":706,"minionsKilled":10,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":12313,"y":6362},"currentGold":423,"totalGold":923,"level":3,"xp":780,"minionsKilled":0,"jungleMinionsKilled":5,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8688,"y":8454},"currentGold":345,"totalGold":845,"level":3,"xp":706,"minionsKilled":12,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":13408,"y":3773},"currentGold":311,"totalGold":811,"level":2,"xp":345,"minionsKilled":10,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13421,"y":3912},"currentGold":169,"totalGold":669,"level":2,"xp":345,"minionsKilled":1,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":121649,"wardType":"YELLOW_TRINKET","creatorId":9},{"type":"SKILL_LEVEL_UP","timestamp":136666,"participantId":3,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":139329,"participantId":8,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":147636,"participantId":4,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":147734,"participantId":6,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":148255,"participantId":5,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":148742,"participantId":1,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_DESTROYED","timestamp":150233,"participantId":1,"itemId":2003},{"type":"WARD_PLACED","timestamp":150755,"wardType":"YELLOW_TRINKET","creatorId":3},{"type":"SKILL_LEVEL_UP","timestamp":155756,"participantId":2,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":158091,"participantId":7,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":159811,"wardType":"YELLOW_TRINKET","creatorId":4},{"type":"SKILL_LEVEL_UP","timestamp":164776,"participantId":10,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":172824,"participantId":3,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"CHAMPION_KILL","timestamp":173992,"position":{"x":12313,"y":6362},"killerId":2,"victimId":7,"assistingParticipantIds":[5]},{"type":"SKILL_LEVEL_UP","timestamp":174674,"participantId":8,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":177333,"wardType":"YELLOW_TRINKET","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":178764,"participantId":5,"itemId":2010},{"type":"SKILL_LEVEL_UP","timestamp":179899,"participantId":6,"skillSlot":2,"levelUpType":"NORMAL"}],"timestamp":180191},{"participantFrames":{"1":{"participantId":1,"position":{"x":1813,"y":11869},"currentGold":644,"totalGold":1144,"level":4,"xp":1210,"minionsKilled":20,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":8348,"y":2490},"currentGold":1243,"totalGold":1743,"level":4,"xp":1378,"minionsKilled":0,"jungleMinionsKilled":16,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":6707,"y":8345},"currentGold":256,"totalGold":1156,"level":4,"xp":1328,"minionsKilled":22,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":13141,"y":2650},"currentGold":756,"totalGold":1256,"level":3,"xp":945,"minionsKilled":26,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12673,"y":2811},"currentGold":512,"totalGold":1012,"level":3,"xp":917,"minionsKilled":1,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":2211,"y":12729},"currentGold":602,"totalGold":1102,"level":4,"xp":1210,"minionsKilled":19,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":7081,"y":11606},"currentGold":270,"totalGold":1205,"level":3,"xp":1115,"minionsKilled":0,"jungleMinionsKilled":15,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8209,"y":8559},"currentGold":145,"totalGold":1155,"level":4,"xp":1151,"minionsKilled":21,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":13663,"y":3762},"currentGold":681,"totalGold":1181,"level":3,"xp":751,"minionsKilled":22,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13647,"y":3886},"currentGold":379,"totalGold":879,"level":3,"xp":751,"minionsKilled":3,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_PURCHASED","timestamp":185345,"participantId":3,"itemId":3070},{"type":"ITEM_DESTROYED","timestamp":185345,"participantId":3,"itemId":1027},{"type":"ITEM_PURCHASED","timestamp":186350,"participantId":7,"itemId":1052},{"type":"ITEM_PURCHASED","timestamp":190081,"participantId":7,"itemId":3341},{"type":"ITEM_DESTROYED","timestamp":190081,"participantId":7,"itemId":3340},{"type":"WARD_PLACED","timestamp":193748,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"SKILL_LEVEL_UP","timestamp":197513,"participantId":9,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":202249,"participantId":1,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":205332,"participantId":8,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":210067,"participantId":2,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":210880,"participantId":5,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":213250,"participantId":8,"itemId":1052},{"type":"ITEM_DESTROYED","timestamp":213315,"participantId":10,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":214322,"participantId":8,"itemId":2055},{"type":"WARD_PLACED","timestamp":216235,"wardType":"YELLOW_TRINKET","creatorId":10},{"type":"SKILL_LEVEL_UP","timestamp":217729,"participantId":10,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":219060,"participantId":4,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":220389,"participantId":3,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":221133,"participantId":9,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":224702,"participantId":1,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":228391,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"SKILL_LEVEL_UP","timestamp":231176,"participantId":6,"skillSlot":1,"levelUpType":"NORMAL"}],"timestamp":240192},{"participantFrames":{"1":{"participantId":1,"position":{"x":1964,"y":12151},"currentGold":960,"totalGold":1460,"level":4,"xp":1714,"minionsKilled":29,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":3387,"y":10583},"currentGold":96,"totalGold":1996,"level":4,"xp":1631,"minionsKilled":0,"jungleMinionsKilled":23,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":6553,"y":6929},"currentGold":617,"totalGold":1517,"level":5,"xp":1986,"minionsKilled":35,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":11887,"y":2042},"currentGold":958,"totalGold":1458,"level":3,"xp":1122,"minionsKilled":29,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12040,"y":1482},"currentGold":671,"totalGold":1171,"level":3,"xp":1133,"minionsKilled":1,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":2552,"y":12348},"currentGold":922,"totalGold":1422,"level":5,"xp":1891,"minionsKilled":28,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":7769,"y":9847},"currentGold":545,"totalGold":1480,"level":4,"xp":1327,"minionsKilled":1,"jungleMinionsKilled":18,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8249,"y":8413},"currentGold":574,"totalGold":1584,"level":5,"xp":1841,"minionsKilled":36,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":12693,"y":2893},"currentGold":1035,"totalGold":1535,"level":4,"xp":1156,"minionsKilled":33,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13066,"y":2589},"currentGold":587,"totalGold":1087,"level":4,"xp":1156,"minionsKilled":5,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":242750,"wardType":"YELLOW_TRINKET","creatorId":3},{"type":"WARD_KILL","timestamp":253380,"wardType":"YELLOW_TRINKET","killerId":7},{"type":"SKILL_LEVEL_UP","timestamp":254901,"participantId":7,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":255258,"wardType":"YELLOW_TRINKET","creatorId":4},{"type":"ITEM_PURCHASED","timestamp":260924,"participantId":2,"itemId":3133},{"type":"ITEM_PURCHASED","timestamp":261248,"participantId":2,"itemId":1001},{"type":"ITEM_DESTROYED","timestamp":263550,"participantId":8,"itemId":2010},{"type":"ITEM_DESTROYED","timestamp":266076,"participantId":3,"itemId":2003},{"type":"WARD_PLACED","timestamp":278899,"wardType":"UNDEFINED","creatorId":8},{"type":"ITEM_DESTROYED","timestamp":278899,"participantId":8,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":284209,"participantId":3,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":286447,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"SKILL_LEVEL_UP","timestamp":288098,"participantId":6,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":291947,"wardType":"YELLOW_TRINKET","creatorId":9},{"type":"SKILL_LEVEL_UP","timestamp":295806,"participantId":8,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":298626,"participantId":10,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":299079,"participantId":9,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501},{"type":"ITEM_DESTROYED","timestamp":300118,"participantId":0,"itemId":1501}],"timestamp":300215},{"participantFrames":{"1":{"participantId":1,"position":{"x":1589,"y":11698},"currentGold":1325,"totalGold":1825,"level":5,"xp":2333,"minionsKilled":42,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":3320,"y":8407},"currentGold":318,"totalGold":2218,"level":5,"xp":1861,"minionsKilled":0,"jungleMinionsKilled":26,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":7986,"y":5891},"currentGold":938,"totalGold":1838,"level":6,"xp":2549,"minionsKilled":44,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":12061,"y":2030},"currentGold":1348,"totalGold":1848,"level":4,"xp":1602,"minionsKilled":43,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12515,"y":1591},"currentGold":837,"totalGold":1337,"level":4,"xp":1613,"minionsKilled":1,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":2242,"y":12929},"currentGold":1085,"totalGold":1585,"level":5,"xp":2185,"minionsKilled":30,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":8980,"y":7445},"currentGold":707,"totalGold":1642,"level":4,"xp":1479,"minionsKilled":1,"jungleMinionsKilled":22,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":7509,"y":7413},"currentGold":898,"totalGold":1908,"level":5,"xp":2349,"minionsKilled":47,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":13013,"y":2734},"currentGold":1423,"totalGold":1923,"level":4,"xp":1579,"minionsKilled":47,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13183,"y":2572},"currentGold":755,"totalGold":1255,"level":4,"xp":1579,"minionsKilled":6,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"SKILL_LEVEL_UP","timestamp":301641,"participantId":5,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":303681,"participantId":4,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":305044,"wardType":"YELLOW_TRINKET","creatorId":5},{"type":"WARD_PLACED","timestamp":306239,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"SKILL_LEVEL_UP","timestamp":306401,"participantId":1,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":330293,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"WARD_PLACED","timestamp":331037,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"ITEM_DESTROYED","timestamp":336875,"participantId":8,"itemId":2010},{"type":"ITEM_DESTROYED","timestamp":341573,"participantId":5,"itemId":2010},{"type":"ITEM_DESTROYED","timestamp":342674,"participantId":10,"itemId":2010},{"type":"ITEM_DESTROYED","timestamp":342835,"participantId":4,"itemId":2010},{"type":"SKILL_LEVEL_UP","timestamp":351657,"participantId":3,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":356382,"participantId":2,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":357743,"wardType":"YELLOW_TRINKET","creatorId":3}],"timestamp":360241},{"participantFrames":{"1":{"participantId":1,"position":{"x":4409,"y":13614},"currentGold":1941,"totalGold":2441,"level":6,"xp":3164,"minionsKilled":51,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":4132,"y":13781},"currentGold":749,"totalGold":2649,"level":6,"xp":2542,"minionsKilled":4,"jungleMinionsKilled":27,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":8296,"y":8144},"currentGold":449,"totalGold":2074,"level":6,"xp":2814,"minionsKilled":50,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":4478,"y":803},"currentGold":31,"totalGold":2181,"level":5,"xp":1902,"minionsKilled":53,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":5682,"y":867},"currentGold":55,"totalGold":1480,"level":5,"xp":1884,"minionsKilled":1,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":11406,"y":14169},"currentGold":28,"totalGold":1753,"level":5,"xp":2277,"minionsKilled":31,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":10858,"y":12689},"currentGold":91,"totalGold":1951,"level":5,"xp":1999,"minionsKilled":1,"jungleMinionsKilled":26,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":9333,"y":9418},"currentGold":72,"totalGold":2207,"level":6,"xp":2736,"minionsKilled":55,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":12143,"y":2019},"currentGold":1812,"totalGold":2312,"level":5,"xp":2042,"minionsKilled":60,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13043,"y":3045},"currentGold":969,"totalGold":1469,"level":5,"xp":2042,"minionsKilled":8,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":361246,"wardType":"YELLOW_TRINKET","creatorId":5},{"type":"SKILL_LEVEL_UP","timestamp":367947,"participantId":8,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":368432,"participantId":1,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":371215,"participantId":6,"itemId":1036},{"type":"ITEM_PURCHASED","timestamp":371377,"participantId":6,"itemId":1036},{"type":"ITEM_PURCHASED","timestamp":371831,"participantId":6,"itemId":1006},{"type":"ITEM_PURCHASED","timestamp":372738,"participantId":6,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":375362,"participantId":3,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":376398,"participantId":3,"itemId":1027},{"type":"ITEM_PURCHASED","timestamp":377109,"participantId":3,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":377465,"participantId":5,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":383143,"wardType":"YELLOW_TRINKET","creatorId":8},{"type":"ITEM_DESTROYED","timestamp":384180,"participantId":10,"itemId":2010},{"type":"SKILL_LEVEL_UP","timestamp":389748,"participantId":4,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":391919,"participantId":10,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":392566,"wardType":"YELLOW_TRINKET","creatorId":10},{"type":"CHAMPION_KILL","timestamp":392599,"position":{"x":2593,"y":12681},"killerId":1,"victimId":6,"assistingParticipantIds":[2]},{"type":"ITEM_PURCHASED","timestamp":398356,"participantId":8,"itemId":3802},{"type":"ITEM_DESTROYED","timestamp":398356,"participantId":8,"itemId":1052},{"type":"ITEM_PURCHASED","timestamp":398713,"participantId":8,"itemId":1052},{"type":"ITEM_PURCHASED","timestamp":400104,"participantId":8,"itemId":2031},{"type":"ITEM_PURCHASED","timestamp":400623,"participantId":8,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":401270,"participantId":7,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":402111,"participantId":9,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":403502,"participantId":5,"itemId":3341},{"type":"ITEM_DESTROYED","timestamp":403502,"participantId":5,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":404021,"participantId":5,"itemId":2049},{"type":"ITEM_PURCHASED","timestamp":404537,"participantId":5,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":404861,"participantId":5,"itemId":2010},{"type":"SKILL_LEVEL_UP","timestamp":405636,"participantId":2,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":406899,"participantId":4,"itemId":1038},{"type":"ITEM_PURCHASED","timestamp":407030,"participantId":6,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":407872,"participantId":4,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":408163,"participantId":4,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":409423,"participantId":7,"itemId":3113},{"type":"ITEM_DESTROYED","timestamp":409423,"participantId":7,"itemId":1052},{"type":"ITEM_PURCHASED","timestamp":410232,"participantId":7,"itemId":1052},{"type":"ITEM_PURCHASED","timestamp":411170,"participantId":7,"itemId":2055}],"timestamp":420245},{"participantFrames":{"1":{"participantId":1,"position":{"x":1220,"y":9308},"currentGold":113,"totalGold":3213,"level":6,"xp":3164,"minionsKilled":51,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":1158,"y":736},"currentGold":396,"totalGold":2896,"level":6,"xp":2542,"minionsKilled":4,"jungleMinionsKilled":27,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":6022,"y":6591},"currentGold":1017,"totalGold":2642,"level":7,"xp":3557,"minionsKilled":60,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":12535,"y":2687},"currentGold":511,"totalGold":2661,"level":5,"xp":2380,"minionsKilled":64,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12862,"y":2297},"currentGold":331,"totalGold":1756,"level":5,"xp":2243,"minionsKilled":2,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":2169,"y":11698},"currentGold":441,"totalGold":2166,"level":6,"xp":2988,"minionsKilled":45,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":7968,"y":9976},"currentGold":405,"totalGold":2265,"level":6,"xp":2459,"minionsKilled":1,"jungleMinionsKilled":31,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":6988,"y":6653},"currentGold":485,"totalGold":2620,"level":7,"xp":3564,"minionsKilled":69,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":13569,"y":3535},"currentGold":351,"totalGold":2576,"level":5,"xp":2275,"minionsKilled":66,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13592,"y":3298},"currentGold":136,"totalGold":1611,"level":5,"xp":2275,"minionsKilled":8,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":426592,"wardType":"UNDEFINED","creatorId":3},{"type":"ITEM_DESTROYED","timestamp":426592,"participantId":3,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":427496,"participantId":9,"itemId":1038},{"type":"ITEM_PURCHASED","timestamp":428239,"participantId":9,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":429341,"participantId":9,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":430117,"participantId":9,"itemId":2055},{"type":"BUILDING_KILL","timestamp":430731,"position":{"x":4318,"y":13875},"killerId":1,"assistingParticipantIds":[2],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"TOP_LANE","towerType":"OUTER_TURRET"},{"type":"ITEM_PURCHASED","timestamp":431023,"participantId":10,"itemId":2049},{"type":"WARD_PLACED","timestamp":432190,"wardType":"UNDEFINED","creatorId":7},{"type":"ITEM_DESTROYED","timestamp":432190,"participantId":7,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":432319,"participantId":10,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":432546,"participantId":10,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":432675,"participantId":10,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":433617,"participantId":10,"itemId":3341},{"type":"ITEM_DESTROYED","timestamp":433617,"participantId":10,"itemId":3340},{"type":"SKILL_LEVEL_UP","timestamp":442869,"participantId":8,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":444358,"wardType":"UNDEFINED","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":444358,"participantId":5,"itemId":2055},{"type":"WARD_PLACED","timestamp":448631,"wardType":"YELLOW_TRINKET","creatorId":8},{"type":"WARD_PLACED","timestamp":448728,"wardType":"SIGHT_WARD","creatorId":5},{"type":"SKILL_LEVEL_UP","timestamp":449052,"participantId":6,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":449763,"participantId":1,"itemId":3751},{"type":"ITEM_PURCHASED","timestamp":451154,"participantId":1,"itemId":1001},{"type":"WARD_PLACED","timestamp":451932,"wardType":"SIGHT_WARD","creatorId":5},{"type":"ITEM_PURCHASED","timestamp":453034,"participantId":1,"itemId":3057},{"type":"ITEM_UNDO","timestamp":455201,"participantId":1,"afterId":0,"beforeId":3057},{"type":"ITEM_PURCHASED","timestamp":455816,"participantId":1,"itemId":1031},{"type":"ITEM_PURCHASED","timestamp":457437,"participantId":1,"itemId":1056},{"type":"WARD_PLACED","timestamp":463494,"wardType":"YELLOW_TRINKET","creatorId":9},{"type":"SKILL_LEVEL_UP","timestamp":465215,"participantId":3,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":471990,"participantId":2,"itemId":3711},{"type":"ITEM_DESTROYED","timestamp":471990,"participantId":2,"itemId":1041},{"type":"ITEM_UNDO","timestamp":472930,"participantId":2,"afterId":0,"beforeId":3711},{"type":"ITEM_PURCHASED","timestamp":473802,"participantId":2,"itemId":3117},{"type":"ITEM_DESTROYED","timestamp":473802,"participantId":2,"itemId":1001},{"type":"SKILL_LEVEL_UP","timestamp":475196,"participantId":7,"skillSlot":4,"levelUpType":"NORMAL"}],"timestamp":480270},{"participantFrames":{"1":{"participantId":1,"position":{"x":3932,"y":13251},"currentGold":500,"totalGold":3600,"level":7,"xp":4051,"minionsKilled":64,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":11567,"y":1794},"currentGold":404,"totalGold":3254,"level":6,"xp":3054,"minionsKilled":4,"jungleMinionsKilled":37,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":6588,"y":6942},"currentGold":357,"totalGold":2957,"level":7,"xp":3944,"minionsKilled":69,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":12635,"y":2908},"currentGold":1369,"totalGold":3519,"level":6,"xp":2957,"minionsKilled":73,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12910,"y":3352},"currentGold":731,"totalGold":2156,"level":6,"xp":2791,"minionsKilled":2,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":5042,"y":13580},"currentGold":254,"totalGold":2329,"level":7,"xp":3194,"minionsKilled":47,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":12983,"y":3328},"currentGold":847,"totalGold":2707,"level":6,"xp":2646,"minionsKilled":1,"jungleMinionsKilled":33,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8153,"y":7559},"currentGold":912,"totalGold":3047,"level":8,"xp":4222,"minionsKilled":83,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":12064,"y":1678},"currentGold":702,"totalGold":2927,"level":6,"xp":2671,"minionsKilled":75,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":12905,"y":3344},"currentGold":391,"totalGold":1866,"level":6,"xp":2690,"minionsKilled":10,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_PURCHASED","timestamp":481606,"participantId":2,"itemId":1036},{"type":"ITEM_DESTROYED","timestamp":482908,"participantId":3,"itemId":2003},{"type":"SKILL_LEVEL_UP","timestamp":483820,"participantId":1,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_DESTROYED","timestamp":484504,"participantId":3,"itemId":2003},{"type":"ITEM_PURCHASED","timestamp":488637,"participantId":6,"itemId":3077},{"type":"ITEM_DESTROYED","timestamp":488637,"participantId":6,"itemId":1036},{"type":"ITEM_DESTROYED","timestamp":488637,"participantId":6,"itemId":1006},{"type":"ITEM_DESTROYED","timestamp":488637,"participantId":6,"itemId":1036},{"type":"WARD_PLACED","timestamp":494107,"wardType":"YELLOW_TRINKET","creatorId":4},{"type":"WARD_KILL","timestamp":496940,"wardType":"YELLOW_TRINKET","killerId":9},{"type":"WARD_PLACED","timestamp":500095,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_PLACED","timestamp":501689,"wardType":"UNDEFINED","creatorId":10},{"type":"ITEM_DESTROYED","timestamp":501689,"participantId":10,"itemId":2055},{"type":"WARD_KILL","timestamp":503185,"wardType":"SIGHT_WARD","killerId":9},{"type":"SKILL_LEVEL_UP","timestamp":503350,"participantId":4,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":504001,"participantId":3,"itemId":3010},{"type":"ITEM_DESTROYED","timestamp":504001,"participantId":3,"itemId":1027},{"type":"SKILL_LEVEL_UP","timestamp":504815,"participantId":10,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":505107,"participantId":3,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":505400,"participantId":3,"itemId":2031},{"type":"SKILL_LEVEL_UP","timestamp":505433,"participantId":9,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":509763,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":515848,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"CHAMPION_KILL","timestamp":524892,"position":{"x":11567,"y":1794},"killerId":7,"victimId":2,"assistingParticipantIds":[9,10]},{"type":"ITEM_DESTROYED","timestamp":525509,"participantId":10,"itemId":2010},{"type":"CHAMPION_KILL","timestamp":525705,"position":{"x":12064,"y":1678},"killerId":4,"victimId":9,"assistingParticipantIds":[2,5]},{"type":"SKILL_LEVEL_UP","timestamp":526745,"participantId":5,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"ITEM_DESTROYED","timestamp":528371,"participantId":10,"itemId":2010},{"type":"SKILL_LEVEL_UP","timestamp":528891,"participantId":6,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_KILL","timestamp":536246,"wardType":"UNDEFINED","killerId":8},{"type":"SKILL_LEVEL_UP","timestamp":537093,"participantId":8,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"CHAMPION_KILL","timestamp":539210,"position":{"x":12905,"y":3344},"killerId":4,"victimId":10,"assistingParticipantIds":[5]}],"timestamp":540285},{"participantFrames":{"1":{"participantId":1,"position":{"x":5554,"y":8827},"currentGold":805,"totalGold":3905,"level":8,"xp":4689,"minionsKilled":73,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":7033,"y":4269},"currentGold":301,"totalGold":3501,"level":7,"xp":3441,"minionsKilled":4,"jungleMinionsKilled":39,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":6783,"y":7002},"currentGold":588,"totalGold":3188,"level":8,"xp":4383,"minionsKilled":75,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":7345,"y":1251},"currentGold":258,"totalGold":3808,"level":7,"xp":3271,"minionsKilled":82,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":4269,"y":856},"currentGold":20,"totalGold":2320,"level":6,"xp":3106,"minionsKilled":3,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":3639,"y":13509},"currentGold":693,"totalGold":2768,"level":7,"xp":3933,"minionsKilled":62,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":11708,"y":7304},"currentGold":331,"totalGold":2916,"level":6,"xp":2936,"minionsKilled":1,"jungleMinionsKilled":34,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8389,"y":7690},"currentGold":1208,"totalGold":3343,"level":8,"xp":4693,"minionsKilled":92,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":11567,"y":1920},"currentGold":713,"totalGold":3238,"level":6,"xp":3113,"minionsKilled":85,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":8871,"y":5498},"currentGold":131,"totalGold":2031,"level":6,"xp":2727,"minionsKilled":11,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_DESTROYED","timestamp":543350,"participantId":5,"itemId":2010},{"type":"SKILL_LEVEL_UP","timestamp":543936,"participantId":1,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":547546,"participantId":2,"itemId":1039},{"type":"ITEM_PURCHASED","timestamp":548816,"participantId":9,"itemId":1042},{"type":"ITEM_PURCHASED","timestamp":550149,"participantId":10,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":550670,"participantId":10,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":557141,"participantId":10,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":560916,"participantId":7,"itemId":3715},{"type":"ITEM_DESTROYED","timestamp":560916,"participantId":7,"itemId":1039},{"type":"SKILL_LEVEL_UP","timestamp":561274,"participantId":3,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":563456,"wardType":"UNDEFINED","creatorId":3},{"type":"ITEM_DESTROYED","timestamp":563456,"participantId":3,"itemId":2055},{"type":"WARD_PLACED","timestamp":563651,"wardType":"YELLOW_TRINKET","creatorId":4},{"type":"ITEM_PURCHASED","timestamp":563943,"participantId":7,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":564499,"participantId":4,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":564597,"wardType":"YELLOW_TRINKET","creatorId":3},{"type":"WARD_KILL","timestamp":570420,"wardType":"UNDEFINED","killerId":5},{"type":"WARD_PLACED","timestamp":571297,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"WARD_PLACED","timestamp":571883,"wardType":"YELLOW_TRINKET","creatorId":8},{"type":"ITEM_PURCHASED","timestamp":578394,"participantId":4,"itemId":3133},{"type":"ITEM_PURCHASED","timestamp":579923,"participantId":4,"itemId":1042},{"type":"ITEM_PURCHASED","timestamp":580869,"participantId":5,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":580935,"participantId":4,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":582170,"participantId":5,"itemId":2055},{"type":"ITEM_UNDO","timestamp":582463,"participantId":4,"afterId":0,"beforeId":2010},{"type":"WARD_KILL","timestamp":583862,"wardType":"UNDEFINED","killerId":1},{"type":"ELITE_MONSTER_KILL","timestamp":585326,"position":{"x":9866,"y":4414},"killerId":2,"monsterType":"DRAGON","monsterSubType":"FIRE_DRAGON"},{"type":"SKILL_LEVEL_UP","timestamp":587214,"participantId":2,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":591290,"participantId":5,"itemId":3098},{"type":"ITEM_DESTROYED","timestamp":591290,"participantId":5,"itemId":3303},{"type":"WARD_PLACED","timestamp":592039,"wardType":"UNDEFINED","creatorId":10},{"type":"ITEM_DESTROYED","timestamp":592039,"participantId":10,"itemId":2055},{"type":"WARD_KILL","timestamp":597195,"wardType":"UNDEFINED","killerId":10}],"timestamp":600286},{"participantFrames":{"1":{"participantId":1,"position":{"x":1070,"y":11440},"currentGold":1225,"totalGold":4325,"level":9,"xp":5517,"minionsKilled":87,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":11819,"y":2514},"currentGold":676,"totalGold":3876,"level":7,"xp":3772,"minionsKilled":4,"jungleMinionsKilled":46,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":10628,"y":3082},"currentGold":851,"totalGold":3451,"level":8,"xp":4740,"minionsKilled":81,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":12273,"y":2410},"currentGold":893,"totalGold":4443,"level":7,"xp":3891,"minionsKilled":93,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12540,"y":2654},"currentGold":268,"totalGold":2568,"level":7,"xp":3476,"minionsKilled":3,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":2379,"y":12597},"currentGold":963,"totalGold":3038,"level":8,"xp":4379,"minionsKilled":70,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":11601,"y":4341},"currentGold":553,"totalGold":3138,"level":7,"xp":3226,"minionsKilled":1,"jungleMinionsKilled":37,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":11867,"y":3810},"currentGold":1613,"totalGold":3748,"level":9,"xp":5449,"minionsKilled":102,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":13490,"y":3660},"currentGold":961,"totalGold":3486,"level":7,"xp":3366,"minionsKilled":90,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":10425,"y":4794},"currentGold":273,"totalGold":2173,"level":6,"xp":2922,"minionsKilled":11,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":600644,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":603344,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":609501,"wardType":"UNDEFINED","creatorId":6},{"type":"ITEM_DESTROYED","timestamp":609501,"participantId":6,"itemId":2055},{"type":"WARD_PLACED","timestamp":612985,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"SKILL_LEVEL_UP","timestamp":621098,"participantId":9,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":621426,"participantId":8,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":626805,"wardType":"YELLOW_TRINKET","creatorId":9},{"type":"SKILL_LEVEL_UP","timestamp":627682,"participantId":7,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":627812,"participantId":1,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":629407,"participantId":5,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_DESTROYED","timestamp":637610,"participantId":1,"itemId":2003},{"type":"SKILL_LEVEL_UP","timestamp":639333,"participantId":6,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":642715,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"ITEM_DESTROYED","timestamp":645583,"participantId":10,"itemId":2010},{"type":"WARD_PLACED","timestamp":646332,"wardType":"SIGHT_WARD","creatorId":10},{"type":"CHAMPION_KILL","timestamp":647440,"position":{"x":10425,"y":4794},"killerId":4,"victimId":10,"assistingParticipantIds":[2,5]},{"type":"ITEM_DESTROYED","timestamp":651969,"participantId":9,"itemId":2010},{"type":"ITEM_DESTROYED","timestamp":652034,"participantId":4,"itemId":2010},{"type":"ITEM_DESTROYED","timestamp":655126,"participantId":9,"itemId":2010}],"timestamp":660302},{"participantFrames":{"1":{"participantId":1,"position":{"x":1418,"y":8757},"currentGold":93,"totalGold":4593,"level":9,"xp":5819,"minionsKilled":94,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":2341,"y":8348},"currentGold":59,"totalGold":4159,"level":8,"xp":4257,"minionsKilled":4,"jungleMinionsKilled":56,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":5932,"y":6173},"currentGold":1189,"totalGold":3789,"level":9,"xp":5224,"minionsKilled":91,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":11823,"y":1564},"currentGold":1264,"totalGold":4814,"level":8,"xp":4324,"minionsKilled":106,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":11946,"y":1720},"currentGold":433,"totalGold":2733,"level":7,"xp":3909,"minionsKilled":4,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":11564,"y":14085},"currentGold":41,"totalGold":3391,"level":8,"xp":4909,"minionsKilled":82,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":8791,"y":11489},"currentGold":36,"totalGold":3261,"level":7,"xp":3264,"minionsKilled":1,"jungleMinionsKilled":37,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":14137,"y":14221},"currentGold":318,"totalGold":4018,"level":9,"xp":5953,"minionsKilled":110,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":12709,"y":2972},"currentGold":1255,"totalGold":3780,"level":7,"xp":3807,"minionsKilled":99,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13375,"y":2452},"currentGold":335,"totalGold":2360,"level":6,"xp":3118,"minionsKilled":13,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_PURCHASED","timestamp":666060,"participantId":10,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":666418,"participantId":10,"itemId":2010},{"type":"WARD_PLACED","timestamp":671791,"wardType":"SIGHT_WARD","creatorId":5},{"type":"SKILL_LEVEL_UP","timestamp":681999,"participantId":2,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":686456,"participantId":4,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":687533,"wardType":"UNDEFINED","creatorId":7},{"type":"ITEM_DESTROYED","timestamp":687533,"participantId":7,"itemId":2055},{"type":"WARD_KILL","timestamp":687735,"wardType":"UNDEFINED","killerId":1},{"type":"WARD_PLACED","timestamp":692164,"wardType":"YELLOW_TRINKET","creatorId":8},{"type":"WARD_KILL","timestamp":695979,"wardType":"UNDEFINED","killerId":5},{"type":"ITEM_PURCHASED","timestamp":696889,"participantId":1,"itemId":3068},{"type":"ITEM_DESTROYED","timestamp":696889,"participantId":1,"itemId":1031},{"type":"ITEM_DESTROYED","timestamp":696889,"participantId":1,"itemId":3751},{"type":"WARD_PLACED","timestamp":698713,"wardType":"SIGHT_WARD","creatorId":5},{"type":"ITEM_PURCHASED","timestamp":698745,"participantId":2,"itemId":1408},{"type":"ITEM_DESTROYED","timestamp":698745,"participantId":2,"itemId":3133},{"type":"ITEM_DESTROYED","timestamp":698745,"participantId":2,"itemId":1039},{"type":"ITEM_DESTROYED","timestamp":698745,"participantId":2,"itemId":1041},{"type":"ITEM_PURCHASED","timestamp":699233,"participantId":1,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":700276,"participantId":2,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":704117,"participantId":7,"itemId":1414},{"type":"ITEM_DESTROYED","timestamp":704117,"participantId":7,"itemId":3113},{"type":"ITEM_DESTROYED","timestamp":704117,"participantId":7,"itemId":1052},{"type":"ITEM_DESTROYED","timestamp":704117,"participantId":7,"itemId":3715},{"type":"ITEM_PURCHASED","timestamp":705063,"participantId":7,"itemId":1001},{"type":"SKILL_LEVEL_UP","timestamp":705650,"participantId":3,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_KILL","timestamp":709655,"wardType":"SIGHT_WARD","killerId":10},{"type":"ITEM_PURCHASED","timestamp":710564,"participantId":6,"itemId":3052},{"type":"ITEM_PURCHASED","timestamp":714602,"participantId":6,"itemId":2055},{"type":"WARD_PLACED","timestamp":715155,"wardType":"YELLOW_TRINKET","creatorId":9},{"type":"ITEM_PURCHASED","timestamp":719293,"participantId":8,"itemId":3165},{"type":"ITEM_DESTROYED","timestamp":719293,"participantId":8,"itemId":1052},{"type":"ITEM_DESTROYED","timestamp":719293,"participantId":8,"itemId":3802}],"timestamp":720335},{"participantFrames":{"1":{"participantId":1,"position":{"x":7662,"y":8419},"currentGold":574,"totalGold":5074,"level":10,"xp":6347,"minionsKilled":105,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":7650,"y":11934},"currentGold":667,"totalGold":4767,"level":8,"xp":4849,"minionsKilled":4,"jungleMinionsKilled":60,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":7844,"y":11754},"currentGold":532,"totalGold":4007,"level":9,"xp":5642,"minionsKilled":95,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":13532,"y":4163},"currentGold":1981,"totalGold":5531,"level":8,"xp":4996,"minionsKilled":120,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":13405,"y":4938},"currentGold":826,"totalGold":3126,"level":8,"xp":4581,"minionsKilled":5,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":8203,"y":12286},"currentGold":164,"totalGold":3514,"level":8,"xp":4909,"minionsKilled":82,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":6596,"y":9528},"currentGold":291,"totalGold":3516,"level":7,"xp":3584,"minionsKilled":1,"jungleMinionsKilled":43,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8489,"y":12501},"currentGold":236,"totalGold":4236,"level":10,"xp":6159,"minionsKilled":115,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":12981,"y":5249},"currentGold":1594,"totalGold":4119,"level":8,"xp":4185,"minionsKilled":109,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":10014,"y":6548},"currentGold":585,"totalGold":2610,"level":7,"xp":3503,"minionsKilled":15,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_PURCHASED","timestamp":720367,"participantId":8,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":724011,"participantId":3,"itemId":3111},{"type":"ITEM_DESTROYED","timestamp":724011,"participantId":3,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":725313,"participantId":3,"itemId":2055},{"type":"WARD_PLACED","timestamp":726030,"wardType":"YELLOW_TRINKET","creatorId":4},{"type":"SKILL_LEVEL_UP","timestamp":728509,"participantId":10,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_KILL","timestamp":738073,"wardType":"UNDEFINED","killerId":10},{"type":"WARD_PLACED","timestamp":740189,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"WARD_PLACED","timestamp":741598,"wardType":"UNDEFINED","creatorId":2},{"type":"ITEM_DESTROYED","timestamp":741598,"participantId":2,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":742899,"participantId":1,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":748308,"participantId":5,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":751105,"participantId":8,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":753643,"wardType":"UNDEFINED","creatorId":3},{"type":"ITEM_DESTROYED","timestamp":753643,"participantId":3,"itemId":2055},{"type":"WARD_PLACED","timestamp":755043,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"WARD_PLACED","timestamp":760347,"wardType":"UNDEFINED","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":760347,"participantId":5,"itemId":2055},{"type":"CHAMPION_KILL","timestamp":768351,"position":{"x":6596,"y":9528},"killerId":2,"victimId":7,"assistingParticipantIds":[1]},{"type":"WARD_PLACED","timestamp":768969,"wardType":"SIGHT_WARD","creatorId":2},{"type":"CHAMPION_KILL","timestamp":771702,"position":{"x":12981,"y":5249},"killerId":4,"victimId":9,"assistingParticipantIds":[5]}],"timestamp":780365},{"participantFrames":{"1":{"participantId":1,"position":{"x":3416,"y":8870},"currentGold":120,"totalGold":5670,"level":10,"xp":7021,"minionsKilled":110,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":1225,"y":2128},"currentGold":192,"totalGold":5742,"level":9,"xp":5724,"minionsKilled":6,"jungleMinionsKilled":61,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":6501,"y":6532},"currentGold":1494,"totalGold":4969,"level":10,"xp":6488,"minionsKilled":102,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":6077,"y":1141},"currentGold":167,"totalGold":6292,"level":9,"xp":5229,"minionsKilled":127,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":3776,"y":828},"currentGold":20,"totalGold":3545,"level":8,"xp":4873,"minionsKilled":5,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":6568,"y":13629},"currentGold":443,"totalGold":3793,"level":9,"xp":5295,"minionsKilled":88,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":12142,"y":6845},"currentGold":606,"totalGold":3831,"level":8,"xp":4314,"minionsKilled":1,"jungleMinionsKilled":47,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8674,"y":8488},"currentGold":454,"totalGold":4454,"level":10,"xp":6365,"minionsKilled":120,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":13564,"y":4384},"currentGold":437,"totalGold":4462,"level":8,"xp":4659,"minionsKilled":119,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13515,"y":12951},"currentGold":148,"totalGold":2898,"level":7,"xp":4007,"minionsKilled":20,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":781408,"wardType":"SIGHT_WARD","creatorId":2},{"type":"CHAMPION_KILL","timestamp":782254,"position":{"x":8855,"y":12989},"killerId":2,"victimId":8,"assistingParticipantIds":[1,3]},{"type":"CHAMPION_KILL","timestamp":784110,"position":{"x":8529,"y":13012},"killerId":3,"victimId":6,"assistingParticipantIds":[1,2]},{"type":"ITEM_PURCHASED","timestamp":784957,"participantId":9,"itemId":3006},{"type":"ITEM_DESTROYED","timestamp":784957,"participantId":9,"itemId":1001},{"type":"ITEM_DESTROYED","timestamp":784957,"participantId":9,"itemId":1042},{"type":"ITEM_PURCHASED","timestamp":787076,"participantId":9,"itemId":1043},{"type":"SKILL_LEVEL_UP","timestamp":787141,"participantId":2,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":798306,"participantId":3,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"BUILDING_KILL","timestamp":804587,"position":{"x":7943,"y":13411},"killerId":2,"assistingParticipantIds":[3],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"TOP_LANE","towerType":"INNER_TURRET"},{"type":"SKILL_LEVEL_UP","timestamp":804881,"participantId":4,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":808913,"wardType":"YELLOW_TRINKET","creatorId":3},{"type":"BUILDING_KILL","timestamp":810279,"position":{"x":13866,"y":4505},"killerId":4,"assistingParticipantIds":[5],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"BOT_LANE","towerType":"OUTER_TURRET"},{"type":"ITEM_PURCHASED","timestamp":812398,"participantId":1,"itemId":3057},{"type":"WARD_PLACED","timestamp":815296,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_PLACED","timestamp":816077,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"WARD_PLACED","timestamp":818810,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":818908,"wardType":"YELLOW_TRINKET","creatorId":3},{"type":"SKILL_LEVEL_UP","timestamp":819038,"participantId":9,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":821187,"participantId":4,"itemId":3508},{"type":"ITEM_DESTROYED","timestamp":821187,"participantId":4,"itemId":1038},{"type":"ITEM_DESTROYED","timestamp":821187,"participantId":4,"itemId":3133},{"type":"WARD_PLACED","timestamp":821253,"wardType":"SIGHT_WARD","creatorId":10},{"type":"ITEM_PURCHASED","timestamp":822230,"participantId":4,"itemId":3086},{"type":"ITEM_DESTROYED","timestamp":822230,"participantId":4,"itemId":1042},{"type":"ITEM_PURCHASED","timestamp":825686,"participantId":4,"itemId":1042},{"type":"ITEM_PURCHASED","timestamp":826728,"participantId":5,"itemId":3158},{"type":"ITEM_DESTROYED","timestamp":826728,"participantId":5,"itemId":1001},{"type":"WARD_PLACED","timestamp":826890,"wardType":"SIGHT_WARD","creatorId":10},{"type":"ITEM_PURCHASED","timestamp":827316,"participantId":4,"itemId":3363},{"type":"ITEM_DESTROYED","timestamp":827316,"participantId":4,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":827870,"participantId":4,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":828000,"participantId":5,"itemId":2301},{"type":"ITEM_DESTROYED","timestamp":828000,"participantId":5,"itemId":2049},{"type":"ITEM_DESTROYED","timestamp":828000,"participantId":5,"itemId":3098},{"type":"ITEM_PURCHASED","timestamp":830640,"participantId":2,"itemId":3155},{"type":"ITEM_DESTROYED","timestamp":830640,"participantId":2,"itemId":1036},{"type":"ITEM_UNDO","timestamp":831811,"participantId":2,"afterId":0,"beforeId":3155},{"type":"ITEM_PURCHASED","timestamp":833342,"participantId":5,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":834420,"participantId":6,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":835005,"participantId":2,"itemId":3134},{"type":"ITEM_DESTROYED","timestamp":835005,"participantId":2,"itemId":1036},{"type":"ITEM_PURCHASED","timestamp":835980,"participantId":2,"itemId":1036},{"type":"ITEM_PURCHASED","timestamp":836306,"participantId":2,"itemId":1036},{"type":"ITEM_PURCHASED","timestamp":836730,"participantId":10,"itemId":3117},{"type":"ITEM_DESTROYED","timestamp":836730,"participantId":10,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":837484,"participantId":10,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":837777,"participantId":10,"itemId":2010}],"timestamp":840389},{"participantFrames":{"1":{"participantId":1,"position":{"x":3395,"y":13118},"currentGold":455,"totalGold":6005,"level":11,"xp":7704,"minionsKilled":121,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":6246,"y":9342},"currentGold":804,"totalGold":6354,"level":10,"xp":6305,"minionsKilled":12,"jungleMinionsKilled":62,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":6732,"y":7364},"currentGold":588,"totalGold":5378,"level":10,"xp":7052,"minionsKilled":109,"jungleMinionsKilled":2,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":10906,"y":1538},"currentGold":481,"totalGold":6606,"level":9,"xp":5539,"minionsKilled":137,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":6423,"y":6715},"currentGold":214,"totalGold":3739,"level":9,"xp":5065,"minionsKilled":5,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":5644,"y":11548},"currentGold":873,"totalGold":4223,"level":9,"xp":5825,"minionsKilled":100,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":7088,"y":6551},"currentGold":817,"totalGold":4042,"level":8,"xp":4314,"minionsKilled":1,"jungleMinionsKilled":47,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8212,"y":8051},"currentGold":1082,"totalGold":5082,"level":10,"xp":6873,"minionsKilled":127,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":12038,"y":2379},"currentGold":1017,"totalGold":5042,"level":9,"xp":5417,"minionsKilled":133,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":12152,"y":2233},"currentGold":503,"totalGold":3253,"level":8,"xp":4502,"minionsKilled":22,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_PURCHASED","timestamp":843131,"participantId":3,"itemId":1026},{"type":"SKILL_LEVEL_UP","timestamp":843521,"participantId":7,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":844368,"participantId":3,"itemId":1033},{"type":"ITEM_SOLD","timestamp":845245,"participantId":3,"itemId":2031},{"type":"ITEM_PURCHASED","timestamp":845866,"participantId":3,"itemId":2055},{"type":"WARD_PLACED","timestamp":847199,"wardType":"UNDEFINED","creatorId":9},{"type":"ITEM_DESTROYED","timestamp":847199,"participantId":9,"itemId":2055},{"type":"WARD_PLACED","timestamp":848111,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"WARD_KILL","timestamp":851205,"wardType":"UNDEFINED","killerId":9},{"type":"WARD_PLACED","timestamp":855239,"wardType":"UNDEFINED","creatorId":8},{"type":"ITEM_DESTROYED","timestamp":855239,"participantId":8,"itemId":2055},{"type":"WARD_PLACED","timestamp":855466,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"WARD_PLACED","timestamp":864007,"wardType":"UNDEFINED","creatorId":10},{"type":"ITEM_DESTROYED","timestamp":864007,"participantId":10,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":867432,"participantId":5,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"CHAMPION_KILL","timestamp":873657,"position":{"x":10906,"y":1538},"killerId":8,"victimId":4,"assistingParticipantIds":[9,10]},{"type":"SKILL_LEVEL_UP","timestamp":875590,"participantId":10,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_DESTROYED","timestamp":876175,"participantId":5,"itemId":2010},{"type":"WARD_PLACED","timestamp":889430,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"SKILL_LEVEL_UP","timestamp":891316,"participantId":9,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"CHAMPION_KILL","timestamp":893934,"position":{"x":5644,"y":11548},"killerId":2,"victimId":6,"assistingParticipantIds":[]},{"type":"SKILL_LEVEL_UP","timestamp":895345,"participantId":1,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":895734,"participantId":2,"skillSlot":2,"levelUpType":"NORMAL"}],"timestamp":900408},{"participantFrames":{"1":{"participantId":1,"position":{"x":8151,"y":7306},"currentGold":710,"totalGold":6260,"level":11,"xp":8312,"minionsKilled":126,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":10050,"y":4568},"currentGold":1376,"totalGold":6926,"level":10,"xp":6550,"minionsKilled":12,"jungleMinionsKilled":62,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":9990,"y":6840},"currentGold":951,"totalGold":5741,"level":11,"xp":7594,"minionsKilled":117,"jungleMinionsKilled":2,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":10669,"y":1775},"currentGold":1151,"totalGold":7276,"level":10,"xp":6168,"minionsKilled":150,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":6248,"y":5768},"currentGold":199,"totalGold":4024,"level":9,"xp":5216,"minionsKilled":5,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":8084,"y":10126},"currentGold":909,"totalGold":4659,"level":10,"xp":6270,"minionsKilled":109,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":10068,"y":8704},"currentGold":72,"totalGold":4572,"level":8,"xp":4572,"minionsKilled":1,"jungleMinionsKilled":47,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8784,"y":8539},"currentGold":1641,"totalGold":5641,"level":11,"xp":7742,"minionsKilled":143,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":8763,"y":4337},"currentGold":1596,"totalGold":5621,"level":9,"xp":5659,"minionsKilled":139,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":8218,"y":7492},"currentGold":300,"totalGold":3525,"level":8,"xp":4751,"minionsKilled":22,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":904547,"wardType":"UNDEFINED","creatorId":3},{"type":"ITEM_DESTROYED","timestamp":904547,"participantId":3,"itemId":2055},{"type":"ITEM_DESTROYED","timestamp":906212,"participantId":10,"itemId":2010},{"type":"CHAMPION_KILL","timestamp":906341,"position":{"x":6741,"y":6191},"killerId":7,"victimId":5,"assistingParticipantIds":[]},{"type":"SKILL_LEVEL_UP","timestamp":907614,"participantId":8,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"CHAMPION_KILL","timestamp":908135,"position":{"x":7106,"y":6193},"killerId":2,"victimId":7,"assistingParticipantIds":[3,5]},{"type":"ITEM_PURCHASED","timestamp":915190,"participantId":6,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":915223,"participantId":5,"itemId":3364},{"type":"ITEM_DESTROYED","timestamp":915223,"participantId":5,"itemId":3341},{"type":"ITEM_PURCHASED","timestamp":920828,"participantId":5,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":921187,"participantId":5,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":921317,"participantId":5,"itemId":2010},{"type":"WARD_PLACED","timestamp":921936,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"ITEM_PURCHASED","timestamp":922456,"participantId":5,"itemId":1004},{"type":"BUILDING_KILL","timestamp":924444,"position":{"x":10504,"y":1029},"killerId":0,"assistingParticipantIds":[10],"teamId":100,"buildingType":"TOWER_BUILDING","laneType":"BOT_LANE","towerType":"OUTER_TURRET"},{"type":"ITEM_PURCHASED","timestamp":926104,"participantId":7,"itemId":3111},{"type":"ITEM_DESTROYED","timestamp":926104,"participantId":7,"itemId":1001},{"type":"WARD_PLACED","timestamp":926916,"wardType":"SIGHT_WARD","creatorId":2},{"type":"ITEM_PURCHASED","timestamp":927145,"participantId":7,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":927730,"participantId":7,"itemId":2055},{"type":"WARD_PLACED","timestamp":927894,"wardType":"BLUE_TRINKET","creatorId":4},{"type":"WARD_KILL","timestamp":929617,"wardType":"BLUE_TRINKET","killerId":9},{"type":"WARD_PLACED","timestamp":931187,"wardType":"SIGHT_WARD","creatorId":2},{"type":"ITEM_PURCHASED","timestamp":932915,"participantId":10,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":933566,"participantId":10,"itemId":2055},{"type":"CHAMPION_KILL","timestamp":938455,"position":{"x":8763,"y":4337},"killerId":4,"victimId":9,"assistingParticipantIds":[2]},{"type":"SKILL_LEVEL_UP","timestamp":942792,"participantId":3,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"WARD_KILL","timestamp":946420,"wardType":"UNDEFINED","killerId":1},{"type":"ITEM_PURCHASED","timestamp":948506,"participantId":9,"itemId":3363},{"type":"ITEM_DESTROYED","timestamp":948506,"participantId":9,"itemId":3340},{"type":"SKILL_LEVEL_UP","timestamp":954862,"participantId":6,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":956949,"wardType":"YELLOW_TRINKET","creatorId":3}],"timestamp":960430},{"participantFrames":{"1":{"participantId":1,"position":{"x":3173,"y":11681},"currentGold":119,"totalGold":6469,"level":11,"xp":8480,"minionsKilled":129,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":8433,"y":2585},"currentGold":103,"totalGold":7153,"level":10,"xp":6828,"minionsKilled":13,"jungleMinionsKilled":64,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":7190,"y":1230},"currentGold":161,"totalGold":6046,"level":11,"xp":7968,"minionsKilled":120,"jungleMinionsKilled":3,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":7918,"y":6564},"currentGold":1630,"totalGold":7755,"level":10,"xp":6863,"minionsKilled":166,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":8849,"y":6313},"currentGold":395,"totalGold":4220,"level":9,"xp":5567,"minionsKilled":6,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":4539,"y":13751},"currentGold":458,"totalGold":4908,"level":10,"xp":6811,"minionsKilled":115,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":6428,"y":12504},"currentGold":407,"totalGold":4907,"level":9,"xp":5293,"minionsKilled":2,"jungleMinionsKilled":55,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8515,"y":8216},"currentGold":252,"totalGold":6027,"level":11,"xp":8168,"minionsKilled":155,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":11902,"y":7126},"currentGold":446,"totalGold":6071,"level":10,"xp":6373,"minionsKilled":150,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":9263,"y":7142},"currentGold":98,"totalGold":3723,"level":8,"xp":4864,"minionsKilled":23,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ELITE_MONSTER_KILL","timestamp":961732,"position":{"x":9866,"y":4414},"killerId":2,"monsterType":"DRAGON","monsterSubType":"FIRE_DRAGON"},{"type":"ITEM_PURCHASED","timestamp":962265,"participantId":9,"itemId":3085},{"type":"ITEM_DESTROYED","timestamp":962265,"participantId":9,"itemId":1043},{"type":"SKILL_LEVEL_UP","timestamp":964622,"participantId":4,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_DESTROYED","timestamp":966805,"participantId":10,"itemId":2010},{"type":"WARD_PLACED","timestamp":971683,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"WARD_PLACED","timestamp":972577,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_PLACED","timestamp":980830,"wardType":"UNDEFINED","creatorId":7},{"type":"ITEM_DESTROYED","timestamp":980830,"participantId":7,"itemId":2055},{"type":"WARD_KILL","timestamp":984583,"wardType":"YELLOW_TRINKET","killerId":7},{"type":"ITEM_PURCHASED","timestamp":988322,"participantId":6,"itemId":3748},{"type":"ITEM_PURCHASED","timestamp":988322,"participantId":1,"itemId":3111},{"type":"ITEM_DESTROYED","timestamp":988322,"participantId":6,"itemId":3077},{"type":"ITEM_DESTROYED","timestamp":988322,"participantId":6,"itemId":1028},{"type":"ITEM_DESTROYED","timestamp":988322,"participantId":6,"itemId":3052},{"type":"ITEM_DESTROYED","timestamp":988322,"participantId":1,"itemId":1001},{"type":"WARD_KILL","timestamp":988941,"wardType":"UNDEFINED","killerId":4},{"type":"WARD_KILL","timestamp":989006,"wardType":"UNDEFINED","killerId":5},{"type":"ITEM_PURCHASED","timestamp":990415,"participantId":8,"itemId":3020},{"type":"ITEM_DESTROYED","timestamp":990415,"participantId":8,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":992315,"participantId":8,"itemId":3108},{"type":"ITEM_PURCHASED","timestamp":992970,"participantId":8,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":995265,"participantId":10,"itemId":2045},{"type":"ITEM_DESTROYED","timestamp":995265,"participantId":10,"itemId":2049},{"type":"ITEM_DESTROYED","timestamp":995265,"participantId":10,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":1001126,"participantId":3,"itemId":3027},{"type":"ITEM_DESTROYED","timestamp":1001126,"participantId":3,"itemId":3010},{"type":"ITEM_DESTROYED","timestamp":1001126,"participantId":3,"itemId":1026},{"type":"SKILL_LEVEL_UP","timestamp":1001422,"participantId":9,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1001946,"participantId":2,"itemId":3142},{"type":"ITEM_DESTROYED","timestamp":1001946,"participantId":2,"itemId":1036},{"type":"ITEM_DESTROYED","timestamp":1001946,"participantId":2,"itemId":1036},{"type":"ITEM_DESTROYED","timestamp":1001946,"participantId":2,"itemId":3134},{"type":"SKILL_LEVEL_UP","timestamp":1002077,"participantId":7,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1002666,"participantId":3,"itemId":1057},{"type":"ITEM_DESTROYED","timestamp":1002666,"participantId":3,"itemId":1033},{"type":"ITEM_PURCHASED","timestamp":1002928,"participantId":2,"itemId":1028},{"type":"WARD_PLACED","timestamp":1004077,"wardType":"BLUE_TRINKET","creatorId":9},{"type":"ITEM_PURCHASED","timestamp":1004175,"participantId":3,"itemId":2055},{"type":"WARD_PLACED","timestamp":1013313,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_PLACED","timestamp":1016162,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_KILL","timestamp":1018423,"wardType":"SIGHT_WARD","killerId":10},{"type":"WARD_PLACED","timestamp":1019831,"wardType":"SIGHT_WARD","creatorId":10}],"timestamp":1020436},{"participantFrames":{"1":{"participantId":1,"position":{"x":10220,"y":8471},"currentGold":692,"totalGold":7042,"level":12,"xp":9239,"minionsKilled":143,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":9934,"y":8075},"currentGold":1272,"totalGold":8322,"level":11,"xp":8296,"minionsKilled":13,"jungleMinionsKilled":81,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":9059,"y":8655},"currentGold":689,"totalGold":6574,"level":11,"xp":8423,"minionsKilled":130,"jungleMinionsKilled":3,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":8545,"y":8155},"currentGold":2179,"totalGold":8304,"level":11,"xp":7441,"minionsKilled":177,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":8553,"y":8099},"currentGold":874,"totalGold":4699,"level":9,"xp":5870,"minionsKilled":7,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":9697,"y":8851},"currentGold":1105,"totalGold":5555,"level":11,"xp":7482,"minionsKilled":127,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":9628,"y":8848},"currentGold":169,"totalGold":5179,"level":9,"xp":5977,"minionsKilled":2,"jungleMinionsKilled":63,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":10027,"y":8965},"currentGold":521,"totalGold":6296,"level":12,"xp":8694,"minionsKilled":160,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":12453,"y":7441},"currentGold":823,"totalGold":6448,"level":10,"xp":6904,"minionsKilled":158,"jungleMinionsKilled":4,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":9946,"y":9009},"currentGold":350,"totalGold":3975,"level":9,"xp":5265,"minionsKilled":24,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":1024760,"wardType":"UNDEFINED","creatorId":8},{"type":"ITEM_DESTROYED","timestamp":1024760,"participantId":8,"itemId":2055},{"type":"WARD_PLACED","timestamp":1027035,"wardType":"UNDEFINED","creatorId":10},{"type":"ITEM_DESTROYED","timestamp":1027035,"participantId":10,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":1028639,"participantId":1,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1031699,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":1032490,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"WARD_KILL","timestamp":1034848,"wardType":"UNDEFINED","killerId":10},{"type":"SKILL_LEVEL_UP","timestamp":1042384,"participantId":2,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1048845,"wardType":"UNDEFINED","creatorId":3},{"type":"ITEM_DESTROYED","timestamp":1048845,"participantId":3,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1049368,"participantId":7,"itemId":1052},{"type":"ITEM_PURCHASED","timestamp":1050285,"participantId":7,"itemId":3364},{"type":"ITEM_DESTROYED","timestamp":1050285,"participantId":7,"itemId":3341},{"type":"WARD_PLACED","timestamp":1050383,"wardType":"UNDEFINED","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":1050383,"participantId":5,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1051875,"participantId":7,"itemId":2055},{"type":"WARD_PLACED","timestamp":1052398,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":1052599,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"WARD_PLACED","timestamp":1054434,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_KILL","timestamp":1055951,"wardType":"SIGHT_WARD","killerId":5},{"type":"WARD_KILL","timestamp":1058208,"wardType":"BLUE_TRINKET","killerId":3},{"type":"WARD_KILL","timestamp":1058701,"wardType":"UNDEFINED","killerId":1},{"type":"WARD_PLACED","timestamp":1065404,"wardType":"UNDEFINED","creatorId":6},{"type":"ITEM_DESTROYED","timestamp":1065404,"participantId":6,"itemId":2055},{"type":"WARD_PLACED","timestamp":1065535,"wardType":"YELLOW_TRINKET","creatorId":8},{"type":"WARD_PLACED","timestamp":1066160,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_PLACED","timestamp":1067112,"wardType":"SIGHT_WARD","creatorId":2},{"type":"SKILL_LEVEL_UP","timestamp":1067112,"participantId":4,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"WARD_KILL","timestamp":1068225,"wardType":"UNDEFINED","killerId":3},{"type":"WARD_KILL","timestamp":1068291,"wardType":"YELLOW_TRINKET","killerId":6},{"type":"CHAMPION_KILL","timestamp":1069076,"position":{"x":12453,"y":7441},"killerId":2,"victimId":9,"assistingParticipantIds":[]},{"type":"CHAMPION_KILL","timestamp":1077697,"position":{"x":9628,"y":8848},"killerId":2,"victimId":7,"assistingParticipantIds":[1,5]},{"type":"WARD_PLACED","timestamp":1078291,"wardType":"SIGHT_WARD","creatorId":2},{"type":"CHAMPION_KILL","timestamp":1079771,"position":{"x":10220,"y":8471},"killerId":6,"victimId":1,"assistingParticipantIds":[7,8,10]},{"type":"BUILDING_KILL","timestamp":1080204,"position":{"x":8955,"y":8510},"killerId":0,"assistingParticipantIds":[1,4,5],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"MID_LANE","towerType":"OUTER_TURRET"}],"timestamp":1080445},{"participantFrames":{"1":{"participantId":1,"position":{"x":3333,"y":7199},"currentGold":140,"totalGold":7290,"level":12,"xp":9239,"minionsKilled":143,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":5708,"y":12435},"currentGold":1967,"totalGold":9017,"level":12,"xp":8994,"minionsKilled":14,"jungleMinionsKilled":82,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":4746,"y":1131},"currentGold":166,"totalGold":7026,"level":12,"xp":8793,"minionsKilled":137,"jungleMinionsKilled":3,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":2840,"y":2610},"currentGold":96,"totalGold":8696,"level":11,"xp":7546,"minionsKilled":182,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":2875,"y":3161},"currentGold":104,"totalGold":5080,"level":9,"xp":5975,"minionsKilled":7,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":13926,"y":11591},"currentGold":27,"totalGold":5677,"level":11,"xp":7721,"minionsKilled":127,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":8427,"y":12645},"currentGold":316,"totalGold":5326,"level":9,"xp":5977,"minionsKilled":2,"jungleMinionsKilled":63,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":13879,"y":14005},"currentGold":921,"totalGold":6696,"level":12,"xp":9223,"minionsKilled":173,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":7147,"y":12611},"currentGold":167,"totalGold":6592,"level":10,"xp":7077,"minionsKilled":159,"jungleMinionsKilled":4,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":7169,"y":12422},"currentGold":117,"totalGold":4142,"level":9,"xp":5291,"minionsKilled":24,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"SKILL_LEVEL_UP","timestamp":1081134,"participantId":10,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":1081629,"participantId":6,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":1087363,"participantId":8,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1088249,"participantId":9,"itemId":1018},{"type":"BUILDING_KILL","timestamp":1105716,"position":{"x":9767,"y":10113},"killerId":4,"assistingParticipantIds":[2,3,5],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"MID_LANE","towerType":"INNER_TURRET"},{"type":"WARD_PLACED","timestamp":1105880,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"WARD_PLACED","timestamp":1106306,"wardType":"YELLOW_TRINKET","creatorId":3},{"type":"WARD_KILL","timestamp":1108207,"wardType":"UNDEFINED","killerId":2},{"type":"ITEM_SOLD","timestamp":1111954,"participantId":1,"itemId":1056},{"type":"ITEM_PURCHASED","timestamp":1113265,"participantId":1,"itemId":3024},{"type":"ITEM_PURCHASED","timestamp":1115165,"participantId":10,"itemId":1028},{"type":"SKILL_LEVEL_UP","timestamp":1115295,"participantId":3,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1115884,"participantId":10,"itemId":3364},{"type":"ITEM_DESTROYED","timestamp":1115884,"participantId":10,"itemId":3341},{"type":"ITEM_UNDO","timestamp":1116605,"participantId":1,"afterId":0,"beforeId":3024},{"type":"ITEM_UNDO","timestamp":1117226,"participantId":1,"afterId":1056,"beforeId":0},{"type":"ITEM_PURCHASED","timestamp":1118798,"participantId":1,"itemId":3211},{"type":"ITEM_DESTROYED","timestamp":1118798,"participantId":1,"itemId":1028},{"type":"SKILL_LEVEL_UP","timestamp":1123542,"participantId":2,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1125931,"participantId":4,"itemId":3094},{"type":"ITEM_DESTROYED","timestamp":1125931,"participantId":4,"itemId":3086},{"type":"ITEM_DESTROYED","timestamp":1125931,"participantId":4,"itemId":1042},{"type":"ITEM_PURCHASED","timestamp":1126725,"participantId":6,"itemId":3211},{"type":"ITEM_PURCHASED","timestamp":1128985,"participantId":5,"itemId":3114},{"type":"ITEM_DESTROYED","timestamp":1128985,"participantId":5,"itemId":1004},{"type":"ITEM_PURCHASED","timestamp":1129671,"participantId":4,"itemId":3009},{"type":"ITEM_DESTROYED","timestamp":1129671,"participantId":4,"itemId":1001},{"type":"ITEM_PURCHASED","timestamp":1129770,"participantId":5,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":1130097,"participantId":3,"itemId":3108},{"type":"ITEM_PURCHASED","timestamp":1130299,"participantId":5,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1130890,"participantId":3,"itemId":2055},{"type":"ITEM_UNDO","timestamp":1131151,"participantId":6,"afterId":0,"beforeId":3211},{"type":"ITEM_PURCHASED","timestamp":1131979,"participantId":4,"itemId":1037},{"type":"ITEM_PURCHASED","timestamp":1132779,"participantId":6,"itemId":3111},{"type":"ITEM_DESTROYED","timestamp":1132779,"participantId":6,"itemId":1001},{"type":"CHAMPION_KILL","timestamp":1133007,"position":{"x":8427,"y":12645},"killerId":2,"victimId":7,"assistingParticipantIds":[]},{"type":"ITEM_PURCHASED","timestamp":1134448,"participantId":6,"itemId":1028}],"timestamp":1140449},{"participantFrames":{"1":{"participantId":1,"position":{"x":9412,"y":11472},"currentGold":486,"totalGold":7636,"level":12,"xp":9802,"minionsKilled":153,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":8083,"y":9971},"currentGold":602,"totalGold":9341,"level":12,"xp":9435,"minionsKilled":14,"jungleMinionsKilled":88,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":13485,"y":6488},"currentGold":594,"totalGold":7454,"level":12,"xp":9452,"minionsKilled":150,"jungleMinionsKilled":3,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":9601,"y":9531},"currentGold":541,"totalGold":9140,"level":11,"xp":8086,"minionsKilled":198,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":10203,"y":8741},"currentGold":272,"totalGold":5247,"level":10,"xp":6515,"minionsKilled":7,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":13796,"y":6748},"currentGold":373,"totalGold":6023,"level":11,"xp":8343,"minionsKilled":137,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":12424,"y":7711},"currentGold":550,"totalGold":5560,"level":10,"xp":6327,"minionsKilled":2,"jungleMinionsKilled":64,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":12902,"y":9364},"currentGold":590,"totalGold":7085,"level":12,"xp":9786,"minionsKilled":185,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":9758,"y":12380},"currentGold":847,"totalGold":7272,"level":11,"xp":7948,"minionsKilled":178,"jungleMinionsKilled":14,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":9601,"y":12427},"currentGold":385,"totalGold":4410,"level":9,"xp":5865,"minionsKilled":27,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_PURCHASED","timestamp":1140972,"participantId":8,"itemId":1057},{"type":"WARD_PLACED","timestamp":1145363,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":1151596,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"ITEM_PURCHASED","timestamp":1155819,"participantId":2,"itemId":1011},{"type":"ITEM_DESTROYED","timestamp":1155819,"participantId":2,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":1156310,"participantId":2,"itemId":3082},{"type":"SKILL_LEVEL_UP","timestamp":1156473,"participantId":9,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1157259,"wardType":"SIGHT_WARD","creatorId":10},{"type":"ITEM_SOLD","timestamp":1158798,"participantId":2,"itemId":2031},{"type":"ITEM_PURCHASED","timestamp":1159715,"participantId":2,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1159945,"participantId":2,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":1160371,"participantId":5,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1165033,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"WARD_PLACED","timestamp":1169403,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_PLACED","timestamp":1174949,"wardType":"UNDEFINED","creatorId":3},{"type":"ITEM_DESTROYED","timestamp":1174949,"participantId":3,"itemId":2055},{"type":"WARD_KILL","timestamp":1179674,"wardType":"SIGHT_WARD","killerId":3},{"type":"WARD_PLACED","timestamp":1191399,"wardType":"UNDEFINED","creatorId":7},{"type":"ITEM_DESTROYED","timestamp":1191399,"participantId":7,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":1192582,"participantId":7,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1195857,"wardType":"UNDEFINED","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":1195857,"participantId":5,"itemId":2055},{"type":"WARD_PLACED","timestamp":1196814,"wardType":"YELLOW_TRINKET","creatorId":3},{"type":"WARD_PLACED","timestamp":1197304,"wardType":"SIGHT_WARD","creatorId":5}],"timestamp":1200465},{"participantFrames":{"1":{"participantId":1,"position":{"x":13957,"y":7433},"currentGold":935,"totalGold":8085,"level":13,"xp":10484,"minionsKilled":163,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":12458,"y":7654},"currentGold":1168,"totalGold":9908,"level":13,"xp":10136,"minionsKilled":14,"jungleMinionsKilled":93,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":5069,"y":3197},"currentGold":306,"totalGold":7601,"level":12,"xp":9452,"minionsKilled":150,"jungleMinionsKilled":3,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":10692,"y":7480},"currentGold":783,"totalGold":9383,"level":11,"xp":8213,"minionsKilled":204,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12783,"y":7429},"currentGold":501,"totalGold":5476,"level":10,"xp":6679,"minionsKilled":9,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":13533,"y":7777},"currentGold":650,"totalGold":6300,"level":12,"xp":8817,"minionsKilled":141,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":9118,"y":11198},"currentGold":33,"totalGold":5893,"level":10,"xp":6852,"minionsKilled":7,"jungleMinionsKilled":64,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":7237,"y":14094},"currentGold":1191,"totalGold":7686,"level":13,"xp":10439,"minionsKilled":194,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":10916,"y":11026},"currentGold":94,"totalGold":7394,"level":11,"xp":7986,"minionsKilled":178,"jungleMinionsKilled":14,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":10979,"y":11118},"currentGold":147,"totalGold":4622,"level":9,"xp":6062,"minionsKilled":29,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":1202045,"wardType":"SIGHT_WARD","creatorId":10},{"type":"CHAMPION_KILL","timestamp":1209263,"position":{"x":13282,"y":6632},"killerId":8,"victimId":3,"assistingParticipantIds":[6,7]},{"type":"SKILL_LEVEL_UP","timestamp":1210415,"participantId":8,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_DESTROYED","timestamp":1214391,"participantId":5,"itemId":2010},{"type":"WARD_PLACED","timestamp":1215147,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":1216962,"wardType":"SIGHT_WARD","creatorId":5},{"type":"CHAMPION_KILL","timestamp":1217225,"position":{"x":10301,"y":10523},"killerId":2,"victimId":9,"assistingParticipantIds":[1]},{"type":"SKILL_LEVEL_UP","timestamp":1218344,"participantId":1,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_KILL","timestamp":1219978,"wardType":"UNDEFINED","killerId":7},{"type":"ITEM_PURCHASED","timestamp":1220836,"participantId":3,"itemId":1052},{"type":"WARD_KILL","timestamp":1224158,"wardType":"SIGHT_WARD","killerId":5},{"type":"SKILL_LEVEL_UP","timestamp":1224158,"participantId":6,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1225995,"participantId":9,"itemId":1037},{"type":"SKILL_LEVEL_UP","timestamp":1228322,"participantId":2,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1235940,"wardType":"SIGHT_WARD","creatorId":2},{"type":"ITEM_PURCHASED","timestamp":1247787,"participantId":7,"itemId":1026},{"type":"WARD_KILL","timestamp":1248212,"wardType":"UNDEFINED","killerId":5},{"type":"ITEM_PURCHASED","timestamp":1251093,"participantId":10,"itemId":3801},{"type":"ITEM_DESTROYED","timestamp":1251093,"participantId":10,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":1252016,"participantId":10,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1252508,"participantId":10,"itemId":1004},{"type":"WARD_PLACED","timestamp":1253883,"wardType":"UNDEFINED","creatorId":4},{"type":"ITEM_DESTROYED","timestamp":1253883,"participantId":4,"itemId":2055},{"type":"WARD_PLACED","timestamp":1256306,"wardType":"UNDEFINED","creatorId":2},{"type":"ITEM_DESTROYED","timestamp":1256306,"participantId":2,"itemId":2055}],"timestamp":1260473},{"participantFrames":{"1":{"participantId":1,"position":{"x":13204,"y":10425},"currentGold":1462,"totalGold":8612,"level":13,"xp":10876,"minionsKilled":171,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":8351,"y":10149},"currentGold":2164,"totalGold":10903,"level":13,"xp":10754,"minionsKilled":16,"jungleMinionsKilled":93,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":7676,"y":11618},"currentGold":1019,"totalGold":8314,"level":13,"xp":9986,"minionsKilled":152,"jungleMinionsKilled":4,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":9398,"y":9269},"currentGold":1221,"totalGold":9820,"level":12,"xp":8678,"minionsKilled":205,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":7930,"y":10783},"currentGold":1183,"totalGold":6159,"level":11,"xp":7467,"minionsKilled":11,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":10214,"y":10373},"currentGold":344,"totalGold":6444,"level":12,"xp":8875,"minionsKilled":142,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":8803,"y":10374},"currentGold":486,"totalGold":6347,"level":10,"xp":7162,"minionsKilled":8,"jungleMinionsKilled":64,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":10288,"y":10696},"currentGold":459,"totalGold":8084,"level":13,"xp":11142,"minionsKilled":204,"jungleMinionsKilled":1,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":10517,"y":9941},"currentGold":572,"totalGold":7872,"level":12,"xp":8836,"minionsKilled":192,"jungleMinionsKilled":14,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":10096,"y":9038},"currentGold":431,"totalGold":4906,"level":10,"xp":6595,"minionsKilled":31,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"CHAMPION_KILL","timestamp":1263523,"position":{"x":13566,"y":7841},"killerId":2,"victimId":6,"assistingParticipantIds":[1,5]},{"type":"SKILL_LEVEL_UP","timestamp":1268477,"participantId":10,"skillSlot":1,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1271141,"wardType":"SIGHT_WARD","creatorId":10},{"type":"BUILDING_KILL","timestamp":1273720,"position":{"x":13327,"y":8226},"killerId":2,"assistingParticipantIds":[1,4,5],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"BOT_LANE","towerType":"INNER_TURRET"},{"type":"WARD_PLACED","timestamp":1277012,"wardType":"YELLOW_TRINKET","creatorId":1},{"type":"WARD_PLACED","timestamp":1277143,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"ITEM_PURCHASED","timestamp":1277699,"participantId":8,"itemId":3001},{"type":"ITEM_DESTROYED","timestamp":1277699,"participantId":8,"itemId":3108},{"type":"ITEM_DESTROYED","timestamp":1277699,"participantId":8,"itemId":1057},{"type":"CHAMPION_KILL","timestamp":1288630,"position":{"x":13204,"y":10425},"killerId":7,"victimId":1,"assistingParticipantIds":[8,9,10]},{"type":"WARD_KILL","timestamp":1291575,"wardType":"YELLOW_TRINKET","killerId":7},{"type":"ITEM_PURCHASED","timestamp":1294784,"participantId":6,"itemId":1033},{"type":"WARD_PLACED","timestamp":1300136,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_KILL","timestamp":1301822,"wardType":"SIGHT_WARD","killerId":10},{"type":"CHAMPION_KILL","timestamp":1307023,"position":{"x":10096,"y":9038},"killerId":3,"victimId":10,"assistingParticipantIds":[2,4,5]},{"type":"SKILL_LEVEL_UP","timestamp":1308109,"participantId":5,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1312331,"wardType":"SIGHT_WARD","creatorId":2},{"type":"CHAMPION_KILL","timestamp":1315985,"position":{"x":8803,"y":10374},"killerId":2,"victimId":7,"assistingParticipantIds":[4,5]},{"type":"SKILL_LEVEL_UP","timestamp":1316345,"participantId":9,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1317429,"wardType":"SIGHT_WARD","creatorId":5},{"type":"SKILL_LEVEL_UP","timestamp":1317690,"participantId":3,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":1317887,"participantId":4,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1320437,"wardType":"UNDEFINED","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":1320437,"participantId":5,"itemId":2055}],"timestamp":1320502},{"participantFrames":{"1":{"participantId":1,"position":{"x":3845,"y":13042},"currentGold":496,"totalGold":9136,"level":14,"xp":11934,"minionsKilled":172,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":583,"y":534},"currentGold":857,"totalGold":11696,"level":14,"xp":11889,"minionsKilled":16,"jungleMinionsKilled":94,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":903,"y":678},"currentGold":735,"totalGold":8800,"level":13,"xp":10852,"minionsKilled":152,"jungleMinionsKilled":4,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":394,"y":461},"currentGold":2104,"totalGold":10703,"level":12,"xp":9904,"minionsKilled":211,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":394,"y":461},"currentGold":866,"totalGold":6741,"level":11,"xp":8476,"minionsKilled":11,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":7693,"y":10333},"currentGold":260,"totalGold":6710,"level":12,"xp":9095,"minionsKilled":144,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":8360,"y":10044},"currentGold":848,"totalGold":6708,"level":11,"xp":7503,"minionsKilled":9,"jungleMinionsKilled":67,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":8149,"y":5311},"currentGold":950,"totalGold":8575,"level":14,"xp":11586,"minionsKilled":211,"jungleMinionsKilled":2,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":7321,"y":4742},"currentGold":1216,"totalGold":8516,"level":12,"xp":9311,"minionsKilled":201,"jungleMinionsKilled":17,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":5103,"y":11477},"currentGold":703,"totalGold":5178,"level":10,"xp":6595,"minionsKilled":31,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":1325803,"wardType":"YELLOW_TRINKET","creatorId":3},{"type":"ITEM_SOLD","timestamp":1328557,"participantId":1,"itemId":1056},{"type":"ITEM_PURCHASED","timestamp":1334733,"participantId":1,"itemId":3025},{"type":"ITEM_DESTROYED","timestamp":1334733,"participantId":1,"itemId":3057},{"type":"WARD_PLACED","timestamp":1339437,"wardType":"YELLOW_TRINKET","creatorId":8},{"type":"CHAMPION_KILL","timestamp":1347214,"position":{"x":7693,"y":10333},"killerId":2,"victimId":6,"assistingParticipantIds":[1,3,4,5]},{"type":"WARD_PLACED","timestamp":1352870,"wardType":"UNDEFINED","creatorId":2},{"type":"ITEM_DESTROYED","timestamp":1352870,"participantId":2,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1355046,"participantId":6,"itemId":3211},{"type":"ITEM_DESTROYED","timestamp":1355046,"participantId":6,"itemId":1028},{"type":"ITEM_DESTROYED","timestamp":1355046,"participantId":6,"itemId":1033},{"type":"WARD_PLACED","timestamp":1362556,"wardType":"SIGHT_WARD","creatorId":10},{"type":"WARD_PLACED","timestamp":1364634,"wardType":"BLUE_TRINKET","creatorId":4},{"type":"SKILL_LEVEL_UP","timestamp":1366580,"participantId":8,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"ELITE_MONSTER_KILL","timestamp":1367737,"position":{"x":5007,"y":10471},"killerId":2,"monsterType":"BARON_NASHOR"},{"type":"SKILL_LEVEL_UP","timestamp":1368883,"participantId":2,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"SKILL_LEVEL_UP","timestamp":1369046,"participantId":1,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"CHAMPION_KILL","timestamp":1371573,"position":{"x":5103,"y":11477},"killerId":4,"victimId":10,"assistingParticipantIds":[1,2,5]},{"type":"BUILDING_KILL","timestamp":1373089,"position":{"x":5846,"y":6396},"killerId":9,"assistingParticipantIds":[8],"teamId":100,"buildingType":"TOWER_BUILDING","laneType":"MID_LANE","towerType":"OUTER_TURRET"},{"type":"WARD_PLACED","timestamp":1374210,"wardType":"YELLOW_TRINKET","creatorId":8},{"type":"WARD_PLACED","timestamp":1374563,"wardType":"BLUE_TRINKET","creatorId":9},{"type":"SKILL_LEVEL_UP","timestamp":1374792,"participantId":7,"skillSlot":4,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1377309,"participantId":2,"itemId":3143},{"type":"ITEM_DESTROYED","timestamp":1377309,"participantId":2,"itemId":3082},{"type":"ITEM_DESTROYED","timestamp":1377309,"participantId":2,"itemId":1011},{"type":"ITEM_PURCHASED","timestamp":1378107,"participantId":3,"itemId":3001},{"type":"ITEM_DESTROYED","timestamp":1378107,"participantId":3,"itemId":3108},{"type":"ITEM_DESTROYED","timestamp":1378107,"participantId":3,"itemId":1057},{"type":"ITEM_DESTROYED","timestamp":1378107,"participantId":3,"itemId":1052},{"type":"WARD_KILL","timestamp":1378918,"wardType":"UNDEFINED","killerId":7},{"type":"ITEM_PURCHASED","timestamp":1379086,"participantId":2,"itemId":3211},{"type":"ITEM_PURCHASED","timestamp":1379852,"participantId":5,"itemId":3107},{"type":"ITEM_DESTROYED","timestamp":1379852,"participantId":5,"itemId":3114},{"type":"ITEM_DESTROYED","timestamp":1379852,"participantId":5,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":1380252,"participantId":3,"itemId":2055}],"timestamp":1380525},{"participantFrames":{"1":{"participantId":1,"position":{"x":9973,"y":9531},"currentGold":447,"totalGold":9487,"level":14,"xp":12497,"minionsKilled":182,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":12225,"y":9201},"currentGold":345,"totalGold":11985,"level":14,"xp":12404,"minionsKilled":16,"jungleMinionsKilled":103,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":14030,"y":8770},"currentGold":951,"totalGold":9016,"level":13,"xp":11085,"minionsKilled":155,"jungleMinionsKilled":4,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":13757,"y":8565},"currentGold":1206,"totalGold":11105,"level":13,"xp":10485,"minionsKilled":224,"jungleMinionsKilled":2,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12342,"y":8794},"currentGold":312,"totalGold":6912,"level":12,"xp":8824,"minionsKilled":11,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":11134,"y":10640},"currentGold":773,"totalGold":7223,"level":12,"xp":9926,"minionsKilled":160,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":13330,"y":10435},"currentGold":211,"totalGold":7061,"level":11,"xp":8458,"minionsKilled":9,"jungleMinionsKilled":74,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":12803,"y":10836},"currentGold":401,"totalGold":8876,"level":14,"xp":11844,"minionsKilled":220,"jungleMinionsKilled":2,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":11739,"y":10950},"currentGold":146,"totalGold":8821,"level":12,"xp":9698,"minionsKilled":203,"jungleMinionsKilled":19,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":10847,"y":10300},"currentGold":211,"totalGold":5361,"level":10,"xp":6927,"minionsKilled":31,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"ITEM_PURCHASED","timestamp":1380623,"participantId":4,"itemId":3140},{"type":"ITEM_PURCHASED","timestamp":1380951,"participantId":2,"itemId":3067},{"type":"ITEM_PURCHASED","timestamp":1381539,"participantId":5,"itemId":1033},{"type":"ITEM_PURCHASED","timestamp":1382067,"participantId":5,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1382197,"participantId":5,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1382491,"participantId":5,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":1382726,"participantId":1,"itemId":1028},{"type":"ITEM_PURCHASED","timestamp":1383695,"participantId":5,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1384645,"participantId":3,"itemId":3363},{"type":"ITEM_DESTROYED","timestamp":1384645,"participantId":3,"itemId":3340},{"type":"ITEM_PURCHASED","timestamp":1393147,"participantId":8,"itemId":1026},{"type":"ITEM_PURCHASED","timestamp":1397003,"participantId":10,"itemId":3114},{"type":"ITEM_DESTROYED","timestamp":1397003,"participantId":10,"itemId":1004},{"type":"ITEM_PURCHASED","timestamp":1414110,"participantId":9,"itemId":3031},{"type":"ITEM_DESTROYED","timestamp":1414110,"participantId":9,"itemId":1038},{"type":"ITEM_DESTROYED","timestamp":1414110,"participantId":9,"itemId":1037},{"type":"ITEM_DESTROYED","timestamp":1414110,"participantId":9,"itemId":1018},{"type":"ITEM_PURCHASED","timestamp":1416769,"participantId":9,"itemId":2015},{"type":"ITEM_PURCHASED","timestamp":1419826,"participantId":7,"itemId":3116},{"type":"ITEM_DESTROYED","timestamp":1419826,"participantId":7,"itemId":1026},{"type":"ITEM_DESTROYED","timestamp":1419826,"participantId":7,"itemId":1052},{"type":"ITEM_DESTROYED","timestamp":1419826,"participantId":7,"itemId":1028},{"type":"SKILL_LEVEL_UP","timestamp":1420054,"participantId":4,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1420447,"participantId":7,"itemId":2055},{"type":"ELITE_MONSTER_KILL","timestamp":1421611,"position":{"x":10230,"y":4684},"killerId":2,"monsterType":"DRAGON","monsterSubType":"AIR_DRAGON"},{"type":"SKILL_LEVEL_UP","timestamp":1423155,"participantId":5,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"WARD_PLACED","timestamp":1427498,"wardType":"UNDEFINED","creatorId":3},{"type":"ITEM_DESTROYED","timestamp":1427498,"participantId":3,"itemId":2055},{"type":"WARD_PLACED","timestamp":1433040,"wardType":"YELLOW_TRINKET","creatorId":2},{"type":"WARD_PLACED","timestamp":1434288,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"WARD_PLACED","timestamp":1434844,"wardType":"UNDEFINED","creatorId":4},{"type":"WARD_PLACED","timestamp":1435302,"wardType":"SIGHT_WARD","creatorId":2},{"type":"WARD_PLACED","timestamp":1437103,"wardType":"UNDEFINED","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":1437103,"participantId":5,"itemId":2055}],"timestamp":1440540},{"participantFrames":{"1":{"participantId":1,"position":{"x":12581,"y":12590},"currentGold":1171,"totalGold":10210,"level":15,"xp":13307,"minionsKilled":192,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"2":{"participantId":2,"position":{"x":12652,"y":12625},"currentGold":936,"totalGold":12576,"level":14,"xp":12958,"minionsKilled":20,"jungleMinionsKilled":103,"dominionScore":0,"teamScore":0},"3":{"participantId":3,"position":{"x":12398,"y":12897},"currentGold":1902,"totalGold":9967,"level":14,"xp":11717,"minionsKilled":162,"jungleMinionsKilled":4,"dominionScore":0,"teamScore":0},"4":{"participantId":4,"position":{"x":12409,"y":12531},"currentGold":2277,"totalGold":12177,"level":13,"xp":11153,"minionsKilled":232,"jungleMinionsKilled":2,"dominionScore":0,"teamScore":0},"5":{"participantId":5,"position":{"x":12515,"y":12745},"currentGold":925,"totalGold":7525,"level":12,"xp":9499,"minionsKilled":11,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"6":{"participantId":6,"position":{"x":13020,"y":13625},"currentGold":129,"totalGold":7379,"level":13,"xp":10133,"minionsKilled":162,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0},"7":{"participantId":7,"position":{"x":14252,"y":11833},"currentGold":382,"totalGold":7232,"level":12,"xp":8705,"minionsKilled":10,"jungleMinionsKilled":74,"dominionScore":0,"teamScore":0},"8":{"participantId":8,"position":{"x":13281,"y":13686},"currentGold":123,"totalGold":9098,"level":14,"xp":12108,"minionsKilled":225,"jungleMinionsKilled":2,"dominionScore":0,"teamScore":0},"9":{"participantId":9,"position":{"x":14210,"y":13292},"currentGold":327,"totalGold":9002,"level":12,"xp":9795,"minionsKilled":206,"jungleMinionsKilled":19,"dominionScore":0,"teamScore":0},"10":{"participantId":10,"position":{"x":13910,"y":12490},"currentGold":388,"totalGold":5538,"level":10,"xp":7000,"minionsKilled":31,"jungleMinionsKilled":0,"dominionScore":0,"teamScore":0}},"events":[{"type":"WARD_PLACED","timestamp":1443756,"wardType":"UNDEFINED","creatorId":4},{"type":"WARD_PLACED","timestamp":1447408,"wardType":"YELLOW_TRINKET","creatorId":6},{"type":"WARD_PLACED","timestamp":1448264,"wardType":"UNDEFINED","creatorId":10},{"type":"ITEM_DESTROYED","timestamp":1448264,"participantId":10,"itemId":2055},{"type":"SKILL_LEVEL_UP","timestamp":1449295,"participantId":6,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"WARD_KILL","timestamp":1450887,"wardType":"SIGHT_WARD","killerId":6},{"type":"SKILL_LEVEL_UP","timestamp":1456076,"participantId":7,"skillSlot":2,"levelUpType":"NORMAL"},{"type":"BUILDING_KILL","timestamp":1457219,"position":{"x":13624,"y":10572},"killerId":4,"assistingParticipantIds":[2,3,5],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"BOT_LANE","towerType":"BASE_TURRET"},{"type":"WARD_PLACED","timestamp":1468200,"wardType":"UNDEFINED","creatorId":4},{"type":"CHAMPION_KILL","timestamp":1476518,"position":{"x":14252,"y":11833},"killerId":3,"victimId":7,"assistingParticipantIds":[1,2,4,5]},{"type":"CHAMPION_KILL","timestamp":1478896,"position":{"x":13910,"y":12490},"killerId":4,"victimId":10,"assistingParticipantIds":[1,2,3,5]},{"type":"CHAMPION_KILL","timestamp":1480184,"position":{"x":14210,"y":13292},"killerId":4,"victimId":9,"assistingParticipantIds":[1,2,3,5]},{"type":"SKILL_LEVEL_UP","timestamp":1481920,"participantId":1,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"ITEM_PURCHASED","timestamp":1483233,"participantId":8,"itemId":2139},{"type":"ITEM_DESTROYED","timestamp":1483233,"participantId":8,"itemId":2139},{"type":"BUILDING_KILL","timestamp":1484055,"position":{"x":13604,"y":11316},"killerId":2,"assistingParticipantIds":[1,3,4,5],"teamId":200,"buildingType":"INHIBITOR_BUILDING","laneType":"BOT_LANE","towerType":"UNDEFINED_TURRET"},{"type":"WARD_PLACED","timestamp":1485201,"wardType":"UNDEFINED","creatorId":4},{"type":"ITEM_DESTROYED","timestamp":1487261,"participantId":5,"itemId":2010},{"type":"ITEM_PURCHASED","timestamp":1488020,"participantId":6,"itemId":3067},{"type":"WARD_PLACED","timestamp":1488519,"wardType":"SIGHT_WARD","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":1488981,"participantId":5,"itemId":2010},{"type":"SKILL_LEVEL_UP","timestamp":1489930,"participantId":3,"skillSlot":3,"levelUpType":"NORMAL"},{"type":"ITEM_UNDO","timestamp":1490715,"participantId":6,"afterId":0,"beforeId":3067},{"type":"ITEM_PURCHASED","timestamp":1492196,"participantId":6,"itemId":3123},{"type":"BUILDING_KILL","timestamp":1497729,"position":{"x":13052,"y":12612},"killerId":1,"assistingParticipantIds":[2,3,4,5],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"MID_LANE","towerType":"NEXUS_TURRET"},{"type":"WARD_PLACED","timestamp":1500210,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_PLACED","timestamp":1500416,"wardType":"UNDEFINED","creatorId":4}],"timestamp":1500548},{"participantFrames":{"1":{"participantId":1,"currentGold":953,"totalGold":10313,"level":15,"xp":13307,"minionsKilled":192,"jungleMinionsKilled":0},"2":{"participantId":2,"currentGold":979,"totalGold":12679,"level":14,"xp":12958,"minionsKilled":20,"jungleMinionsKilled":103},"3":{"participantId":3,"currentGold":1951,"totalGold":10076,"level":14,"xp":11717,"minionsKilled":162,"jungleMinionsKilled":4},"4":{"participantId":4,"currentGold":2379,"totalGold":12279,"level":13,"xp":11153,"minionsKilled":232,"jungleMinionsKilled":2},"5":{"participantId":5,"currentGold":1053,"totalGold":7653,"level":12,"xp":9499,"minionsKilled":11,"jungleMinionsKilled":0},"6":{"participantId":6,"currentGold":157,"totalGold":7407,"level":13,"xp":10195,"minionsKilled":162,"jungleMinionsKilled":0},"7":{"participantId":7,"currentGold":416,"totalGold":7266,"level":12,"xp":8705,"minionsKilled":10,"jungleMinionsKilled":74},"8":{"participantId":8,"currentGold":181,"totalGold":9156,"level":14,"xp":12170,"minionsKilled":226,"jungleMinionsKilled":2},"9":{"participantId":9,"currentGold":55,"totalGold":9030,"level":12,"xp":9795,"minionsKilled":206,"jungleMinionsKilled":19},"10":{"participantId":10,"currentGold":277,"totalGold":5577,"level":10,"xp":7000,"minionsKilled":31,"jungleMinionsKilled":0}},"events":[{"type":"WARD_PLACED","timestamp":1502170,"wardType":"SIGHT_WARD","creatorId":5},{"type":"WARD_PLACED","timestamp":1503284,"wardType":"UNDEFINED","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":1503284,"participantId":5,"itemId":2055},{"type":"WARD_PLACED","timestamp":1503717,"wardType":"SIGHT_WARD","creatorId":5},{"type":"BUILDING_KILL","timestamp":1503815,"position":{"x":12611,"y":13084},"killerId":4,"assistingParticipantIds":[1,2,3,5],"teamId":200,"buildingType":"TOWER_BUILDING","laneType":"MID_LANE","towerType":"NEXUS_TURRET"},{"type":"WARD_PLACED","timestamp":1504308,"wardType":"UNDEFINED","creatorId":5},{"type":"ITEM_DESTROYED","timestamp":1504308,"participantId":5,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1506403,"participantId":9,"itemId":1042},{"type":"WARD_KILL","timestamp":1507756,"wardType":"UNDEFINED","killerId":8},{"type":"ITEM_PURCHASED","timestamp":1508679,"participantId":10,"itemId":2055},{"type":"ITEM_PURCHASED","timestamp":1508832,"participantId":10,"itemId":2055}],"timestamp":1560548}],"frameInterval":60000}
@@ -0,0 +1 @@
1
+ {"id":3030173,"providerId":1000,"tournamentId":244507,"code":"EUW04397-222ec1fe-cb5f-430c-b5dd-51298c8cc50d","region":"EUW","map":"SUMMONERS_RIFT","teamSize":1,"spectators":"ALL","pickType":"TOURNAMENT_DRAFT","lobbyName":"c82325b7-6c4d-4424-a249-a11834f2a366","password":"46e61504b16f30a3666fa11beb58d5","participants":[30743211,79607125]}
@@ -3,152 +3,52 @@ require "lol"
3
3
  include Lol
4
4
 
5
5
  describe ChampionMasteryRequest do
6
- let(:request) { ChampionMasteryRequest.new("api_key", "euw") }
6
+ subject { ChampionMasteryRequest.new("api_key", "euw") }
7
7
 
8
8
  it "inherits from Request" do
9
- expect(ChampionMasteryRequest.ancestors[1]).to eq(Request)
9
+ expect(ChampionMasteryRequest.ancestors[1]).to eq Request
10
10
  end
11
11
 
12
- describe "#champion" do
13
- it 'requires a player_id' do
14
- expect { request.champion }.to raise_error ArgumentError
15
- end
16
-
17
- it 'requires a champion_id' do
18
- expect { request.champion }.to raise_error ArgumentError
19
- end
20
-
21
- it 'raises an error when unexpected parameter is received' do
22
- expect { request.champion '1', '1', asd: 'foo' }.to raise_error ArgumentError
23
- end
24
-
25
- context 'with summoner and champion' do
26
- subject { request.champion(1, 40) }
27
-
28
- let(:fixture) { load_fixture('champion-mastery-champion', ChampionMasteryRequest.api_version) }
29
-
30
- before(:each) { stub_request(request, 'champion-mastery-champion', 'player/1/champion/40') }
31
-
32
- it 'returns a ChampionMastery' do
33
- expect(subject).to be_a ChampionMastery
34
- end
35
-
36
- it 'fetches ChampionStatistics from the API' do
37
- expect(subject.highest_grade).to eq('S+')
38
- expect(subject.champion_points).to eq(34356)
39
- expect(subject.player_id).to eq(1)
40
- expect(subject.champion_points_until_next_level).to eq(0)
41
- expect(subject.chest_granted).to be(true)
42
- expect(subject.champion_level).to eq(5)
43
- expect(subject.tokens_earned).to eq(2)
44
- expect(subject.champion_id).to eq(40)
45
- expect(subject.champion_points_since_last_level).to eq(12756)
46
- end
12
+ describe "#total_score" do
13
+ it "returns the total score" do
14
+ stub_request_raw subject, 60, 'scores/by-summoner/1'
15
+ expect(subject.total_score summoner_id: 1).to eq 60
47
16
  end
48
17
  end
49
18
 
50
- describe "#champions" do
51
-
52
- it 'requires a player_id' do
53
- expect { request.champion }.to raise_error ArgumentError
54
- end
55
-
56
- it 'raises an error when unexpected parameter is received' do
57
- expect { request.champion '1', '1', asd: 'foo' }.to raise_error ArgumentError
58
- end
59
-
60
- context 'with summoner' do
61
- subject { request.champions(1) }
62
-
63
- let(:fixture) { load_fixture('champion-mastery-champions', ChampionMasteryRequest.api_version) }
64
-
65
- before(:each) { stub_request(request, 'champion-mastery-champions', 'player/1/champions') }
66
-
67
- it 'returns an Array' do
68
- expect(subject).to be_a Array
69
- end
70
-
71
- it 'returns an array of ChampionMastery' do
72
- expect(subject.map(&:class).uniq).to eq [ChampionMastery]
73
- end
74
-
75
- it 'fetches PlayerStatistics from the API' do
76
- expect(subject.size).to eq(fixture.size)
77
- end
19
+ describe "#find" do
20
+ it "returns a ChampionMastery" do
21
+ stub_request(subject, 'champion-mastery', 'champion-masteries/by-summoner/1/by-champion/40')
22
+ expect(subject.find 40, summoner_id: 1).to be_a DynamicModel
23
+ end
24
+
25
+ it "fetches ChampionMastery from the API" do
26
+ stub_request(subject, 'champion-mastery', 'champion-masteries/by-summoner/1/by-champion/40')
27
+ result = subject.find 40, summoner_id: 1
28
+ expect(result.highest_grade).to eq('S+')
29
+ expect(result.champion_points).to eq(34356)
30
+ expect(result.player_id).to eq(1)
31
+ expect(result.champion_points_until_next_level).to eq(0)
32
+ expect(result.chest_granted).to be(true)
33
+ expect(result.champion_level).to eq(5)
34
+ expect(result.tokens_earned).to eq(2)
35
+ expect(result.champion_id).to eq(40)
36
+ expect(result.champion_points_since_last_level).to eq(12756)
78
37
  end
79
38
  end
80
39
 
81
- describe "#score" do
82
-
83
- it 'requires a player_id' do
84
- expect { request.champion }.to raise_error ArgumentError
85
- end
40
+ describe "#all" do
41
+ before { stub_request(subject, 'champion-masteries', 'champion-masteries/by-summoner/1') }
42
+ let(:result) { subject.all summoner_id: 1 }
86
43
 
87
- it 'raises an error when unexpected parameter is received' do
88
- expect { request.champion '1', '1', asd: 'foo' }.to raise_error ArgumentError
44
+ it "returns an Array of ChampionMastery" do
45
+ expect(result).to be_a Array
46
+ expect(result.map(&:class).uniq).to eq [DynamicModel]
89
47
  end
90
48
 
91
- context 'with summoner' do
92
- subject { request.score(1) }
93
-
94
- before(:each) { stub_request_raw(request, '60', 'player/1/score') }
95
-
96
- it 'returns the score' do
97
- expect(subject).to eq(60)
98
- end
99
- end
100
- end
101
-
102
- describe "#top_champions" do
103
-
104
- it 'requires a player_id' do
105
- expect { request.champion }.to raise_error ArgumentError
106
- end
107
-
108
- it 'raises an error when unexpected parameter is received' do
109
- expect { request.champion '1', '1', asd: 'foo' }.to raise_error ArgumentError
110
- end
111
-
112
- context 'with summoner' do
113
- context 'with count' do
114
- subject { request.top_champions(1, count: 10) }
115
-
116
- let(:fixture) { load_fixture('champion-mastery-top-champions-10', ChampionMasteryRequest.api_version) }
117
-
118
- before(:each) { stub_request(request, 'champion-mastery-top-champions-10', 'player/1/topchampions', count: 10) }
119
-
120
- it 'returns an Array' do
121
- expect(subject).to be_a Array
122
- end
123
-
124
- it 'returns an array of ChampionMastery' do
125
- expect(subject.map(&:class).uniq).to eq [ChampionMastery]
126
- end
127
-
128
- it 'fetches PlayerStatistics from the API' do
129
- expect(subject.size).to eq(fixture.size)
130
- end
131
- end
132
-
133
- context 'without count' do
134
- subject { request.top_champions(1) }
135
-
136
- let(:fixture) { load_fixture('champion-mastery-top-champions', ChampionMasteryRequest.api_version) }
137
-
138
- before(:each) { stub_request(request, 'champion-mastery-top-champions', 'player/1/topchampions') }
139
-
140
- it 'returns an Array' do
141
- expect(subject).to be_a Array
142
- end
143
-
144
- it 'returns an array of ChampionMastery' do
145
- expect(subject.map(&:class).uniq).to eq [ChampionMastery]
146
- end
147
-
148
- it 'fetches PlayerStatistics from the API' do
149
- expect(subject.size).to eq(fixture.size)
150
- end
151
- end
49
+ it "fetches ChampionMastery properties from the API" do
50
+ fixture = load_fixture('champion-masteries', described_class.api_version)
51
+ expect(result.count).to eq fixture.count
152
52
  end
153
53
  end
154
54
  end
@@ -4,43 +4,30 @@ require "lol"
4
4
  include Lol
5
5
 
6
6
  describe ChampionRequest do
7
+ subject { described_class.new("api_key", "euw") }
8
+
7
9
  it "inherits from Request" do
8
- expect(ChampionRequest.ancestors[1]).to eq(Request)
10
+ expect(described_class.ancestors[1]).to eq(Request)
9
11
  end
10
12
 
11
- let(:request) { ChampionRequest.new("api_key", "euw") }
12
-
13
- describe "#get" do
14
-
15
- context "specifying an id" do
16
- subject { request.get(:id => 266) }
17
-
18
- before(:each) { stub_request(request, 'champion-266', 'champion/266', 'freeToPlay' => false) }
19
-
20
- it "returns a champion" do
21
- expect(subject).to be_a(Champion)
22
- end
13
+ describe "#find" do
14
+ it "returns a champion" do
15
+ stub_request subject, 'champion-266', 'champions/266'
16
+ expect(subject.find 266).to be_a DynamicModel
23
17
  end
18
+ end
24
19
 
25
- context "getting all" do
26
- subject { request.get }
27
-
28
- before(:each) { stub_request(request, 'champion', 'champion', 'freeToPlay' => false) }
29
-
30
- it "returns an array" do
31
- expect(subject).to be_a(Array)
32
- end
33
-
34
- it "returns an array of champions" do
35
- expect(subject.map {|e| e.class}.uniq).to eq([Champion])
36
- end
37
-
38
- it "fetches champions from the API" do
39
- expect(subject.size).to eq(load_fixture("champion", ChampionRequest.api_version)["champions"].size)
40
- end
20
+ describe "#all" do
21
+ before { stub_request subject, 'champion-all', 'champions', 'freeToPlay' => false }
22
+ let(:result) { subject.all }
41
23
 
24
+ it "returns an array of champions" do
25
+ expect(result).to be_a Array
26
+ expect(result.map(&:class).uniq).to eq [DynamicModel]
42
27
  end
43
28
 
44
-
29
+ it "fetches champions from the API" do
30
+ expect(result.size).to eq load_fixture('champion-all', described_class.api_version)['champions'].size
31
+ end
45
32
  end
46
33
  end
@@ -71,18 +71,6 @@ describe Client do
71
71
  end
72
72
  end
73
73
 
74
- describe '#game' do
75
- it "returns an instance of GameRequest" do
76
- expect(subject.game).to be_a(GameRequest)
77
- end
78
-
79
- it "initializes the GameRequest with the current API key and region" do
80
- expect(GameRequest).to receive(:new).with(subject.api_key, subject.region, subject.cache_store)
81
-
82
- subject.game
83
- end
84
- end
85
-
86
74
  describe '#match' do
87
75
  it "returns an instance of MatchRequest" do
88
76
  expect(subject.match).to be_a(MatchRequest)
@@ -95,27 +83,27 @@ describe Client do
95
83
  end
96
84
  end
97
85
 
98
- describe '#stats' do
99
- it "returns an instance of StatsRequest" do
100
- expect(subject.stats).to be_a(StatsRequest)
86
+ describe '#runes' do
87
+ it "returns an instance of RunesRequest" do
88
+ expect(subject.runes).to be_a(RunesRequest)
101
89
  end
102
90
 
103
- it "initializes the StatsRequest with the current API key and region" do
104
- expect(StatsRequest).to receive(:new).with(subject.api_key, subject.region, subject.cache_store)
91
+ it "initializes the RunesRequest with the current API key and region" do
92
+ expect(RunesRequest).to receive(:new).with(subject.api_key, subject.region, subject.cache_store)
105
93
 
106
- subject.stats
94
+ subject.runes
107
95
  end
108
96
  end
109
97
 
110
- describe '#team' do
111
- it "returns an instance of TeamRequest" do
112
- expect(subject.team).to be_a(TeamRequest)
98
+ describe '#masteries' do
99
+ it "returns an instance of MasteriesRequest" do
100
+ expect(subject.masteries).to be_a(MasteriesRequest)
113
101
  end
114
102
 
115
- it "initializes the TeamRequest with the current API key and region" do
116
- expect(TeamRequest).to receive(:new).with(subject.api_key, subject.region, subject.cache_store)
103
+ it "initializes the MasteriesRequest with the current API key and region" do
104
+ expect(MasteriesRequest).to receive(:new).with(subject.api_key, subject.region, subject.cache_store)
117
105
 
118
- subject.team
106
+ subject.masteries
119
107
  end
120
108
  end
121
109
 
@@ -161,38 +149,6 @@ describe Client do
161
149
  end
162
150
  end
163
151
 
164
- describe '#current_game' do
165
- it 'returns an instance of CurrentGameRequest' do
166
- expect(subject.current_game).to be_a CurrentGameRequest
167
- end
168
-
169
- it 'initializes CurrentGameRequest with the current API key an region' do
170
- expect(CurrentGameRequest).to receive(:new).with subject.api_key, subject.region, subject.cache_store
171
- subject.current_game
172
- end
173
-
174
- it 'memoizes the result' do
175
- expect(CurrentGameRequest).to receive(:new).and_return(double).exactly(:once)
176
- 2.times { subject.current_game }
177
- end
178
- end
179
-
180
- describe '#featured_games' do
181
- it 'returns an instance of FeaturedGamesRequest' do
182
- expect(subject.featured_games).to be_a FeaturedGamesRequest
183
- end
184
-
185
- it 'initializes FeaturedGamesRequest with the current API key an region' do
186
- expect(FeaturedGamesRequest).to receive(:new).with subject.api_key, subject.region, subject.cache_store
187
- subject.featured_games
188
- end
189
-
190
- it 'memoizes the result' do
191
- expect(FeaturedGamesRequest).to receive(:new).and_return(double).exactly(:once)
192
- 2.times { subject.featured_games }
193
- end
194
- end
195
-
196
152
  describe "#api_key" do
197
153
  it "returns an api key" do
198
154
  expect(subject.api_key).to eq("foo")