dota 0.0.5 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0929acbcb71659706557cfeebf2e9998714e626
4
- data.tar.gz: e622e9b46ea78f614bfd5ccbc4e1ac0436c1e52b
3
+ metadata.gz: 4c5d56cb8f9252cf51783dfa66983cb27e028043
4
+ data.tar.gz: c4be90c14fc988fe1de4362769e9ea861b42e7a7
5
5
  SHA512:
6
- metadata.gz: 59de68568da26209342d2493e3782040206771fcb2a193284d7461c5ff038967548f794365a8af92503a1a8763632b80a38f602befb5d6fa7db2801e12b62fc4
7
- data.tar.gz: d339be5b0d92733109105f8ccbde21f25e39ed820dfa638ba16d69b79bb04328a5f66838d2c9b4711a8311f533471f8363b3fa349998ac8558e3178bed65bd04
6
+ metadata.gz: 3cb95cd2e0deae0750644fd242a3a123ea282f7dff217b379b0b0e388575c92586d85f60dc6dbaa2057c474cb052e52ac16df5b26b21644a8c205596eec92385
7
+ data.tar.gz: 9321418620eeca973a8d3984e8f927764bbc3534b71400bbcf767207a6f2a8e441b0106e8bcb25bd38c1a12fcda88e1316059255c9598e016375b026a1dcb438
data/README.md CHANGED
@@ -33,15 +33,29 @@ Get your Steam API key [here](http://steamcommunity.com/dev/apikey). What follow
33
33
  ```ruby
34
34
  api = Dota.api
35
35
 
36
- api.heroes # => All heroes
37
- api.heroes(43) # => A single hero (Death Prophet)
38
-
39
- api.items # => All items
40
- api.items(114) # => A single item (Heart of Tarrasque)
41
-
42
- api.matches(789645621) # => A single match (Newbee vs Vici Gaming)
43
-
44
- api.leagues # => All leagues
36
+ api.heroes(43) # A single hero (Death Prophet)
37
+ api.heroes # All heroes
38
+
39
+ api.items(114) # A single item (Heart of Tarrasque)
40
+ api.items # All items
41
+
42
+ api.leagues # All leagues
43
+
44
+ api.matches(789645621) # A single match (Newbee vs Vici Gaming)
45
+ api.matches # A list of matches
46
+ api.matches(hero_id: 43) # Allowed options:
47
+ #
48
+ # :hero_id - Integer, With this hero. See Dota::API::Hero::MAPPING
49
+ # :after - Integer, With match ids equal to greater than this
50
+ # :player_id - Integer, With this player (Steam ID)
51
+ # :league_id - Integer, In this league. Use Dota.leagues to get a list of leagues
52
+ # :mode_id - Integer, In this game mode. See Dota::API::Match::MODES
53
+ # :skill_level - Integer, In this skill level (ignored if :player_id is provided). See Dota::API::Match::SKILL_LEVELS
54
+ # :from - Integer, Minimum timestamp
55
+ # :to - Integer, Maximum timestamp
56
+ # :min_players - Integer, With at least this number of players
57
+ # :league_only - Boolean, Only league matches
58
+ # :limit - Integer, Amount of matches to return (default is 100)
45
59
  ```
46
60
 
47
61
  ### API Objects
@@ -20,9 +20,26 @@ module Dota
20
20
  id ? Item.new(id) : Item.all
21
21
  end
22
22
 
23
- def matches(id)
24
- response = do_request("GetMatchDetails", match_id: id)["result"]
25
- Match.new(response) if response
23
+ def matches(options = {})
24
+ if options.is_a?(Integer)
25
+ id = options
26
+ response = do_request("GetMatchDetails", match_id: id)["result"]
27
+ Match.new(response) if response
28
+ else
29
+ options[:game_mode] = options.delete(:mode_id) if options[:mode_id]
30
+ options[:skill] = options.delete(:skill_level) if options[:skill_level]
31
+ options[:date_min] = options.delete(:from) if options[:from]
32
+ options[:date_max] = options.delete(:to) if options[:to]
33
+ options[:account_id] = options.delete(:player_id) if options[:player_id]
34
+ options[:start_at_match_id] = options.delete(:after) if options[:after]
35
+ options[:matches_requested] = options.delete(:limit) if options[:limit]
36
+ options[:tournament_games_only] = options.delete(:league_only) if options[:league_only]
37
+
38
+ response = do_request("GetMatchHistory", options)["result"]
39
+ if response && (matches = response["matches"])
40
+ matches.map { |match| Match.new(match) }
41
+ end
42
+ end
26
43
  end
27
44
 
28
45
  def leagues
@@ -34,7 +51,7 @@ module Dota
34
51
 
35
52
  private
36
53
 
37
- def do_request(method, options = {}, interface = "IDOTA2Match_570", method_version = "V001")
54
+ def do_request(method, params = {}, interface = "IDOTA2Match_570", method_version = "V001")
38
55
  url = "https://api.steampowered.com/#{interface}/#{method}/#{method_version}/"
39
56
 
40
57
  @faraday = Faraday.new(url) do |faraday|
@@ -43,7 +60,7 @@ module Dota
43
60
  end
44
61
 
45
62
  response = @faraday.get do |request|
46
- request.url(url, options.merge(key: configuration.api_key))
63
+ request.url(url, params.merge(key: configuration.api_key))
47
64
  end
48
65
  response.body
49
66
  end
@@ -33,6 +33,13 @@ module Dota
33
33
  16 => "Captain's Draft"
34
34
  }.freeze
35
35
 
36
+ SKILL_LEVELS = {
37
+ 0 => "Any",
38
+ 1 => "Normal",
39
+ 2 => "High",
40
+ 3 => "Very High"
41
+ }.freeze
42
+
36
43
  def initialize(raw)
37
44
  @raw = raw
38
45
  end
data/lib/dota/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Dota
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.7"
3
3
  end
data/spec/dota_spec.rb CHANGED
@@ -41,10 +41,49 @@ describe Dota do
41
41
  end
42
42
  end
43
43
 
44
- specify "#matches" do
45
- VCR.use_cassette("GetMatchDetails") do
46
- match = api.matches(sample_match_id)
47
- expect(match).to be_a Dota::API::Match
44
+ describe "#matches" do
45
+ context "given an id" do
46
+ it "returns a single match" do
47
+ VCR.use_cassette("GetMatchDetails") do
48
+ match = api.matches(sample_match_id)
49
+ expect(match).to be_a Dota::API::Match
50
+ end
51
+ end
52
+ end
53
+
54
+ context "without args" do
55
+ it "returns match history" do
56
+ VCR.use_cassette("GetMatchHistory") do
57
+ matches = api.matches
58
+ expect(matches.count).to eq 100
59
+ expect(matches.first).to be_a Dota::API::Match
60
+ end
61
+ end
62
+ end
63
+
64
+ context "given a hash" do
65
+ accepted_params = {
66
+ hero_id: :hero_id,
67
+ mode_id: :game_mode,
68
+ skill_level: :skill,
69
+ from: :date_min,
70
+ to: :date_max,
71
+ player_id: :account_id,
72
+ league_id: :league_id,
73
+ after: :start_at_match_id,
74
+ limit: :matches_requested,
75
+ league_only: :tournament_games_only
76
+ }
77
+ accepted_params.each do |local, remote|
78
+
79
+ specify ":#{local} should translate to :#{remote}" do
80
+ random_value = SecureRandom.hex
81
+ VCR.use_cassette("GetMatchHistory") do
82
+ expect(api).to receive(:do_request).with("GetMatchHistory", remote => random_value) { double.as_null_object }
83
+ matches = api.matches(local => random_value)
84
+ end
85
+ end
86
+ end
48
87
  end
49
88
  end
50
89
 
@@ -0,0 +1,933 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.steampowered.com/IDOTA2Match_570/GetMatchHistory/V001/?key=2FBBA83745F494FAE688AFB8463CD4FC
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Content-Type:
22
+ - application/json; charset=UTF-8
23
+ Last-Modified:
24
+ - Thu, 20 Nov 2014 13:24:28 GMT
25
+ Date:
26
+ - Thu, 20 Nov 2014 13:24:28 GMT
27
+ Vary:
28
+ - Accept-Encoding
29
+ Content-Length:
30
+ - '7660'
31
+ Expires:
32
+ - Mon, 26 Jul 1997 05:00:00 GMT
33
+ Cache-Control:
34
+ - no-cache,must-revalidate
35
+ body:
36
+ encoding: UTF-8
37
+ string: "{\n\t\"result\": {\n\t\t\"status\": 1,\n\t\t\"num_results\": 100,\n\t\t\"total_results\":
38
+ 500,\n\t\t\"results_remaining\": 400,\n\t\t\"matches\": [\n\t\t\t{\n\t\t\t\t\"match_id\":
39
+ 1037240369,\n\t\t\t\t\"match_seq_num\": 928546488,\n\t\t\t\t\"start_time\":
40
+ 1416489683,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
41
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 67912041,\n\t\t\t\t\t\t\"player_slot\":
42
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
43
+ 147012410,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 10\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
44
+ 1037240034,\n\t\t\t\t\"match_seq_num\": 928544710,\n\t\t\t\t\"start_time\":
45
+ 1416489679,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
46
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
47
+ 0,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
48
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 79\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
49
+ 1037239110,\n\t\t\t\t\"match_seq_num\": 928546362,\n\t\t\t\t\"start_time\":
50
+ 1416489654,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
51
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
52
+ 0,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
53
+ 132256229,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 79\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
54
+ 1037238489,\n\t\t\t\t\"match_seq_num\": 928545527,\n\t\t\t\t\"start_time\":
55
+ 1416489634,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
56
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
57
+ 0,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
58
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
59
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
60
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
61
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
62
+ 88835910,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 28\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
63
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
64
+ 129422859,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
65
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
66
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
67
+ 1037238158,\n\t\t\t\t\"match_seq_num\": 928543954,\n\t\t\t\t\"start_time\":
68
+ 1416489632,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
69
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 184128610,\n\t\t\t\t\t\t\"player_slot\":
70
+ 0,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
71
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 76\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
72
+ 1037238037,\n\t\t\t\t\"match_seq_num\": 928546357,\n\t\t\t\t\"start_time\":
73
+ 1416489617,\n\t\t\t\t\"lobby_type\": 4,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
74
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
75
+ 0,\n\t\t\t\t\t\t\"hero_id\": 44\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
76
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 5\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
77
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
78
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
79
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 99\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
80
+ 128,\n\t\t\t\t\t\t\"hero_id\": 49\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
81
+ 129,\n\t\t\t\t\t\t\"hero_id\": 42\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
82
+ 130,\n\t\t\t\t\t\t\"hero_id\": 22\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
83
+ 131,\n\t\t\t\t\t\t\"hero_id\": 18\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
84
+ 132,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
85
+ 1037238007,\n\t\t\t\t\"match_seq_num\": 928545204,\n\t\t\t\t\"start_time\":
86
+ 1416489609,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
87
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
88
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
89
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
90
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
91
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
92
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
93
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 23\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
94
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
95
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
96
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
97
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 31\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
98
+ 1037237849,\n\t\t\t\t\"match_seq_num\": 928546255,\n\t\t\t\t\"start_time\":
99
+ 1416489594,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
100
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
101
+ 0,\n\t\t\t\t\t\t\"hero_id\": 69\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
102
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 22\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
103
+ 126387604,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
104
+ 93288403,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 28\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
105
+ 127757197,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 58\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
106
+ 32745028,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 31\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
107
+ 152041675,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 12\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
108
+ 29861203,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
109
+ 15379154,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 72\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
110
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 67\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
111
+ 1037237064,\n\t\t\t\t\"match_seq_num\": 928544501,\n\t\t\t\t\"start_time\":
112
+ 1416489593,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
113
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
114
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
115
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
116
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 85\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
117
+ 145925787,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 82\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
118
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
119
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
120
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 71\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
121
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
122
+ 84905702,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
123
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
124
+ 1037235587,\n\t\t\t\t\"match_seq_num\": 928542148,\n\t\t\t\t\"start_time\":
125
+ 1416489560,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
126
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 112762890,\n\t\t\t\t\t\t\"player_slot\":
127
+ 0,\n\t\t\t\t\t\t\"hero_id\": 80\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
128
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
129
+ 1037234564,\n\t\t\t\t\"match_seq_num\": 928540394,\n\t\t\t\t\"start_time\":
130
+ 1416489531,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
131
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 84866593,\n\t\t\t\t\t\t\"player_slot\":
132
+ 0,\n\t\t\t\t\t\t\"hero_id\": 39\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
133
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 59\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
134
+ 1037234435,\n\t\t\t\t\"match_seq_num\": 928542763,\n\t\t\t\t\"start_time\":
135
+ 1416489528,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
136
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 122924727,\n\t\t\t\t\t\t\"player_slot\":
137
+ 0,\n\t\t\t\t\t\t\"hero_id\": 98\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
138
+ 166263478,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
139
+ 137208399,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 99\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
140
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 58\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
141
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
142
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
143
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 36\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
144
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 76\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
145
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 30\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
146
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 59\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
147
+ 1037233852,\n\t\t\t\t\"match_seq_num\": 928543074,\n\t\t\t\t\"start_time\":
148
+ 1416489489,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
149
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
150
+ 0,\n\t\t\t\t\t\t\"hero_id\": 27\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
151
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
152
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 102\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
153
+ 81220490,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 53\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
154
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
155
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
156
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 37\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
157
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
158
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
159
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
160
+ 1037233827,\n\t\t\t\t\"match_seq_num\": 928545811,\n\t\t\t\t\"start_time\":
161
+ 1416489510,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
162
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
163
+ 0,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
164
+ 159900270,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 18\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
165
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
166
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 17\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
167
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 22\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
168
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 44\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
169
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 48\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
170
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
171
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
172
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 8\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
173
+ 1037233783,\n\t\t\t\t\"match_seq_num\": 928543773,\n\t\t\t\t\"start_time\":
174
+ 1416489498,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
175
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 98551138,\n\t\t\t\t\t\t\"player_slot\":
176
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
177
+ 95828297,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 106\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
178
+ 113676885,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 3\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
179
+ 87565384,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 42\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
180
+ 71360666,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 61\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
181
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 23\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
182
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
183
+ 195847203,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
184
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 90\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
185
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
186
+ 1037233327,\n\t\t\t\t\"match_seq_num\": 928542863,\n\t\t\t\t\"start_time\":
187
+ 1416489498,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
188
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
189
+ 0,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
190
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 18\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
191
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
192
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 91\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
193
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
194
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 64\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
195
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 56\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
196
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 29\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
197
+ 122462783,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
198
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
199
+ 1037233159,\n\t\t\t\t\"match_seq_num\": 928543936,\n\t\t\t\t\"start_time\":
200
+ 1416489494,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
201
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
202
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
203
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
204
+ 1037232464,\n\t\t\t\t\"match_seq_num\": 928545197,\n\t\t\t\t\"start_time\":
205
+ 1416489467,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
206
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
207
+ 0,\n\t\t\t\t\t\t\"hero_id\": 103\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
208
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
209
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 39\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
210
+ 163113434,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 84\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
211
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 67\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
212
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
213
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 36\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
214
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
215
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 109\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
216
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 9\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
217
+ 1037232252,\n\t\t\t\t\"match_seq_num\": 928543382,\n\t\t\t\t\"start_time\":
218
+ 1416489473,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
219
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 184014995,\n\t\t\t\t\t\t\"player_slot\":
220
+ 0,\n\t\t\t\t\t\t\"hero_id\": 21\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
221
+ 116559726,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 22\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
222
+ 1037231901,\n\t\t\t\t\"match_seq_num\": 928539942,\n\t\t\t\t\"start_time\":
223
+ 1416489440,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
224
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
225
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
226
+ 180421805,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 59\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
227
+ 1037231895,\n\t\t\t\t\"match_seq_num\": 928543140,\n\t\t\t\t\"start_time\":
228
+ 1416489452,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
229
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 114018603,\n\t\t\t\t\t\t\"player_slot\":
230
+ 0,\n\t\t\t\t\t\t\"hero_id\": 8\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
231
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 33\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
232
+ 196568512,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 69\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
233
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
234
+ 188917967,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 63\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
235
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
236
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 49\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
237
+ 130525686,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 100\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
238
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
239
+ 129923435,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 31\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
240
+ 1037231567,\n\t\t\t\t\"match_seq_num\": 928541350,\n\t\t\t\t\"start_time\":
241
+ 1416489444,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
242
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 136262181,\n\t\t\t\t\t\t\"player_slot\":
243
+ 0,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
244
+ 136294023,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 21\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
245
+ 130550385,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 84\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
246
+ 136181858,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 28\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
247
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 8\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
248
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
249
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 87\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
250
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 13\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
251
+ 174130239,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 29\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
252
+ 136949671,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 1\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
253
+ 1037231204,\n\t\t\t\t\"match_seq_num\": 928542845,\n\t\t\t\t\"start_time\":
254
+ 1416489431,\n\t\t\t\t\"lobby_type\": 4,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
255
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
256
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
257
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
258
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 78\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
259
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
260
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 53\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
261
+ 128,\n\t\t\t\t\t\t\"hero_id\": 26\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
262
+ 129,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
263
+ 130,\n\t\t\t\t\t\t\"hero_id\": 81\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
264
+ 131,\n\t\t\t\t\t\t\"hero_id\": 21\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
265
+ 132,\n\t\t\t\t\t\t\"hero_id\": 99\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
266
+ 1037231074,\n\t\t\t\t\"match_seq_num\": 928544991,\n\t\t\t\t\"start_time\":
267
+ 1416489433,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
268
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 133316086,\n\t\t\t\t\t\t\"player_slot\":
269
+ 0,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
270
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 30\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
271
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 77\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
272
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 22\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
273
+ 100706111,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 5\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
274
+ 114895220,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
275
+ 107937598,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 71\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
276
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 99\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
277
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 57\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
278
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 83\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
279
+ 1037231031,\n\t\t\t\t\"match_seq_num\": 928542769,\n\t\t\t\t\"start_time\":
280
+ 1416489419,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
281
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
282
+ 0,\n\t\t\t\t\t\t\"hero_id\": 67\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
283
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 20\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
284
+ 150002268,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 25\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
285
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 71\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
286
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 22\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
287
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 104\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
288
+ 198281781,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
289
+ 198531144,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
290
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
291
+ 198714053,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
292
+ 1037230973,\n\t\t\t\t\"match_seq_num\": 928537577,\n\t\t\t\t\"start_time\":
293
+ 1416489438,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
294
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
295
+ 0,\n\t\t\t\t\t\t\"hero_id\": 59\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
296
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
297
+ 1037230883,\n\t\t\t\t\"match_seq_num\": 928540735,\n\t\t\t\t\"start_time\":
298
+ 1416489420,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
299
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 168802815,\n\t\t\t\t\t\t\"player_slot\":
300
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
301
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
302
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
303
+ 199688072,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
304
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
305
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
306
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
307
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
308
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
309
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
310
+ 1037230273,\n\t\t\t\t\"match_seq_num\": 928542413,\n\t\t\t\t\"start_time\":
311
+ 1416489404,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
312
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
313
+ 0,\n\t\t\t\t\t\t\"hero_id\": 84\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
314
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 40\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
315
+ 146936083,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 10\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
316
+ 138436897,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
317
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 9\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
318
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 20\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
319
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
320
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 39\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
321
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
322
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 70\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
323
+ 1037229913,\n\t\t\t\t\"match_seq_num\": 928536125,\n\t\t\t\t\"start_time\":
324
+ 1416489400,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
325
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
326
+ 0,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
327
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 59\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
328
+ 1037229612,\n\t\t\t\t\"match_seq_num\": 928546236,\n\t\t\t\t\"start_time\":
329
+ 1416489400,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
330
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
331
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
332
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
333
+ 1037228984,\n\t\t\t\t\"match_seq_num\": 928546291,\n\t\t\t\t\"start_time\":
334
+ 1416489374,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
335
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
336
+ 0,\n\t\t\t\t\t\t\"hero_id\": 45\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
337
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 90\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
338
+ 1037228788,\n\t\t\t\t\"match_seq_num\": 928543625,\n\t\t\t\t\"start_time\":
339
+ 1416489375,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
340
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 88079514,\n\t\t\t\t\t\t\"player_slot\":
341
+ 0,\n\t\t\t\t\t\t\"hero_id\": 13\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
342
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 46\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
343
+ 1037228746,\n\t\t\t\t\"match_seq_num\": 928541987,\n\t\t\t\t\"start_time\":
344
+ 1416489374,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
345
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
346
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
347
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
348
+ 1037228515,\n\t\t\t\t\"match_seq_num\": 928542670,\n\t\t\t\t\"start_time\":
349
+ 1416489369,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
350
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
351
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
352
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 101\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
353
+ 1037228473,\n\t\t\t\t\"match_seq_num\": 928535274,\n\t\t\t\t\"start_time\":
354
+ 1416489369,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
355
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 103273336,\n\t\t\t\t\t\t\"player_slot\":
356
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
357
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
358
+ 1037228253,\n\t\t\t\t\"match_seq_num\": 928543596,\n\t\t\t\t\"start_time\":
359
+ 1416489358,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
360
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
361
+ 0,\n\t\t\t\t\t\t\"hero_id\": 44\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
362
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 87\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
363
+ 1037227827,\n\t\t\t\t\"match_seq_num\": 928545319,\n\t\t\t\t\"start_time\":
364
+ 1416489347,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
365
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
366
+ 0,\n\t\t\t\t\t\t\"hero_id\": 90\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
367
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 100\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
368
+ 1037227747,\n\t\t\t\t\"match_seq_num\": 928546015,\n\t\t\t\t\"start_time\":
369
+ 1416489331,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
370
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
371
+ 0,\n\t\t\t\t\t\t\"hero_id\": 73\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
372
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 17\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
373
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 96\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
374
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
375
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 42\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
376
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 75\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
377
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 30\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
378
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
379
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
380
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 4\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
381
+ 1037227630,\n\t\t\t\t\"match_seq_num\": 928541116,\n\t\t\t\t\"start_time\":
382
+ 1416489329,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
383
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
384
+ 0,\n\t\t\t\t\t\t\"hero_id\": 75\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
385
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
386
+ 148217127,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 44\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
387
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 63\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
388
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 65\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
389
+ 122857799,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 90\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
390
+ 33310102,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
391
+ 28728277,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 84\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
392
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
393
+ 98429917,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 42\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
394
+ 1037227423,\n\t\t\t\t\"match_seq_num\": 928541912,\n\t\t\t\t\"start_time\":
395
+ 1416489339,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
396
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
397
+ 0,\n\t\t\t\t\t\t\"hero_id\": 15\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
398
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 25\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
399
+ 1037227052,\n\t\t\t\t\"match_seq_num\": 928539789,\n\t\t\t\t\"start_time\":
400
+ 1416489332,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
401
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
402
+ 0,\n\t\t\t\t\t\t\"hero_id\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
403
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
404
+ 1037227026,\n\t\t\t\t\"match_seq_num\": 928536096,\n\t\t\t\t\"start_time\":
405
+ 1416489321,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
406
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
407
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
408
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 23\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
409
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
410
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
411
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
412
+ 194293261,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
413
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
414
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
415
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
416
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
417
+ 1037226953,\n\t\t\t\t\"match_seq_num\": 928540421,\n\t\t\t\t\"start_time\":
418
+ 1416489309,\n\t\t\t\t\"lobby_type\": 7,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
419
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
420
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
421
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
422
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 71\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
423
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 34\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
424
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
425
+ 137498196,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
426
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 26\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
427
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
428
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
429
+ 1383621,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
430
+ 1037226858,\n\t\t\t\t\"match_seq_num\": 928542851,\n\t\t\t\t\"start_time\":
431
+ 1416489316,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
432
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
433
+ 0,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
434
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
435
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
436
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 8\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
437
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 37\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
438
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
439
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
440
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
441
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
442
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
443
+ 1037226667,\n\t\t\t\t\"match_seq_num\": 928546336,\n\t\t\t\t\"start_time\":
444
+ 1416489304,\n\t\t\t\t\"lobby_type\": 7,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
445
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 117832591,\n\t\t\t\t\t\t\"player_slot\":
446
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
447
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
448
+ 102046578,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
449
+ 97455297,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
450
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
451
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 62\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
452
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 42\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
453
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
454
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
455
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
456
+ 1037226652,\n\t\t\t\t\"match_seq_num\": 928544837,\n\t\t\t\t\"start_time\":
457
+ 1416489321,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
458
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
459
+ 0,\n\t\t\t\t\t\t\"hero_id\": 25\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
460
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
461
+ 1037226576,\n\t\t\t\t\"match_seq_num\": 928544754,\n\t\t\t\t\"start_time\":
462
+ 1416489316,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
463
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 101999721,\n\t\t\t\t\t\t\"player_slot\":
464
+ 0,\n\t\t\t\t\t\t\"hero_id\": 3\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
465
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
466
+ 1037226461,\n\t\t\t\t\"match_seq_num\": 928545506,\n\t\t\t\t\"start_time\":
467
+ 1416489313,\n\t\t\t\t\"lobby_type\": 7,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
468
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 64132171,\n\t\t\t\t\t\t\"player_slot\":
469
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
470
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
471
+ 51015117,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
472
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
473
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
474
+ 95122282,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
475
+ 120703599,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
476
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
477
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
478
+ 134724140,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 12\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
479
+ 1037226079,\n\t\t\t\t\"match_seq_num\": 928534937,\n\t\t\t\t\"start_time\":
480
+ 1416489299,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
481
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
482
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
483
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
484
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
485
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
486
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
487
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
488
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
489
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
490
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
491
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
492
+ 1037225981,\n\t\t\t\t\"match_seq_num\": 928536493,\n\t\t\t\t\"start_time\":
493
+ 1416489294,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
494
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 162110983,\n\t\t\t\t\t\t\"player_slot\":
495
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
496
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
497
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
498
+ 132914460,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
499
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
500
+ 136399846,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
501
+ 127432576,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
502
+ 138576361,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
503
+ 109293157,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
504
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
505
+ 1037225971,\n\t\t\t\t\"match_seq_num\": 928546376,\n\t\t\t\t\"start_time\":
506
+ 1416489273,\n\t\t\t\t\"lobby_type\": 7,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
507
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
508
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
509
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
510
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
511
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
512
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
513
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 30\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
514
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
515
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
516
+ 154455583,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 43\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
517
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
518
+ 1037225894,\n\t\t\t\t\"match_seq_num\": 928542997,\n\t\t\t\t\"start_time\":
519
+ 1416489290,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
520
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
521
+ 0,\n\t\t\t\t\t\t\"hero_id\": 27\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
522
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
523
+ 1037225892,\n\t\t\t\t\"match_seq_num\": 928532985,\n\t\t\t\t\"start_time\":
524
+ 1416489290,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
525
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
526
+ 0,\n\t\t\t\t\t\t\"hero_id\": 13\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
527
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 44\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
528
+ 1037225815,\n\t\t\t\t\"match_seq_num\": 928534891,\n\t\t\t\t\"start_time\":
529
+ 1416489291,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
530
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
531
+ 0,\n\t\t\t\t\t\t\"hero_id\": 31\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
532
+ 126087633,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 33\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
533
+ 114605143,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 18\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
534
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
535
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 106\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
536
+ 102319126,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 84\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
537
+ 85914105,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
538
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
539
+ 143439154,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
540
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
541
+ 1037225416,\n\t\t\t\t\"match_seq_num\": 928539719,\n\t\t\t\t\"start_time\":
542
+ 1416489288,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
543
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 185380112,\n\t\t\t\t\t\t\"player_slot\":
544
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
545
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 104\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
546
+ 1037225297,\n\t\t\t\t\"match_seq_num\": 928546612,\n\t\t\t\t\"start_time\":
547
+ 1416489283,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
548
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 128241018,\n\t\t\t\t\t\t\"player_slot\":
549
+ 0,\n\t\t\t\t\t\t\"hero_id\": 73\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
550
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 83\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
551
+ 1037224972,\n\t\t\t\t\"match_seq_num\": 928538695,\n\t\t\t\t\"start_time\":
552
+ 1416489271,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
553
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
554
+ 0,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
555
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 101\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
556
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 25\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
557
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 99\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
558
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
559
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 80\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
560
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 12\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
561
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 48\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
562
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
563
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 96\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
564
+ 1037224879,\n\t\t\t\t\"match_seq_num\": 928534265,\n\t\t\t\t\"start_time\":
565
+ 1416489271,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
566
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
567
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
568
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
569
+ 85973683,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
570
+ 88929826,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
571
+ 141615081,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
572
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 25\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
573
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
574
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
575
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 104\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
576
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
577
+ 1037224876,\n\t\t\t\t\"match_seq_num\": 928544911,\n\t\t\t\t\"start_time\":
578
+ 1416489274,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
579
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
580
+ 0,\n\t\t\t\t\t\t\"hero_id\": 64\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
581
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 59\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
582
+ 1037224405,\n\t\t\t\t\"match_seq_num\": 928535154,\n\t\t\t\t\"start_time\":
583
+ 1416489262,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
584
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
585
+ 0,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
586
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
587
+ 1037224301,\n\t\t\t\t\"match_seq_num\": 928541447,\n\t\t\t\t\"start_time\":
588
+ 1416489257,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
589
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
590
+ 0,\n\t\t\t\t\t\t\"hero_id\": 64\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
591
+ 196593816,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 85\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
592
+ 1037224158,\n\t\t\t\t\"match_seq_num\": 928534221,\n\t\t\t\t\"start_time\":
593
+ 1416489240,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
594
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
595
+ 0,\n\t\t\t\t\t\t\"hero_id\": 86\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
596
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 30\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
597
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 44\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
598
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
599
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 87\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
600
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 18\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
601
+ 179594140,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 17\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
602
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 31\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
603
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 84\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
604
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 56\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
605
+ 1037224092,\n\t\t\t\t\"match_seq_num\": 928543842,\n\t\t\t\t\"start_time\":
606
+ 1416489239,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
607
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
608
+ 0,\n\t\t\t\t\t\t\"hero_id\": 48\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
609
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 64\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
610
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 25\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
611
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 52\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
612
+ 131884598,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
613
+ 194508262,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 45\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
614
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 109\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
615
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 55\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
616
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
617
+ 125316727,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 53\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
618
+ 1037224042,\n\t\t\t\t\"match_seq_num\": 928535971,\n\t\t\t\t\"start_time\":
619
+ 1416489250,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
620
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
621
+ 0,\n\t\t\t\t\t\t\"hero_id\": 70\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
622
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 49\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
623
+ 1037223855,\n\t\t\t\t\"match_seq_num\": 928542590,\n\t\t\t\t\"start_time\":
624
+ 1416489239,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
625
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 102649339,\n\t\t\t\t\t\t\"player_slot\":
626
+ 0,\n\t\t\t\t\t\t\"hero_id\": 78\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
627
+ 112678842,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 52\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
628
+ 114005426,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
629
+ 91132267,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
630
+ 111664901,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 62\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
631
+ 23752099,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
632
+ 35594132,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 65\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
633
+ 36866368,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
634
+ 90552,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 37\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
635
+ 24127914,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 96\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
636
+ 1037223451,\n\t\t\t\t\"match_seq_num\": 928541305,\n\t\t\t\t\"start_time\":
637
+ 1416489208,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
638
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
639
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
640
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
641
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
642
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
643
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
644
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
645
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
646
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 15\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
647
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 18\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
648
+ 2,\n\t\t\t\t\t\t\"hero_id\": 62\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
649
+ 1037223244,\n\t\t\t\t\"match_seq_num\": 928542190,\n\t\t\t\t\"start_time\":
650
+ 1416489226,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
651
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
652
+ 0,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
653
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
654
+ 1037222974,\n\t\t\t\t\"match_seq_num\": 928533670,\n\t\t\t\t\"start_time\":
655
+ 1416489217,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
656
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
657
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
658
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 25\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
659
+ 1037222913,\n\t\t\t\t\"match_seq_num\": 928537077,\n\t\t\t\t\"start_time\":
660
+ 1416489194,\n\t\t\t\t\"lobby_type\": 7,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
661
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
662
+ 0,\n\t\t\t\t\t\t\"hero_id\": 31\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
663
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
664
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
665
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
666
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
667
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
668
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
669
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
670
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
671
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
672
+ 1037222811,\n\t\t\t\t\"match_seq_num\": 928539555,\n\t\t\t\t\"start_time\":
673
+ 1416489194,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
674
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
675
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
676
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
677
+ 1037222716,\n\t\t\t\t\"match_seq_num\": 928541947,\n\t\t\t\t\"start_time\":
678
+ 1416489213,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
679
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 99146967,\n\t\t\t\t\t\t\"player_slot\":
680
+ 0,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
681
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
682
+ 1037222704,\n\t\t\t\t\"match_seq_num\": 928538627,\n\t\t\t\t\"start_time\":
683
+ 1416489217,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
684
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
685
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
686
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
687
+ 1037222703,\n\t\t\t\t\"match_seq_num\": 928535136,\n\t\t\t\t\"start_time\":
688
+ 1416489217,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
689
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
690
+ 0,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
691
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 44\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
692
+ 1037222658,\n\t\t\t\t\"match_seq_num\": 928534039,\n\t\t\t\t\"start_time\":
693
+ 1416489208,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
694
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
695
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
696
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
697
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 23\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
698
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 90\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
699
+ 159653211,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
700
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 36\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
701
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 69\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
702
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
703
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 40\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
704
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 66\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
705
+ 1037222469,\n\t\t\t\t\"match_seq_num\": 928540089,\n\t\t\t\t\"start_time\":
706
+ 1416489197,\n\t\t\t\t\"lobby_type\": 7,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
707
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 156522508,\n\t\t\t\t\t\t\"player_slot\":
708
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
709
+ 111362483,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
710
+ 139334011,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
711
+ 125760739,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
712
+ 118801313,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
713
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
714
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
715
+ 68530377,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 85\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
716
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
717
+ 120168193,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
718
+ 1037222349,\n\t\t\t\t\"match_seq_num\": 928538989,\n\t\t\t\t\"start_time\":
719
+ 1416489185,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
720
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 149407605,\n\t\t\t\t\t\t\"player_slot\":
721
+ 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
722
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
723
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
724
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
725
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
726
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 42\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
727
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 26\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
728
+ 0,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
729
+ 2,\n\t\t\t\t\t\t\"hero_id\": 8\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
730
+ 132,\n\t\t\t\t\t\t\"hero_id\": 49\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
731
+ 1037222287,\n\t\t\t\t\"match_seq_num\": 928545996,\n\t\t\t\t\"start_time\":
732
+ 1416489193,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
733
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
734
+ 0,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
735
+ 112872523,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 69\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
736
+ 1037222166,\n\t\t\t\t\"match_seq_num\": 928530563,\n\t\t\t\t\"start_time\":
737
+ 1416489193,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
738
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
739
+ 0,\n\t\t\t\t\t\t\"hero_id\": 36\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
740
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
741
+ 1037222084,\n\t\t\t\t\"match_seq_num\": 928542348,\n\t\t\t\t\"start_time\":
742
+ 1416489193,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
743
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
744
+ 0,\n\t\t\t\t\t\t\"hero_id\": 33\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
745
+ 150184137,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 109\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
746
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 48\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
747
+ 147527177,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 53\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
748
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 66\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
749
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 64\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
750
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 52\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
751
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 56\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
752
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
753
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
754
+ 1037222080,\n\t\t\t\t\"match_seq_num\": 928529514,\n\t\t\t\t\"start_time\":
755
+ 1416489193,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
756
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 155176201,\n\t\t\t\t\t\t\"player_slot\":
757
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
758
+ 36686003,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
759
+ 1037222068,\n\t\t\t\t\"match_seq_num\": 928540205,\n\t\t\t\t\"start_time\":
760
+ 1416489198,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
761
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
762
+ 0,\n\t\t\t\t\t\t\"hero_id\": 15\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
763
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
764
+ 1037222044,\n\t\t\t\t\"match_seq_num\": 928534986,\n\t\t\t\t\"start_time\":
765
+ 1416489193,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
766
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 133477205,\n\t\t\t\t\t\t\"player_slot\":
767
+ 0,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
768
+ 186962700,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
769
+ 1037222029,\n\t\t\t\t\"match_seq_num\": 928541996,\n\t\t\t\t\"start_time\":
770
+ 1416489195,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
771
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 79928346,\n\t\t\t\t\t\t\"player_slot\":
772
+ 0,\n\t\t\t\t\t\t\"hero_id\": 25\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
773
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 63\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
774
+ 1037221998,\n\t\t\t\t\"match_seq_num\": 928540783,\n\t\t\t\t\"start_time\":
775
+ 1416489183,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
776
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
777
+ 0,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
778
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 83\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
779
+ 150736657,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 44\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
780
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 109\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
781
+ 130421929,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
782
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 63\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
783
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
784
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 86\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
785
+ 191254122,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 42\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
786
+ 103220596,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
787
+ 1037221980,\n\t\t\t\t\"match_seq_num\": 928545384,\n\t\t\t\t\"start_time\":
788
+ 1416489188,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
789
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
790
+ 0,\n\t\t\t\t\t\t\"hero_id\": 102\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
791
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
792
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 88\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
793
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 9\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
794
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 110\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
795
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
796
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
797
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 22\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
798
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 90\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
799
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 15\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
800
+ 1037221886,\n\t\t\t\t\"match_seq_num\": 928539080,\n\t\t\t\t\"start_time\":
801
+ 1416489191,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
802
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
803
+ 0,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
804
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 5\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
805
+ 1037221740,\n\t\t\t\t\"match_seq_num\": 928531619,\n\t\t\t\t\"start_time\":
806
+ 1416489180,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
807
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
808
+ 0,\n\t\t\t\t\t\t\"hero_id\": 1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
809
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
810
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
811
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
812
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 9\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
813
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 51\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
814
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
815
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
816
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 104\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
817
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 7\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
818
+ 1037221544,\n\t\t\t\t\"match_seq_num\": 928541512,\n\t\t\t\t\"start_time\":
819
+ 1416489183,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
820
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
821
+ 0,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
822
+ 110613277,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
823
+ 1037221519,\n\t\t\t\t\"match_seq_num\": 928543907,\n\t\t\t\t\"start_time\":
824
+ 1416489153,\n\t\t\t\t\"lobby_type\": 7,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
825
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
826
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
827
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
828
+ 136630074,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
829
+ 192267980,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
830
+ 59935077,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
831
+ 136293249,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
832
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
833
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
834
+ 130008125,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
835
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
836
+ 1037221503,\n\t\t\t\t\"match_seq_num\": 928544228,\n\t\t\t\t\"start_time\":
837
+ 1416489183,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
838
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 139269547,\n\t\t\t\t\t\t\"player_slot\":
839
+ 0,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
840
+ 172357128,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 11\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
841
+ 1037221227,\n\t\t\t\t\"match_seq_num\": 928544769,\n\t\t\t\t\"start_time\":
842
+ 1416489173,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
843
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
844
+ 0,\n\t\t\t\t\t\t\"hero_id\": 19\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
845
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 74\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
846
+ 183651512,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 34\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
847
+ 75049072,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 26\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
848
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 105\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
849
+ 128831066,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 35\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
850
+ 125727088,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 64\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
851
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
852
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 77\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
853
+ 94839076,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 90\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
854
+ 1037221200,\n\t\t\t\t\"match_seq_num\": 928544964,\n\t\t\t\t\"start_time\":
855
+ 1416489168,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
856
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 63460229,\n\t\t\t\t\t\t\"player_slot\":
857
+ 0,\n\t\t\t\t\t\t\"hero_id\": 16\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
858
+ 87673364,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
859
+ 165188897,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 62\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
860
+ 93855996,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
861
+ 86100367,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 86\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
862
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 101\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
863
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 42\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
864
+ 91404547,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
865
+ 40129847,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 8\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
866
+ 73311513,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 70\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
867
+ 1037221067,\n\t\t\t\t\"match_seq_num\": 928537406,\n\t\t\t\t\"start_time\":
868
+ 1416489161,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
869
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
870
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
871
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 39\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
872
+ 1037220982,\n\t\t\t\t\"match_seq_num\": 928533046,\n\t\t\t\t\"start_time\":
873
+ 1416489161,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
874
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
875
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
876
+ 67912041,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
877
+ 1037220831,\n\t\t\t\t\"match_seq_num\": 928530485,\n\t\t\t\t\"start_time\":
878
+ 1416489142,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
879
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
880
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
881
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 103\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
882
+ 1037220808,\n\t\t\t\t\"match_seq_num\": 928531384,\n\t\t\t\t\"start_time\":
883
+ 1416489159,\n\t\t\t\t\"lobby_type\": 4,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
884
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
885
+ 0,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
886
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
887
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
888
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
889
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
890
+ 128,\n\t\t\t\t\t\t\"hero_id\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
891
+ 129,\n\t\t\t\t\t\t\"hero_id\": 37\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
892
+ 130,\n\t\t\t\t\t\t\"hero_id\": 18\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
893
+ 131,\n\t\t\t\t\t\t\"hero_id\": 29\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"player_slot\":
894
+ 132,\n\t\t\t\t\t\t\"hero_id\": 32\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
895
+ 1037220784,\n\t\t\t\t\"match_seq_num\": 928544288,\n\t\t\t\t\"start_time\":
896
+ 1416489159,\n\t\t\t\t\"lobby_type\": 7,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
897
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 126185099,\n\t\t\t\t\t\t\"player_slot\":
898
+ 0,\n\t\t\t\t\t\t\"hero_id\": 26\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
899
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
900
+ 136953345,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
901
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 15\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
902
+ 113763381,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 41\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
903
+ 68370997,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
904
+ 139460851,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
905
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
906
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
907
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 0\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
908
+ 1037220339,\n\t\t\t\t\"match_seq_num\": 928541902,\n\t\t\t\t\"start_time\":
909
+ 1416489147,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
910
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
911
+ 0,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
912
+ 101656646,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
913
+ 1037220274,\n\t\t\t\t\"match_seq_num\": 928537242,\n\t\t\t\t\"start_time\":
914
+ 1416489142,\n\t\t\t\t\"lobby_type\": 0,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
915
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 87093237,\n\t\t\t\t\t\t\"player_slot\":
916
+ 0,\n\t\t\t\t\t\t\"hero_id\": 103\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
917
+ 52425205,\n\t\t\t\t\t\t\"player_slot\": 1,\n\t\t\t\t\t\t\"hero_id\": 13\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
918
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 2,\n\t\t\t\t\t\t\"hero_id\": 37\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
919
+ 129265389,\n\t\t\t\t\t\t\"player_slot\": 3,\n\t\t\t\t\t\t\"hero_id\": 86\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
920
+ 96763883,\n\t\t\t\t\t\t\"player_slot\": 4,\n\t\t\t\t\t\t\"hero_id\": 93\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
921
+ 129900643,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 72\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
922
+ 86844564,\n\t\t\t\t\t\t\"player_slot\": 129,\n\t\t\t\t\t\t\"hero_id\": 98\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
923
+ 79603518,\n\t\t\t\t\t\t\"player_slot\": 130,\n\t\t\t\t\t\t\"hero_id\": 96\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
924
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 131,\n\t\t\t\t\t\t\"hero_id\": 47\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
925
+ 96739087,\n\t\t\t\t\t\t\"player_slot\": 132,\n\t\t\t\t\t\t\"hero_id\": 33\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"match_id\":
926
+ 1037220232,\n\t\t\t\t\"match_seq_num\": 928538078,\n\t\t\t\t\"start_time\":
927
+ 1416489135,\n\t\t\t\t\"lobby_type\": 8,\n\t\t\t\t\"radiant_team_id\": 0,\n\t\t\t\t\"dire_team_id\":
928
+ 0,\n\t\t\t\t\"players\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\": 4294967295,\n\t\t\t\t\t\t\"player_slot\":
929
+ 0,\n\t\t\t\t\t\t\"hero_id\": 73\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"account_id\":
930
+ 4294967295,\n\t\t\t\t\t\t\"player_slot\": 128,\n\t\t\t\t\t\t\"hero_id\": 6\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t\t\n\t\t\t}\n\t\t]\n\t\t\n\t}\n}"
931
+ http_version:
932
+ recorded_at: Thu, 20 Nov 2014 13:24:31 GMT
933
+ recorded_with: VCR 2.9.3