dota 0.0.9 → 0.0.10

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: 2f1310ea5eaf894a60463c727abdb95d2df7c21f
4
- data.tar.gz: c8b3c2c9606d1582a7ba206f14ddef50de3d8c23
3
+ metadata.gz: 5614a7fd9ade0b1abada4e7c16e749673e04f94d
4
+ data.tar.gz: 7cd313476bc49a933db85916b7beaff8445eb6b2
5
5
  SHA512:
6
- metadata.gz: 7ae72c29fdfce7f3db78dec8ae8ae5dfa0e97849fc8dfa9e74a0b787118f8b2423c6fd8cd6e8e5ad7e1906e4a19ca9dc4480eff39199917422ffc47b6dba828d
7
- data.tar.gz: dcac157c067648a2074b3c0857354fe613b9e334566ab47ab74565bb4dc658ef11ba789ed6f116eb7de2d8b49283b47a4a1700ebd8b9d42906871ae6abc3bb75
6
+ metadata.gz: df17b5190d60affd6f8bd493a9c350c6e681f572325bfe8873546b2826e38e2990fdf52ac0e59accbc95dd32817ddc2276f93db02c0d21ddaf2360f95ae7b7b4
7
+ data.tar.gz: a83c8bfe85de2849178501becd1f124b030ac6c3b18f3e966e2fc1ea7baf38352161ec55417cf0eebcad4c72afdfd09b7bcac33ddd8aa037cd944beff77ff4e5
data/README.md CHANGED
@@ -11,6 +11,9 @@ Currently supported endpoints:
11
11
  - [GetHeroes](https://wiki.teamfortress.com/wiki/WebAPI/GetHeroes)
12
12
  - GetGameItems
13
13
  - [GetRarities](https://wiki.teamfortress.com/wiki/WebAPI/GetRarities)
14
+ - [GetTeamInfoByTeamID](https://wiki.teamfortress.com/wiki/WebAPI/GetTeamInfoByTeamID)
15
+
16
+ Unsupported endpoints can still be queried via [custom requests](#custom-requests).
14
17
 
15
18
  This gem is in alpha, keep that in mind when upgrading.
16
19
 
@@ -21,7 +24,6 @@ This gem is in alpha, keep that in mind when upgrading.
21
24
  - [GetMatchHistoryBySequenceNum](https://wiki.teamfortress.com/wiki/WebAPI/GetMatchHistoryBySequenceNum)
22
25
  - [GetPlayerSummaries](https://wiki.teamfortress.com/wiki/WebAPI/GetPlayerSummaries)
23
26
  - [GetScheduledLeagueGames](https://wiki.teamfortress.com/wiki/WebAPI/GetScheduledLeagueGames)
24
- - [GetTeamInfoByTeamID](https://wiki.teamfortress.com/wiki/WebAPI/GetTeamInfoByTeamID)
25
27
  - [GetTournamentPlayerStats](https://wiki.teamfortress.com/wiki/WebAPI/GetTournamentPlayerStats)
26
28
  - [GetTournamentPrizePool](https://wiki.teamfortress.com/wiki/WebAPI/GetTournamentPrizePool)
27
29
  - Validations and error classes
@@ -59,38 +61,45 @@ Get your Steam API key [here](http://steamcommunity.com/dev/apikey).
59
61
  ```ruby
60
62
  api = Dota.api
61
63
 
62
- api.heroes(43) # (Cached) A single hero - Death Prophet
63
- api.heroes # (Cached) All heroes
64
-
65
- api.items(114) # (Cached) A single item - Heart of Tarrasque
66
- api.items # (Cached) All items
67
-
68
- api.cosmetic_rarities # All cosmetic rarities
69
-
70
- api.leagues # All leagues
71
-
72
- api.matches(789645621) # A single match - Newbee vs Vici Gaming
73
- api.matches # A list of matches
74
- api.matches(hero_id: 43) # Allowed options:
75
- #
76
- # :hero_id - Integer, With this hero. See Dota::API::Hero::MAPPING
77
- # :after - Integer, With match ids equal to greater than this
78
- # :player_id - Integer, With this player (Steam ID)
79
- # :league_id - Integer, In this league. Use Dota.leagues to get a list of leagues
80
- # :mode_id - Integer, In this game mode. See Dota::API::Match::MODES
81
- # :skill_level - Integer, In this skill level (ignored if :player_id is provided). See Dota::API::Match::SKILL_LEVELS
82
- # :from - Integer, Minimum timestamp
83
- # :to - Integer, Maximum timestamp
84
- # :min_players - Integer, With at least this number of players
85
- # :league_only - Boolean, Only league matches
86
- # :limit - Integer, Amount of matches to return (default is 100)
64
+ api.heroes(43) # (Cached) A single hero - "Death Prophet"
65
+ api.heroes # (Cached) All heroes
66
+
67
+ api.items(114) # (Cached) A single item - "Heart of Tarrasque"
68
+ api.items # (Cached) All items
69
+
70
+ api.cosmetic_rarities # All cosmetic rarities
71
+
72
+ api.teams(1375614) # A single team - "Newbee"
73
+ api.teams # A list of teams
74
+ api.teams(after: 1375614) # Allowed options:
75
+ #
76
+ # :after - Integer, With teams IDs equal or greater than this
77
+ # :limit - Integer, Amount of teams to return (default is 100)
78
+
79
+ api.leagues # All leagues
80
+
81
+ api.matches(789645621) # A single match - "Newbee vs Vici Gaming"
82
+ api.matches # A list of matches
83
+ api.matches(hero_id: 43) # Allowed options:
84
+ #
85
+ # :hero_id - Integer, With this hero. See Dota::API::Hero::MAPPING
86
+ # :after - Integer, With match IDs equal or greater than this
87
+ # :player_id - Integer, With this player (32-bit Steam ID)
88
+ # :league_id - Integer, In this league. Use Dota.leagues to get a list of leagues
89
+ # :mode_id - Integer, In this game mode. See Dota::API::Match::MODES
90
+ # :skill_level - Integer, In this skill level (ignored if :player_id is provided). See Dota::API::Match::SKILL_LEVELS
91
+ # :from - Integer, Minimum timestamp
92
+ # :to - Integer, Maximum timestamp
93
+ # :min_players - Integer, With at least this number of players
94
+ # :league_only - Boolean, Only league matches
95
+ # :limit - Integer, Amount of matches to return (default is 100)
87
96
 
88
97
  api.friends(76561198052976237) # All friends of user
89
98
  ```
90
99
 
91
100
  #### Custom Requests
92
101
 
93
- For the unsupported endpoints, you can use `api.get`. The following code is similar to `api.matches(789645621)` except that it only returns the response body.
102
+ For the unsupported endpoints, you can use `api.get`. For example, the following code is similar to `api.matches(789645621)` except it will return the raw JSON payload instead of an array of `Dota::Match`es.
94
103
 
95
104
  ```ruby
96
105
  api.get("IDOTA2Match_570", "GetMatchDetails", match_id: 789645621)
@@ -114,6 +123,22 @@ item.name # String, Name of the item
114
123
  item.image_url # String, URL of the item image
115
124
  ```
116
125
 
126
+ #### Teams
127
+
128
+ ```ruby
129
+ team.id # Integer, ID of the team
130
+ team.name # String, Name of the team
131
+ team.tag # String, Abbreviation tag of the team
132
+ team.country_code # String, ISO 3166-1 country code (see http://en.wikipedia.org/wiki/ISO_3166-1#Current_codes)
133
+ team.admin_id # Integer, Team admin's 32-bit Steam ID
134
+ team.player_ids # Array[Integer], Players' 32-bit Steam IDs
135
+ team.logo_id # Integer, UGC ID of the team's logo
136
+ team.sponsor_logo_id # Integer, UGC ID of the sponsor's logo
137
+ team.rating # String, ???
138
+ team.url # String, URL of the team's website
139
+ team.created_at # Time, When the team was created
140
+ ```
141
+
117
142
  #### Leagues
118
143
 
119
144
  ```ruby
@@ -12,6 +12,7 @@ require 'dota/api/league'
12
12
  require 'dota/api/match'
13
13
  require 'dota/api/match/draft'
14
14
  require 'dota/api/match/player'
15
+ require 'dota/api/team'
15
16
 
16
17
  module Dota
17
18
  class << self
@@ -20,6 +20,22 @@ module Dota
20
20
  id ? Item.new(id) : Item.all
21
21
  end
22
22
 
23
+ def teams(options = {})
24
+ if options.is_a?(Integer)
25
+ id = options
26
+ response = get("IDOTA2Match_570", "GetTeamInfoByTeamID", start_at_team_id: id, teams_requested: 1)["result"]["teams"][0]
27
+ Team.new(response) if response
28
+ else
29
+ options[:start_at_team_id] = options.delete(:after) if options[:after]
30
+ options[:teams_requested] = options.delete(:limit) if options[:limit]
31
+
32
+ response = get("IDOTA2Match_570", "GetTeamInfoByTeamID", options)["result"]
33
+ if response && (teams = response["teams"])
34
+ teams.map { |team| Team.new(team) }
35
+ end
36
+ end
37
+ end
38
+
23
39
  def matches(options = {})
24
40
  if options.is_a?(Integer)
25
41
  id = options
@@ -0,0 +1,61 @@
1
+ module Dota
2
+ module API
3
+ class Team
4
+ include Utilities::Inspectable
5
+
6
+ attr_reader :raw
7
+
8
+ def initialize(raw)
9
+ @raw = raw
10
+ end
11
+
12
+ def id
13
+ raw["team_id"]
14
+ end
15
+
16
+ def name
17
+ raw["name"]
18
+ end
19
+
20
+ def tag
21
+ raw["tag"]
22
+ end
23
+
24
+ def country_code
25
+ raw["country_code"]
26
+ end
27
+
28
+ def rating
29
+ raw["rating"]
30
+ end
31
+
32
+ def url
33
+ raw["url"]
34
+ end
35
+
36
+ def logo_id
37
+ raw["logo"]
38
+ end
39
+
40
+ def sponsor_logo_id
41
+ raw["logo_sponsor"]
42
+ end
43
+
44
+ def matches_with_current_roster
45
+ raw["games_played_with_current_roster"]
46
+ end
47
+
48
+ def player_ids
49
+ (0..4).map { |n| raw["player_#{n}_account_id"] }
50
+ end
51
+
52
+ def admin_id
53
+ raw["admin_account_id"]
54
+ end
55
+
56
+ def created_at
57
+ Time.at(raw["time_created"])
58
+ end
59
+ end
60
+ end
61
+ end
@@ -1,3 +1,3 @@
1
1
  module Dota
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
@@ -0,0 +1,55 @@
1
+ describe Dota::API::Team do
2
+ let(:team) do
3
+ VCR.use_cassette("GetTeamInfoByTeamID") do
4
+ test_client.teams(sample_team_id)
5
+ end
6
+ end
7
+
8
+ specify "#id" do
9
+ expect(team.id).to eq sample_team_id
10
+ end
11
+
12
+ specify "#name" do
13
+ expect(team.name).to eq "Newbee"
14
+ end
15
+
16
+ specify "#tag" do
17
+ expect(team.tag).to eq "Newbee"
18
+ end
19
+
20
+ specify "#country_code" do
21
+ expect(team.country_code).to eq "cn"
22
+ end
23
+
24
+ specify "#rating" do
25
+ expect(team.rating).to eq "inactive"
26
+ end
27
+
28
+ specify "#logo_id" do
29
+ expect(team.logo_id).to eq 794064971723724234
30
+ end
31
+
32
+ specify "#sponsor_logo_id" do
33
+ expect(team.sponsor_logo_id).to eq 532872513435338107
34
+ end
35
+
36
+ specify "#matches_with_current_roster" do
37
+ expect(team.matches_with_current_roster).to eq 0
38
+ end
39
+
40
+ specify "#url" do
41
+ expect(team.url).to eq "http://t.qq.com/NBgaming"
42
+ end
43
+
44
+ specify "#player_ids" do
45
+ expect(team.player_ids).to eq [88508515, 89157606, 89217927, 100883708, 123854991]
46
+ end
47
+
48
+ specify "#admin_id" do
49
+ expect(team.admin_id).to eq 104652351
50
+ end
51
+
52
+ specify "#created_at" do
53
+ expect(team.created_at).to eq Time.at(1393518254)
54
+ end
55
+ end
@@ -43,44 +43,36 @@ describe Dota do
43
43
 
44
44
  describe "#matches" do
45
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
46
+ it "returns a single team" do
47
+ VCR.use_cassette("GetTeamInfoByTeamID") do
48
+ team = api.teams(sample_team_id)
49
+ expect(team).to be_a Dota::API::Team
50
50
  end
51
51
  end
52
52
  end
53
53
 
54
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
55
+ it "returns a list of teams" do
56
+ VCR.use_cassette("GetTeamInfoByTeamID_many") do
57
+ teams = api.teams
58
+ expect(teams.count).to eq 100
59
+ expect(teams.first).to be_a Dota::API::Team
60
60
  end
61
61
  end
62
62
  end
63
63
 
64
64
  context "given a hash" do
65
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
66
+ after: :start_at_team_id,
67
+ limit: :teams_requested,
76
68
  }
77
69
  accepted_params.each do |local, remote|
78
70
 
79
71
  specify ":#{local} should translate to :#{remote}" do
80
72
  random_value = SecureRandom.hex
81
- VCR.use_cassette("GetMatchHistory") do
82
- expect(api).to receive(:get).with("IDOTA2Match_570", "GetMatchHistory", remote => random_value) { double.as_null_object }
83
- matches = api.matches(local => random_value)
73
+ VCR.use_cassette("GetTeamInfoByTeamID") do
74
+ expect(api).to receive(:get).with("IDOTA2Match_570", "GetTeamInfoByTeamID", remote => random_value) { double.as_null_object }
75
+ teams = api.teams(local => random_value)
84
76
  end
85
77
  end
86
78
  end
@@ -110,6 +102,53 @@ describe Dota do
110
102
  end
111
103
  end
112
104
 
105
+ describe "#teams" do
106
+ context "given an id" do
107
+ it "returns a single team" do
108
+ VCR.use_cassette("GetMatchDetails") do
109
+ match = api.matches(sample_match_id)
110
+ expect(match).to be_a Dota::API::Match
111
+ end
112
+ end
113
+ end
114
+
115
+ context "without args" do
116
+ it "returns match history" do
117
+ VCR.use_cassette("GetMatchHistory") do
118
+ matches = api.matches
119
+ expect(matches.count).to eq 100
120
+ expect(matches.first).to be_a Dota::API::Match
121
+ end
122
+ end
123
+ end
124
+
125
+ context "given a hash" do
126
+ accepted_params = {
127
+ hero_id: :hero_id,
128
+ mode_id: :game_mode,
129
+ skill_level: :skill,
130
+ from: :date_min,
131
+ to: :date_max,
132
+ player_id: :account_id,
133
+ league_id: :league_id,
134
+ after: :start_at_match_id,
135
+ limit: :matches_requested,
136
+ league_only: :tournament_games_only
137
+ }
138
+ accepted_params.each do |local, remote|
139
+
140
+ specify ":#{local} should translate to :#{remote}" do
141
+ random_value = SecureRandom.hex
142
+ VCR.use_cassette("GetMatchHistory") do
143
+ expect(api).to receive(:get).with("IDOTA2Match_570", "GetMatchHistory", remote => random_value) { double.as_null_object }
144
+ matches = api.matches(local => random_value)
145
+ end
146
+ end
147
+ end
148
+ end
149
+ end
150
+
151
+
113
152
  describe "#get" do
114
153
  it "allows custom API requests" do
115
154
  VCR.use_cassette("GetRarities") do
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.steampowered.com/IDOTA2Match_570/GetTeamInfoByTeamID/V001/?key=2FBBA83745F494FAE688AFB8463CD4FC&start_at_team_id=1375614&teams_requested=1
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
+ Expires:
22
+ - Sun, 07 Dec 2014 15:19:16 GMT
23
+ Content-Type:
24
+ - application/json; charset=UTF-8
25
+ Content-Length:
26
+ - '1174'
27
+ Date:
28
+ - Sun, 07 Dec 2014 15:19:16 GMT
29
+ body:
30
+ encoding: UTF-8
31
+ string: "{\n\t\"result\": {\n\t\t\"status\": 1,\n\t\t\"teams\": [\n\t\t\t{\n\t\t\t\t\"team_id\":
32
+ 1375614,\n\t\t\t\t\"name\": \"Newbee\",\n\t\t\t\t\"tag\": \"Newbee\",\n\t\t\t\t\"time_created\":
33
+ 1393518254,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 794064971723724234,\n\t\t\t\t\"logo_sponsor\":
34
+ 532872513435338107,\n\t\t\t\t\"country_code\": \"cn\",\n\t\t\t\t\"url\": \"http://t.qq.com/NBgaming\",\n\t\t\t\t\"games_played_with_current_roster\":
35
+ 0,\n\t\t\t\t\"player_0_account_id\": 88508515,\n\t\t\t\t\"player_1_account_id\":
36
+ 89157606,\n\t\t\t\t\"player_2_account_id\": 89217927,\n\t\t\t\t\"player_3_account_id\":
37
+ 100883708,\n\t\t\t\t\"player_4_account_id\": 123854991,\n\t\t\t\t\"admin_account_id\":
38
+ 104652351,\n\t\t\t\t\"league_id_0\": 177,\n\t\t\t\t\"league_id_1\": 189,\n\t\t\t\t\"league_id_2\":
39
+ 232,\n\t\t\t\t\"league_id_3\": 600,\n\t\t\t\t\"league_id_4\": 1014,\n\t\t\t\t\"league_id_5\":
40
+ 1097,\n\t\t\t\t\"league_id_6\": 1116,\n\t\t\t\t\"league_id_7\": 1157,\n\t\t\t\t\"league_id_8\":
41
+ 1284,\n\t\t\t\t\"league_id_9\": 1350,\n\t\t\t\t\"league_id_10\": 1407,\n\t\t\t\t\"league_id_11\":
42
+ 1418,\n\t\t\t\t\"league_id_12\": 1448,\n\t\t\t\t\"league_id_13\": 1523,\n\t\t\t\t\"league_id_14\":
43
+ 1663,\n\t\t\t\t\"league_id_15\": 1709,\n\t\t\t\t\"league_id_16\": 1761,\n\t\t\t\t\"league_id_17\":
44
+ 1803,\n\t\t\t\t\"league_id_18\": 1886,\n\t\t\t\t\"league_id_19\": 1934,\n\t\t\t\t\"league_id_20\":
45
+ 1936,\n\t\t\t\t\"league_id_21\": 2045,\n\t\t\t\t\"league_id_22\": 2079\n\t\t\t}\n\t\t]\n\t\t\n\t}\n}"
46
+ http_version:
47
+ recorded_at: Sun, 07 Dec 2014 15:19:16 GMT
48
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,888 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.steampowered.com/IDOTA2Match_570/GetTeamInfoByTeamID/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
+ Vary:
24
+ - Accept-Encoding
25
+ Content-Length:
26
+ - '13744'
27
+ Date:
28
+ - Sun, 07 Dec 2014 15:37:05 GMT
29
+ Expires:
30
+ - Mon, 26 Jul 1997 05:00:00 GMT
31
+ Cache-Control:
32
+ - no-cache,must-revalidate
33
+ body:
34
+ encoding: UTF-8
35
+ string: "{\n\t\"result\": {\n\t\t\"status\": 1,\n\t\t\"teams\": [\n\t\t\t{\n\t\t\t\t\"team_id\":
36
+ 2,\n\t\t\t\t\"name\": \"Zenith\",\n\t\t\t\t\"tag\": \"Zenith\",\n\t\t\t\t\"time_created\":
37
+ 1338330222,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 612767741208345582,\n\t\t\t\t\"logo_sponsor\":
38
+ 612767741208349882,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
39
+ 0,\n\t\t\t\t\"player_0_account_id\": 84772440,\n\t\t\t\t\"player_1_account_id\":
40
+ 85417034,\n\t\t\t\t\"admin_account_id\": 84772440,\n\t\t\t\t\"league_id_0\":
41
+ 5,\n\t\t\t\t\"league_id_1\": 7,\n\t\t\t\t\"league_id_2\": 8,\n\t\t\t\t\"league_id_3\":
42
+ 23,\n\t\t\t\t\"league_id_4\": 26,\n\t\t\t\t\"league_id_5\": 34,\n\t\t\t\t\"league_id_6\":
43
+ 38,\n\t\t\t\t\"league_id_7\": 39,\n\t\t\t\t\"league_id_8\": 40,\n\t\t\t\t\"league_id_9\":
44
+ 44,\n\t\t\t\t\"league_id_10\": 54,\n\t\t\t\t\"league_id_11\": 58,\n\t\t\t\t\"league_id_12\":
45
+ 65001,\n\t\t\t\t\"league_id_13\": 65006\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
46
+ 3,\n\t\t\t\t\"name\": \"compLexity Gaming\",\n\t\t\t\t\"tag\": \"coL\",\n\t\t\t\t\"time_created\":
47
+ 1338330535,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 533996689981983341,\n\t\t\t\t\"logo_sponsor\":
48
+ 542940926646147236,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"http://compLexityGaming.com\",\n\t\t\t\t\"games_played_with_current_roster\":
49
+ 0,\n\t\t\t\t\"player_0_account_id\": 28291366,\n\t\t\t\t\"player_1_account_id\":
50
+ 49317728,\n\t\t\t\t\"player_2_account_id\": 44111721,\n\t\t\t\t\"player_3_account_id\":
51
+ 50828662,\n\t\t\t\t\"player_4_account_id\": 38628747,\n\t\t\t\t\"player_5_account_id\":
52
+ 12231202,\n\t\t\t\t\"player_6_account_id\": 59752811,\n\t\t\t\t\"admin_account_id\":
53
+ 28291366,\n\t\t\t\t\"league_id_0\": 4,\n\t\t\t\t\"league_id_1\": 7,\n\t\t\t\t\"league_id_2\":
54
+ 9,\n\t\t\t\t\"league_id_3\": 65001\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
55
+ 5,\n\t\t\t\t\"name\": \"Invictus Gaming\",\n\t\t\t\t\"tag\": \"iG\",\n\t\t\t\t\"time_created\":
56
+ 1338448478,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 79128337325388690,\n\t\t\t\t\"logo_sponsor\":
57
+ 0,\n\t\t\t\t\"country_code\": \"cn\",\n\t\t\t\t\"url\": \"www.facebook.com/InvictusGaming.Official/\",\n\t\t\t\t\"games_played_with_current_roster\":
58
+ 0,\n\t\t\t\t\"player_0_account_id\": 88553213,\n\t\t\t\t\"player_1_account_id\":
59
+ 88585077,\n\t\t\t\t\"player_2_account_id\": 89246836,\n\t\t\t\t\"player_3_account_id\":
60
+ 90031225,\n\t\t\t\t\"player_4_account_id\": 138885864,\n\t\t\t\t\"admin_account_id\":
61
+ 88585077,\n\t\t\t\t\"league_id_0\": 5,\n\t\t\t\t\"league_id_1\": 7,\n\t\t\t\t\"league_id_2\":
62
+ 8,\n\t\t\t\t\"league_id_3\": 17,\n\t\t\t\t\"league_id_4\": 24,\n\t\t\t\t\"league_id_5\":
63
+ 34,\n\t\t\t\t\"league_id_6\": 42,\n\t\t\t\t\"league_id_7\": 52,\n\t\t\t\t\"league_id_8\":
64
+ 54,\n\t\t\t\t\"league_id_9\": 76,\n\t\t\t\t\"league_id_10\": 81,\n\t\t\t\t\"league_id_11\":
65
+ 91,\n\t\t\t\t\"league_id_12\": 104,\n\t\t\t\t\"league_id_13\": 114,\n\t\t\t\t\"league_id_14\":
66
+ 120,\n\t\t\t\t\"league_id_15\": 177,\n\t\t\t\t\"league_id_16\": 189,\n\t\t\t\t\"league_id_17\":
67
+ 232,\n\t\t\t\t\"league_id_18\": 600,\n\t\t\t\t\"league_id_19\": 1014,\n\t\t\t\t\"league_id_20\":
68
+ 1097,\n\t\t\t\t\"league_id_21\": 1116,\n\t\t\t\t\"league_id_22\": 1157,\n\t\t\t\t\"league_id_23\":
69
+ 1245,\n\t\t\t\t\"league_id_24\": 1248,\n\t\t\t\t\"league_id_25\": 1284,\n\t\t\t\t\"league_id_26\":
70
+ 1350,\n\t\t\t\t\"league_id_27\": 1407,\n\t\t\t\t\"league_id_28\": 1418,\n\t\t\t\t\"league_id_29\":
71
+ 1663,\n\t\t\t\t\"league_id_30\": 1709,\n\t\t\t\t\"league_id_31\": 1803,\n\t\t\t\t\"league_id_32\":
72
+ 1869,\n\t\t\t\t\"league_id_33\": 1886,\n\t\t\t\t\"league_id_34\": 1934,\n\t\t\t\t\"league_id_35\":
73
+ 1936,\n\t\t\t\t\"league_id_36\": 2032,\n\t\t\t\t\"league_id_37\": 2045,\n\t\t\t\t\"league_id_38\":
74
+ 2096,\n\t\t\t\t\"league_id_39\": 65001,\n\t\t\t\t\"league_id_40\": 65006,\n\t\t\t\t\"league_id_41\":
75
+ 65008\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 7,\n\t\t\t\t\"name\": \"DK\",\n\t\t\t\t\"tag\":
76
+ \"DK\",\n\t\t\t\t\"time_created\": 1338551060,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\":
77
+ 577870551233852518,\n\t\t\t\t\"logo_sponsor\": 577870551233854595,\n\t\t\t\t\"country_code\":
78
+ \"cn\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
79
+ 0,\n\t\t\t\t\"player_0_account_id\": 108376607,\n\t\t\t\t\"player_1_account_id\":
80
+ 103089999,\n\t\t\t\t\"player_2_account_id\": 114031486,\n\t\t\t\t\"player_3_account_id\":
81
+ 132239985,\n\t\t\t\t\"player_4_account_id\": 92588070,\n\t\t\t\t\"admin_account_id\":
82
+ 92588070,\n\t\t\t\t\"league_id_0\": 5,\n\t\t\t\t\"league_id_1\": 7,\n\t\t\t\t\"league_id_2\":
83
+ 10,\n\t\t\t\t\"league_id_3\": 17,\n\t\t\t\t\"league_id_4\": 24,\n\t\t\t\t\"league_id_5\":
84
+ 26,\n\t\t\t\t\"league_id_6\": 34,\n\t\t\t\t\"league_id_7\": 42,\n\t\t\t\t\"league_id_8\":
85
+ 52,\n\t\t\t\t\"league_id_9\": 54,\n\t\t\t\t\"league_id_10\": 81,\n\t\t\t\t\"league_id_11\":
86
+ 91,\n\t\t\t\t\"league_id_12\": 104,\n\t\t\t\t\"league_id_13\": 110,\n\t\t\t\t\"league_id_14\":
87
+ 114,\n\t\t\t\t\"league_id_15\": 120,\n\t\t\t\t\"league_id_16\": 189,\n\t\t\t\t\"league_id_17\":
88
+ 232,\n\t\t\t\t\"league_id_18\": 600,\n\t\t\t\t\"league_id_19\": 1014,\n\t\t\t\t\"league_id_20\":
89
+ 1097,\n\t\t\t\t\"league_id_21\": 1116,\n\t\t\t\t\"league_id_22\": 1157,\n\t\t\t\t\"league_id_23\":
90
+ 1284,\n\t\t\t\t\"league_id_24\": 1407,\n\t\t\t\t\"league_id_25\": 1418,\n\t\t\t\t\"league_id_26\":
91
+ 65001,\n\t\t\t\t\"league_id_27\": 65006,\n\t\t\t\t\"league_id_28\": 65008,\n\t\t\t\t\"league_id_29\":
92
+ 65013\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 12,\n\t\t\t\t\"name\": \"Ahead.kz\",\n\t\t\t\t\"tag\":
93
+ \"Ahead.kz\",\n\t\t\t\t\"time_created\": 1338723753,\n\t\t\t\t\"rating\":
94
+ \"inactive\",\n\t\t\t\t\"logo\": 903258706267744502,\n\t\t\t\t\"logo_sponsor\":
95
+ 903258706267754055,\n\t\t\t\t\"country_code\": \"kz\",\n\t\t\t\t\"url\": \"http://ahead-gaming.com/\",\n\t\t\t\t\"games_played_with_current_roster\":
96
+ 0,\n\t\t\t\t\"player_0_account_id\": 69325073,\n\t\t\t\t\"player_1_account_id\":
97
+ 89742217,\n\t\t\t\t\"player_2_account_id\": 121841707,\n\t\t\t\t\"admin_account_id\":
98
+ 69325073,\n\t\t\t\t\"league_id_0\": 2,\n\t\t\t\t\"league_id_1\": 4,\n\t\t\t\t\"league_id_2\":
99
+ 6,\n\t\t\t\t\"league_id_3\": 8,\n\t\t\t\t\"league_id_4\": 13,\n\t\t\t\t\"league_id_5\":
100
+ 16,\n\t\t\t\t\"league_id_6\": 18,\n\t\t\t\t\"league_id_7\": 20,\n\t\t\t\t\"league_id_8\":
101
+ 21,\n\t\t\t\t\"league_id_9\": 29,\n\t\t\t\t\"league_id_10\": 32,\n\t\t\t\t\"league_id_11\":
102
+ 46,\n\t\t\t\t\"league_id_12\": 51,\n\t\t\t\t\"league_id_13\": 57,\n\t\t\t\t\"league_id_14\":
103
+ 61,\n\t\t\t\t\"league_id_15\": 64,\n\t\t\t\t\"league_id_16\": 65,\n\t\t\t\t\"league_id_17\":
104
+ 69,\n\t\t\t\t\"league_id_18\": 78,\n\t\t\t\t\"league_id_19\": 99,\n\t\t\t\t\"league_id_20\":
105
+ 108,\n\t\t\t\t\"league_id_21\": 109,\n\t\t\t\t\"league_id_22\": 65003\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
106
+ 15,\n\t\t\t\t\"name\": \"LGD-GAMING\",\n\t\t\t\t\"tag\": \"LGD\",\n\t\t\t\t\"time_created\":
107
+ 1338727837,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 630787216938014761,\n\t\t\t\t\"logo_sponsor\":
108
+ 531745346303722374,\n\t\t\t\t\"country_code\": \"cn\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
109
+ 0,\n\t\t\t\t\"player_0_account_id\": 82327674,\n\t\t\t\t\"player_1_account_id\":
110
+ 89407113,\n\t\t\t\t\"player_2_account_id\": 98878010,\n\t\t\t\t\"player_3_account_id\":
111
+ 108382060,\n\t\t\t\t\"player_4_account_id\": 111291593,\n\t\t\t\t\"admin_account_id\":
112
+ 98878010,\n\t\t\t\t\"league_id_0\": 5,\n\t\t\t\t\"league_id_1\": 7,\n\t\t\t\t\"league_id_2\":
113
+ 14,\n\t\t\t\t\"league_id_3\": 17,\n\t\t\t\t\"league_id_4\": 23,\n\t\t\t\t\"league_id_5\":
114
+ 24,\n\t\t\t\t\"league_id_6\": 34,\n\t\t\t\t\"league_id_7\": 42,\n\t\t\t\t\"league_id_8\":
115
+ 52,\n\t\t\t\t\"league_id_9\": 54,\n\t\t\t\t\"league_id_10\": 68,\n\t\t\t\t\"league_id_11\":
116
+ 76,\n\t\t\t\t\"league_id_12\": 81,\n\t\t\t\t\"league_id_13\": 91,\n\t\t\t\t\"league_id_14\":
117
+ 104,\n\t\t\t\t\"league_id_15\": 114,\n\t\t\t\t\"league_id_16\": 120,\n\t\t\t\t\"league_id_17\":
118
+ 177,\n\t\t\t\t\"league_id_18\": 189,\n\t\t\t\t\"league_id_19\": 232,\n\t\t\t\t\"league_id_20\":
119
+ 600,\n\t\t\t\t\"league_id_21\": 1014,\n\t\t\t\t\"league_id_22\": 1097,\n\t\t\t\t\"league_id_23\":
120
+ 1116,\n\t\t\t\t\"league_id_24\": 1157,\n\t\t\t\t\"league_id_25\": 1245,\n\t\t\t\t\"league_id_26\":
121
+ 1248,\n\t\t\t\t\"league_id_27\": 1284,\n\t\t\t\t\"league_id_28\": 1350,\n\t\t\t\t\"league_id_29\":
122
+ 1407,\n\t\t\t\t\"league_id_30\": 1418,\n\t\t\t\t\"league_id_31\": 1523,\n\t\t\t\t\"league_id_32\":
123
+ 1524,\n\t\t\t\t\"league_id_33\": 1663,\n\t\t\t\t\"league_id_34\": 1709,\n\t\t\t\t\"league_id_35\":
124
+ 1761,\n\t\t\t\t\"league_id_36\": 1803,\n\t\t\t\t\"league_id_37\": 1869,\n\t\t\t\t\"league_id_38\":
125
+ 1886,\n\t\t\t\t\"league_id_39\": 1934,\n\t\t\t\t\"league_id_40\": 1936,\n\t\t\t\t\"league_id_41\":
126
+ 2032,\n\t\t\t\t\"league_id_42\": 2045,\n\t\t\t\t\"league_id_43\": 2096,\n\t\t\t\t\"league_id_44\":
127
+ 2158,\n\t\t\t\t\"league_id_45\": 65001,\n\t\t\t\t\"league_id_46\": 65004,\n\t\t\t\t\"league_id_47\":
128
+ 65006,\n\t\t\t\t\"league_id_48\": 65008\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
129
+ 20,\n\t\t\t\t\"name\": \"TongFu|\",\n\t\t\t\t\"tag\": \"TongFu\",\n\t\t\t\t\"time_created\":
130
+ 1338733268,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 613896720944358650,\n\t\t\t\t\"logo_sponsor\":
131
+ 613896720944362592,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"http://t.qq.com/tongfu_2011\",\n\t\t\t\t\"games_played_with_current_roster\":
132
+ 1,\n\t\t\t\t\"player_0_account_id\": 88521435,\n\t\t\t\t\"player_1_account_id\":
133
+ 117281554,\n\t\t\t\t\"player_2_account_id\": 136186119,\n\t\t\t\t\"player_3_account_id\":
134
+ 137925613,\n\t\t\t\t\"player_4_account_id\": 157475523,\n\t\t\t\t\"admin_account_id\":
135
+ 117281554,\n\t\t\t\t\"league_id_0\": 3,\n\t\t\t\t\"league_id_1\": 5,\n\t\t\t\t\"league_id_2\":
136
+ 7,\n\t\t\t\t\"league_id_3\": 10,\n\t\t\t\t\"league_id_4\": 17,\n\t\t\t\t\"league_id_5\":
137
+ 24,\n\t\t\t\t\"league_id_6\": 34,\n\t\t\t\t\"league_id_7\": 38,\n\t\t\t\t\"league_id_8\":
138
+ 40,\n\t\t\t\t\"league_id_9\": 42,\n\t\t\t\t\"league_id_10\": 44,\n\t\t\t\t\"league_id_11\":
139
+ 52,\n\t\t\t\t\"league_id_12\": 54,\n\t\t\t\t\"league_id_13\": 76,\n\t\t\t\t\"league_id_14\":
140
+ 81,\n\t\t\t\t\"league_id_15\": 91,\n\t\t\t\t\"league_id_16\": 104,\n\t\t\t\t\"league_id_17\":
141
+ 114,\n\t\t\t\t\"league_id_18\": 120,\n\t\t\t\t\"league_id_19\": 600,\n\t\t\t\t\"league_id_20\":
142
+ 1014,\n\t\t\t\t\"league_id_21\": 1097,\n\t\t\t\t\"league_id_22\": 1116,\n\t\t\t\t\"league_id_23\":
143
+ 1157,\n\t\t\t\t\"league_id_24\": 1284,\n\t\t\t\t\"league_id_25\": 1407,\n\t\t\t\t\"league_id_26\":
144
+ 1524,\n\t\t\t\t\"league_id_27\": 1542,\n\t\t\t\t\"league_id_28\": 65001,\n\t\t\t\t\"league_id_29\":
145
+ 65006,\n\t\t\t\t\"league_id_30\": 65008\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
146
+ 22,\n\t\t\t\t\"name\": \"Counter Logic Gaming\",\n\t\t\t\t\"tag\": \"CLG\",\n\t\t\t\t\"time_created\":
147
+ 1338738070,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 560943464330050085,\n\t\t\t\t\"logo_sponsor\":
148
+ 0,\n\t\t\t\t\"country_code\": \"ae\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
149
+ 0,\n\t\t\t\t\"player_0_account_id\": 51068005,\n\t\t\t\t\"admin_account_id\":
150
+ 51068005,\n\t\t\t\t\"league_id_0\": 4,\n\t\t\t\t\"league_id_1\": 6,\n\t\t\t\t\"league_id_2\":
151
+ 7,\n\t\t\t\t\"league_id_3\": 8,\n\t\t\t\t\"league_id_4\": 12,\n\t\t\t\t\"league_id_5\":
152
+ 13,\n\t\t\t\t\"league_id_6\": 65001\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
153
+ 24,\n\t\t\t\t\"name\": \"MiTH-Trust\",\n\t\t\t\t\"tag\": \"MiTH\",\n\t\t\t\t\"time_created\":
154
+ 1338741327,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 884111088312994582,\n\t\t\t\t\"logo_sponsor\":
155
+ 884111088313003174,\n\t\t\t\t\"country_code\": \"th\",\n\t\t\t\t\"url\": \"http://mithesports.com/\",\n\t\t\t\t\"games_played_with_current_roster\":
156
+ 0,\n\t\t\t\t\"player_0_account_id\": 91191397,\n\t\t\t\t\"player_1_account_id\":
157
+ 101208242,\n\t\t\t\t\"player_2_account_id\": 101460882,\n\t\t\t\t\"player_3_account_id\":
158
+ 85485252,\n\t\t\t\t\"admin_account_id\": 91191397,\n\t\t\t\t\"league_id_0\":
159
+ 3,\n\t\t\t\t\"league_id_1\": 5,\n\t\t\t\t\"league_id_2\": 14,\n\t\t\t\t\"league_id_3\":
160
+ 23,\n\t\t\t\t\"league_id_4\": 26,\n\t\t\t\t\"league_id_5\": 30,\n\t\t\t\t\"league_id_6\":
161
+ 34,\n\t\t\t\t\"league_id_7\": 38,\n\t\t\t\t\"league_id_8\": 39,\n\t\t\t\t\"league_id_9\":
162
+ 40,\n\t\t\t\t\"league_id_10\": 44,\n\t\t\t\t\"league_id_11\": 58,\n\t\t\t\t\"league_id_12\":
163
+ 59,\n\t\t\t\t\"league_id_13\": 64,\n\t\t\t\t\"league_id_14\": 68,\n\t\t\t\t\"league_id_15\":
164
+ 98,\n\t\t\t\t\"league_id_16\": 131,\n\t\t\t\t\"league_id_17\": 135,\n\t\t\t\t\"league_id_18\":
165
+ 136,\n\t\t\t\t\"league_id_19\": 146,\n\t\t\t\t\"league_id_20\": 174,\n\t\t\t\t\"league_id_21\":
166
+ 177,\n\t\t\t\t\"league_id_22\": 181,\n\t\t\t\t\"league_id_23\": 191,\n\t\t\t\t\"league_id_24\":
167
+ 201,\n\t\t\t\t\"league_id_25\": 210,\n\t\t\t\t\"league_id_26\": 513,\n\t\t\t\t\"league_id_27\":
168
+ 600,\n\t\t\t\t\"league_id_28\": 1088,\n\t\t\t\t\"league_id_29\": 1124,\n\t\t\t\t\"league_id_30\":
169
+ 1175,\n\t\t\t\t\"league_id_31\": 1229,\n\t\t\t\t\"league_id_32\": 1244,\n\t\t\t\t\"league_id_33\":
170
+ 1248,\n\t\t\t\t\"league_id_34\": 1264,\n\t\t\t\t\"league_id_35\": 1301,\n\t\t\t\t\"league_id_36\":
171
+ 1400,\n\t\t\t\t\"league_id_37\": 1407,\n\t\t\t\t\"league_id_38\": 1423,\n\t\t\t\t\"league_id_39\":
172
+ 1432,\n\t\t\t\t\"league_id_40\": 65004\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
173
+ 26,\n\t\t\t\t\"name\": \"mousesports\",\n\t\t\t\t\"tag\": \"mouz\",\n\t\t\t\t\"time_created\":
174
+ 1338745325,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 612798804465920303,\n\t\t\t\t\"logo_sponsor\":
175
+ 612798804465924361,\n\t\t\t\t\"country_code\": \"de\",\n\t\t\t\t\"url\": \"http://www.mousesports.com/\",\n\t\t\t\t\"games_played_with_current_roster\":
176
+ 0,\n\t\t\t\t\"player_0_account_id\": 31078647,\n\t\t\t\t\"admin_account_id\":
177
+ 11562,\n\t\t\t\t\"league_id_0\": 2,\n\t\t\t\t\"league_id_1\": 4,\n\t\t\t\t\"league_id_2\":
178
+ 6,\n\t\t\t\t\"league_id_3\": 7,\n\t\t\t\t\"league_id_4\": 8,\n\t\t\t\t\"league_id_5\":
179
+ 12,\n\t\t\t\t\"league_id_6\": 13,\n\t\t\t\t\"league_id_7\": 16,\n\t\t\t\t\"league_id_8\":
180
+ 21,\n\t\t\t\t\"league_id_9\": 22,\n\t\t\t\t\"league_id_10\": 27,\n\t\t\t\t\"league_id_11\":
181
+ 28,\n\t\t\t\t\"league_id_12\": 29,\n\t\t\t\t\"league_id_13\": 32,\n\t\t\t\t\"league_id_14\":
182
+ 33,\n\t\t\t\t\"league_id_15\": 34,\n\t\t\t\t\"league_id_16\": 37,\n\t\t\t\t\"league_id_17\":
183
+ 41,\n\t\t\t\t\"league_id_18\": 45,\n\t\t\t\t\"league_id_19\": 46,\n\t\t\t\t\"league_id_20\":
184
+ 47,\n\t\t\t\t\"league_id_21\": 48,\n\t\t\t\t\"league_id_22\": 51,\n\t\t\t\t\"league_id_23\":
185
+ 53,\n\t\t\t\t\"league_id_24\": 57,\n\t\t\t\t\"league_id_25\": 70,\n\t\t\t\t\"league_id_26\":
186
+ 78,\n\t\t\t\t\"league_id_27\": 97,\n\t\t\t\t\"league_id_28\": 99,\n\t\t\t\t\"league_id_29\":
187
+ 103,\n\t\t\t\t\"league_id_30\": 104,\n\t\t\t\t\"league_id_31\": 108,\n\t\t\t\t\"league_id_32\":
188
+ 109,\n\t\t\t\t\"league_id_33\": 124,\n\t\t\t\t\"league_id_34\": 223,\n\t\t\t\t\"league_id_35\":
189
+ 600,\n\t\t\t\t\"league_id_36\": 1100,\n\t\t\t\t\"league_id_37\": 1157,\n\t\t\t\t\"league_id_38\":
190
+ 1244,\n\t\t\t\t\"league_id_39\": 1248,\n\t\t\t\t\"league_id_40\": 1350,\n\t\t\t\t\"league_id_41\":
191
+ 1667,\n\t\t\t\t\"league_id_42\": 65001,\n\t\t\t\t\"league_id_43\": 65005,\n\t\t\t\t\"league_id_44\":
192
+ 65006\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 29,\n\t\t\t\t\"name\": \"Team
193
+ Quantic\",\n\t\t\t\t\"tag\": \"Quantic\",\n\t\t\t\t\"time_created\": 1338750618,\n\t\t\t\t\"rating\":
194
+ \"inactive\",\n\t\t\t\t\"logo\": 594720461538684519,\n\t\t\t\t\"logo_sponsor\":
195
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
196
+ 0,\n\t\t\t\t\"player_0_account_id\": 66254722,\n\t\t\t\t\"admin_account_id\":
197
+ 66254722,\n\t\t\t\t\"league_id_0\": 2,\n\t\t\t\t\"league_id_1\": 4,\n\t\t\t\t\"league_id_2\":
198
+ 8,\n\t\t\t\t\"league_id_3\": 9,\n\t\t\t\t\"league_id_4\": 12,\n\t\t\t\t\"league_id_5\":
199
+ 13,\n\t\t\t\t\"league_id_6\": 15\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
200
+ 35,\n\t\t\t\t\"name\": \"ICE`\",\n\t\t\t\t\"tag\": \"ICE`\",\n\t\t\t\t\"time_created\":
201
+ 1338833459,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 540677266058450004,\n\t\t\t\t\"logo_sponsor\":
202
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
203
+ 0,\n\t\t\t\t\"player_0_account_id\": 29053724,\n\t\t\t\t\"player_1_account_id\":
204
+ 90190111,\n\t\t\t\t\"player_2_account_id\": 95284076,\n\t\t\t\t\"player_3_account_id\":
205
+ 95419831,\n\t\t\t\t\"player_4_account_id\": 100737768,\n\t\t\t\t\"admin_account_id\":
206
+ 94531730,\n\t\t\t\t\"league_id_0\": 3\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
207
+ 36,\n\t\t\t\t\"name\": \"Natus Vincere\",\n\t\t\t\t\"tag\": \"Na`Vi\",\n\t\t\t\t\"time_created\":
208
+ 1338843412,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 920110421043409228,\n\t\t\t\t\"logo_sponsor\":
209
+ 0,\n\t\t\t\t\"country_code\": \"ua\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
210
+ 0,\n\t\t\t\t\"player_0_account_id\": 70388657,\n\t\t\t\t\"player_1_account_id\":
211
+ 86723143,\n\t\t\t\t\"player_2_account_id\": 89625472,\n\t\t\t\t\"player_3_account_id\":
212
+ 94049589,\n\t\t\t\t\"player_4_account_id\": 11550182,\n\t\t\t\t\"player_5_account_id\":
213
+ 89137399,\n\t\t\t\t\"admin_account_id\": 70388657,\n\t\t\t\t\"league_id_0\":
214
+ 4,\n\t\t\t\t\"league_id_1\": 6,\n\t\t\t\t\"league_id_2\": 8,\n\t\t\t\t\"league_id_3\":
215
+ 13,\n\t\t\t\t\"league_id_4\": 16,\n\t\t\t\t\"league_id_5\": 18,\n\t\t\t\t\"league_id_6\":
216
+ 20,\n\t\t\t\t\"league_id_7\": 21,\n\t\t\t\t\"league_id_8\": 22,\n\t\t\t\t\"league_id_9\":
217
+ 28,\n\t\t\t\t\"league_id_10\": 29,\n\t\t\t\t\"league_id_11\": 32,\n\t\t\t\t\"league_id_12\":
218
+ 34,\n\t\t\t\t\"league_id_13\": 41,\n\t\t\t\t\"league_id_14\": 46,\n\t\t\t\t\"league_id_15\":
219
+ 48,\n\t\t\t\t\"league_id_16\": 51,\n\t\t\t\t\"league_id_17\": 53,\n\t\t\t\t\"league_id_18\":
220
+ 54,\n\t\t\t\t\"league_id_19\": 69,\n\t\t\t\t\"league_id_20\": 70,\n\t\t\t\t\"league_id_21\":
221
+ 78,\n\t\t\t\t\"league_id_22\": 103,\n\t\t\t\t\"league_id_23\": 104,\n\t\t\t\t\"league_id_24\":
222
+ 106,\n\t\t\t\t\"league_id_25\": 108,\n\t\t\t\t\"league_id_26\": 112,\n\t\t\t\t\"league_id_27\":
223
+ 124,\n\t\t\t\t\"league_id_28\": 184,\n\t\t\t\t\"league_id_29\": 196,\n\t\t\t\t\"league_id_30\":
224
+ 203,\n\t\t\t\t\"league_id_31\": 223,\n\t\t\t\t\"league_id_32\": 232,\n\t\t\t\t\"league_id_33\":
225
+ 600,\n\t\t\t\t\"league_id_34\": 1068,\n\t\t\t\t\"league_id_35\": 1135,\n\t\t\t\t\"league_id_36\":
226
+ 1157,\n\t\t\t\t\"league_id_37\": 1248,\n\t\t\t\t\"league_id_38\": 65001,\n\t\t\t\t\"league_id_39\":
227
+ 65002,\n\t\t\t\t\"league_id_40\": 65006,\n\t\t\t\t\"league_id_41\": 65013\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
228
+ 39,\n\t\t\t\t\"name\": \"Evil Geniuses\",\n\t\t\t\t\"tag\": \"EG\",\n\t\t\t\t\"time_created\":
229
+ 1338981400,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 538504547711268281,\n\t\t\t\t\"logo_sponsor\":
230
+ 538504547711272115,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"www.myeg.net\",\n\t\t\t\t\"games_played_with_current_roster\":
231
+ 0,\n\t\t\t\t\"player_0_account_id\": 73562326,\n\t\t\t\t\"player_1_account_id\":
232
+ 86727555,\n\t\t\t\t\"player_2_account_id\": 86745912,\n\t\t\t\t\"player_3_account_id\":
233
+ 87276347,\n\t\t\t\t\"player_4_account_id\": 87177591,\n\t\t\t\t\"player_5_account_id\":
234
+ 110880087,\n\t\t\t\t\"admin_account_id\": 82984073,\n\t\t\t\t\"league_id_0\":
235
+ 4,\n\t\t\t\t\"league_id_1\": 6,\n\t\t\t\t\"league_id_2\": 7,\n\t\t\t\t\"league_id_3\":
236
+ 9,\n\t\t\t\t\"league_id_4\": 11,\n\t\t\t\t\"league_id_5\": 12,\n\t\t\t\t\"league_id_6\":
237
+ 13,\n\t\t\t\t\"league_id_7\": 17,\n\t\t\t\t\"league_id_8\": 21,\n\t\t\t\t\"league_id_9\":
238
+ 22,\n\t\t\t\t\"league_id_10\": 25,\n\t\t\t\t\"league_id_11\": 32,\n\t\t\t\t\"league_id_12\":
239
+ 34,\n\t\t\t\t\"league_id_13\": 41,\n\t\t\t\t\"league_id_14\": 45,\n\t\t\t\t\"league_id_15\":
240
+ 47,\n\t\t\t\t\"league_id_16\": 48,\n\t\t\t\t\"league_id_17\": 50,\n\t\t\t\t\"league_id_18\":
241
+ 51,\n\t\t\t\t\"league_id_19\": 53,\n\t\t\t\t\"league_id_20\": 57,\n\t\t\t\t\"league_id_21\":
242
+ 61,\n\t\t\t\t\"league_id_22\": 70,\n\t\t\t\t\"league_id_23\": 74,\n\t\t\t\t\"league_id_24\":
243
+ 78,\n\t\t\t\t\"league_id_25\": 92,\n\t\t\t\t\"league_id_26\": 97,\n\t\t\t\t\"league_id_27\":
244
+ 103,\n\t\t\t\t\"league_id_28\": 104,\n\t\t\t\t\"league_id_29\": 109,\n\t\t\t\t\"league_id_30\":
245
+ 112,\n\t\t\t\t\"league_id_31\": 114,\n\t\t\t\t\"league_id_32\": 176,\n\t\t\t\t\"league_id_33\":
246
+ 181,\n\t\t\t\t\"league_id_34\": 184,\n\t\t\t\t\"league_id_35\": 223,\n\t\t\t\t\"league_id_36\":
247
+ 232,\n\t\t\t\t\"league_id_37\": 235,\n\t\t\t\t\"league_id_38\": 600,\n\t\t\t\t\"league_id_39\":
248
+ 1068,\n\t\t\t\t\"league_id_40\": 1135,\n\t\t\t\t\"league_id_41\": 1157,\n\t\t\t\t\"league_id_42\":
249
+ 1248,\n\t\t\t\t\"league_id_43\": 1262,\n\t\t\t\t\"league_id_44\": 1667,\n\t\t\t\t\"league_id_45\":
250
+ 65001,\n\t\t\t\t\"league_id_46\": 65002,\n\t\t\t\t\"league_id_47\": 65005,\n\t\t\t\t\"league_id_48\":
251
+ 65013\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 40,\n\t\t\t\t\"name\": \"Virtus.Pro\",\n\t\t\t\t\"tag\":
252
+ \"VP\",\n\t\t\t\t\"time_created\": 1338981437,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\":
253
+ 30720726073720342,\n\t\t\t\t\"logo_sponsor\": 30720726073830325,\n\t\t\t\t\"country_code\":
254
+ \"ru\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
255
+ 0,\n\t\t\t\t\"player_0_account_id\": 36547811,\n\t\t\t\t\"player_1_account_id\":
256
+ 87586992,\n\t\t\t\t\"player_2_account_id\": 53178236,\n\t\t\t\t\"player_3_account_id\":
257
+ 96196828,\n\t\t\t\t\"player_4_account_id\": 76600360,\n\t\t\t\t\"admin_account_id\":
258
+ 36547811,\n\t\t\t\t\"league_id_0\": 2,\n\t\t\t\t\"league_id_1\": 13,\n\t\t\t\t\"league_id_2\":
259
+ 15,\n\t\t\t\t\"league_id_3\": 20,\n\t\t\t\t\"league_id_4\": 21,\n\t\t\t\t\"league_id_5\":
260
+ 22,\n\t\t\t\t\"league_id_6\": 27,\n\t\t\t\t\"league_id_7\": 28,\n\t\t\t\t\"league_id_8\":
261
+ 29,\n\t\t\t\t\"league_id_9\": 33,\n\t\t\t\t\"league_id_10\": 34,\n\t\t\t\t\"league_id_11\":
262
+ 45,\n\t\t\t\t\"league_id_12\": 46,\n\t\t\t\t\"league_id_13\": 48,\n\t\t\t\t\"league_id_14\":
263
+ 51,\n\t\t\t\t\"league_id_15\": 53,\n\t\t\t\t\"league_id_16\": 57,\n\t\t\t\t\"league_id_17\":
264
+ 61,\n\t\t\t\t\"league_id_18\": 69,\n\t\t\t\t\"league_id_19\": 70,\n\t\t\t\t\"league_id_20\":
265
+ 78,\n\t\t\t\t\"league_id_21\": 97,\n\t\t\t\t\"league_id_22\": 103,\n\t\t\t\t\"league_id_23\":
266
+ 104,\n\t\t\t\t\"league_id_24\": 106,\n\t\t\t\t\"league_id_25\": 108,\n\t\t\t\t\"league_id_26\":
267
+ 109,\n\t\t\t\t\"league_id_27\": 110,\n\t\t\t\t\"league_id_28\": 112,\n\t\t\t\t\"league_id_29\":
268
+ 124,\n\t\t\t\t\"league_id_30\": 166,\n\t\t\t\t\"league_id_31\": 176,\n\t\t\t\t\"league_id_32\":
269
+ 181,\n\t\t\t\t\"league_id_33\": 184,\n\t\t\t\t\"league_id_34\": 196,\n\t\t\t\t\"league_id_35\":
270
+ 223,\n\t\t\t\t\"league_id_36\": 232,\n\t\t\t\t\"league_id_37\": 600,\n\t\t\t\t\"league_id_38\":
271
+ 1003,\n\t\t\t\t\"league_id_39\": 1068,\n\t\t\t\t\"league_id_40\": 1118,\n\t\t\t\t\"league_id_41\":
272
+ 1157,\n\t\t\t\t\"league_id_42\": 1175,\n\t\t\t\t\"league_id_43\": 1362,\n\t\t\t\t\"league_id_44\":
273
+ 65006\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 41,\n\t\t\t\t\"name\": \"4
274
+ Friends + Chrillee\",\n\t\t\t\t\"tag\": \"4FC\",\n\t\t\t\t\"time_created\":
275
+ 1339019028,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 596987480020856414,\n\t\t\t\t\"logo_sponsor\":
276
+ 596987480020863196,\n\t\t\t\t\"country_code\": \"se\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
277
+ 0,\n\t\t\t\t\"player_0_account_id\": 27738470,\n\t\t\t\t\"player_1_account_id\":
278
+ 57835748,\n\t\t\t\t\"player_2_account_id\": 81150290,\n\t\t\t\t\"player_3_account_id\":
279
+ 86664345,\n\t\t\t\t\"player_4_account_id\": 102732874,\n\t\t\t\t\"admin_account_id\":
280
+ 27738470,\n\t\t\t\t\"league_id_0\": 4,\n\t\t\t\t\"league_id_1\": 20,\n\t\t\t\t\"league_id_2\":
281
+ 21,\n\t\t\t\t\"league_id_3\": 28,\n\t\t\t\t\"league_id_4\": 29,\n\t\t\t\t\"league_id_5\":
282
+ 32,\n\t\t\t\t\"league_id_6\": 37,\n\t\t\t\t\"league_id_7\": 46,\n\t\t\t\t\"league_id_8\":
283
+ 47,\n\t\t\t\t\"league_id_9\": 51,\n\t\t\t\t\"league_id_10\": 53,\n\t\t\t\t\"league_id_11\":
284
+ 57,\n\t\t\t\t\"league_id_12\": 61,\n\t\t\t\t\"league_id_13\": 64,\n\t\t\t\t\"league_id_14\":
285
+ 69,\n\t\t\t\t\"league_id_15\": 70,\n\t\t\t\t\"league_id_16\": 78,\n\t\t\t\t\"league_id_17\":
286
+ 99,\n\t\t\t\t\"league_id_18\": 108,\n\t\t\t\t\"league_id_19\": 109,\n\t\t\t\t\"league_id_20\":
287
+ 124,\n\t\t\t\t\"league_id_21\": 180,\n\t\t\t\t\"league_id_22\": 181,\n\t\t\t\t\"league_id_23\":
288
+ 1070,\n\t\t\t\t\"league_id_24\": 1127,\n\t\t\t\t\"league_id_25\": 1175,\n\t\t\t\t\"league_id_26\":
289
+ 1350,\n\t\t\t\t\"league_id_27\": 1640,\n\t\t\t\t\"league_id_28\": 1755,\n\t\t\t\t\"league_id_29\":
290
+ 65002\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 46,\n\t\t\t\t\"name\": \"Team
291
+ Empire\",\n\t\t\t\t\"tag\": \"Empire\",\n\t\t\t\t\"time_created\": 1340178158,\n\t\t\t\t\"rating\":
292
+ \"inactive\",\n\t\t\t\t\"logo\": 721995326557136212,\n\t\t\t\t\"logo_sponsor\":
293
+ 26221462402529621,\n\t\t\t\t\"country_code\": \"ru\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
294
+ 2,\n\t\t\t\t\"player_0_account_id\": 86725175,\n\t\t\t\t\"player_1_account_id\":
295
+ 86802844,\n\t\t\t\t\"player_2_account_id\": 89269794,\n\t\t\t\t\"player_3_account_id\":
296
+ 91064780,\n\t\t\t\t\"player_4_account_id\": 112250781,\n\t\t\t\t\"player_5_account_id\":
297
+ 134556694,\n\t\t\t\t\"admin_account_id\": 89269794,\n\t\t\t\t\"league_id_0\":
298
+ 4,\n\t\t\t\t\"league_id_1\": 6,\n\t\t\t\t\"league_id_2\": 12,\n\t\t\t\t\"league_id_3\":
299
+ 13,\n\t\t\t\t\"league_id_4\": 15,\n\t\t\t\t\"league_id_5\": 16,\n\t\t\t\t\"league_id_6\":
300
+ 18,\n\t\t\t\t\"league_id_7\": 20,\n\t\t\t\t\"league_id_8\": 21,\n\t\t\t\t\"league_id_9\":
301
+ 22,\n\t\t\t\t\"league_id_10\": 27,\n\t\t\t\t\"league_id_11\": 28,\n\t\t\t\t\"league_id_12\":
302
+ 29,\n\t\t\t\t\"league_id_13\": 32,\n\t\t\t\t\"league_id_14\": 33,\n\t\t\t\t\"league_id_15\":
303
+ 34,\n\t\t\t\t\"league_id_16\": 37,\n\t\t\t\t\"league_id_17\": 41,\n\t\t\t\t\"league_id_18\":
304
+ 46,\n\t\t\t\t\"league_id_19\": 51,\n\t\t\t\t\"league_id_20\": 57,\n\t\t\t\t\"league_id_21\":
305
+ 61,\n\t\t\t\t\"league_id_22\": 65,\n\t\t\t\t\"league_id_23\": 69,\n\t\t\t\t\"league_id_24\":
306
+ 70,\n\t\t\t\t\"league_id_25\": 78,\n\t\t\t\t\"league_id_26\": 97,\n\t\t\t\t\"league_id_27\":
307
+ 103,\n\t\t\t\t\"league_id_28\": 108,\n\t\t\t\t\"league_id_29\": 124,\n\t\t\t\t\"league_id_30\":
308
+ 161,\n\t\t\t\t\"league_id_31\": 166,\n\t\t\t\t\"league_id_32\": 167,\n\t\t\t\t\"league_id_33\":
309
+ 181,\n\t\t\t\t\"league_id_34\": 184,\n\t\t\t\t\"league_id_35\": 188,\n\t\t\t\t\"league_id_36\":
310
+ 196,\n\t\t\t\t\"league_id_37\": 223,\n\t\t\t\t\"league_id_38\": 232,\n\t\t\t\t\"league_id_39\":
311
+ 600,\n\t\t\t\t\"league_id_40\": 1003,\n\t\t\t\t\"league_id_41\": 1014,\n\t\t\t\t\"league_id_42\":
312
+ 1068,\n\t\t\t\t\"league_id_43\": 1118,\n\t\t\t\t\"league_id_44\": 1127,\n\t\t\t\t\"league_id_45\":
313
+ 1135,\n\t\t\t\t\"league_id_46\": 1244,\n\t\t\t\t\"league_id_47\": 1248,\n\t\t\t\t\"league_id_48\":
314
+ 1350,\n\t\t\t\t\"league_id_49\": 1712,\n\t\t\t\t\"league_id_50\": 1761,\n\t\t\t\t\"league_id_51\":
315
+ 1803,\n\t\t\t\t\"league_id_52\": 1886,\n\t\t\t\t\"league_id_53\": 1887,\n\t\t\t\t\"league_id_54\":
316
+ 1934,\n\t\t\t\t\"league_id_55\": 1936,\n\t\t\t\t\"league_id_56\": 1942,\n\t\t\t\t\"league_id_57\":
317
+ 2096,\n\t\t\t\t\"league_id_58\": 2158,\n\t\t\t\t\"league_id_59\": 65002,\n\t\t\t\t\"league_id_60\":
318
+ 65005\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 51,\n\t\t\t\t\"name\": \"We
319
+ haz Asian\",\n\t\t\t\t\"tag\": \"WhA\",\n\t\t\t\t\"time_created\": 1340539048,\n\t\t\t\t\"rating\":
320
+ \"inactive\",\n\t\t\t\t\"logo\": 596987479973141342,\n\t\t\t\t\"logo_sponsor\":
321
+ 596987479973143579,\n\t\t\t\t\"country_code\": \"de\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
322
+ 0,\n\t\t\t\t\"player_0_account_id\": 1162243,\n\t\t\t\t\"player_1_account_id\":
323
+ 16761380,\n\t\t\t\t\"player_2_account_id\": 17541236,\n\t\t\t\t\"player_3_account_id\":
324
+ 19811260,\n\t\t\t\t\"player_4_account_id\": 22484883,\n\t\t\t\t\"admin_account_id\":
325
+ 17541236,\n\t\t\t\t\"league_id_0\": 4,\n\t\t\t\t\"league_id_1\": 12,\n\t\t\t\t\"league_id_2\":
326
+ 13,\n\t\t\t\t\"league_id_3\": 20,\n\t\t\t\t\"league_id_4\": 21,\n\t\t\t\t\"league_id_5\":
327
+ 65002\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 54,\n\t\t\t\t\"name\": \"Storm
328
+ Games Clan\",\n\t\t\t\t\"tag\": \"SGC\",\n\t\t\t\t\"time_created\": 1340659645,\n\t\t\t\t\"rating\":
329
+ \"inactive\",\n\t\t\t\t\"logo\": 542930855896114848,\n\t\t\t\t\"logo_sponsor\":
330
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
331
+ 0,\n\t\t\t\t\"player_0_account_id\": 7932121,\n\t\t\t\t\"admin_account_id\":
332
+ 7932121,\n\t\t\t\t\"league_id_0\": 4,\n\t\t\t\t\"league_id_1\": 8\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
333
+ 55,\n\t\t\t\t\"name\": \"PowerRangers\",\n\t\t\t\t\"tag\": \"PR\",\n\t\t\t\t\"time_created\":
334
+ 1340895741,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 882991962433471691,\n\t\t\t\t\"logo_sponsor\":
335
+ 882991962431766958,\n\t\t\t\t\"country_code\": \"by\",\n\t\t\t\t\"url\": \"esfxtv.com\",\n\t\t\t\t\"games_played_with_current_roster\":
336
+ 0,\n\t\t\t\t\"player_0_account_id\": 75750590,\n\t\t\t\t\"player_1_account_id\":
337
+ 86870856,\n\t\t\t\t\"player_2_account_id\": 123787524,\n\t\t\t\t\"player_3_account_id\":
338
+ 149591474,\n\t\t\t\t\"player_4_account_id\": 117421467,\n\t\t\t\t\"admin_account_id\":
339
+ 86870856,\n\t\t\t\t\"league_id_0\": 4,\n\t\t\t\t\"league_id_1\": 20,\n\t\t\t\t\"league_id_2\":
340
+ 29,\n\t\t\t\t\"league_id_3\": 46,\n\t\t\t\t\"league_id_4\": 61,\n\t\t\t\t\"league_id_5\":
341
+ 69,\n\t\t\t\t\"league_id_6\": 70,\n\t\t\t\t\"league_id_7\": 99,\n\t\t\t\t\"league_id_8\":
342
+ 103,\n\t\t\t\t\"league_id_9\": 106,\n\t\t\t\t\"league_id_10\": 108,\n\t\t\t\t\"league_id_11\":
343
+ 109,\n\t\t\t\t\"league_id_12\": 123,\n\t\t\t\t\"league_id_13\": 124,\n\t\t\t\t\"league_id_14\":
344
+ 142,\n\t\t\t\t\"league_id_15\": 160,\n\t\t\t\t\"league_id_16\": 161,\n\t\t\t\t\"league_id_17\":
345
+ 166,\n\t\t\t\t\"league_id_18\": 176,\n\t\t\t\t\"league_id_19\": 180,\n\t\t\t\t\"league_id_20\":
346
+ 181,\n\t\t\t\t\"league_id_21\": 184,\n\t\t\t\t\"league_id_22\": 188,\n\t\t\t\t\"league_id_23\":
347
+ 190,\n\t\t\t\t\"league_id_24\": 196,\n\t\t\t\t\"league_id_25\": 202,\n\t\t\t\t\"league_id_26\":
348
+ 232,\n\t\t\t\t\"league_id_27\": 236,\n\t\t\t\t\"league_id_28\": 502,\n\t\t\t\t\"league_id_29\":
349
+ 600,\n\t\t\t\t\"league_id_30\": 1003,\n\t\t\t\t\"league_id_31\": 1040,\n\t\t\t\t\"league_id_32\":
350
+ 1068,\n\t\t\t\t\"league_id_33\": 1069,\n\t\t\t\t\"league_id_34\": 1127,\n\t\t\t\t\"league_id_35\":
351
+ 1157,\n\t\t\t\t\"league_id_36\": 1175,\n\t\t\t\t\"league_id_37\": 1248,\n\t\t\t\t\"league_id_38\":
352
+ 1270,\n\t\t\t\t\"league_id_39\": 1296,\n\t\t\t\t\"league_id_40\": 1350,\n\t\t\t\t\"league_id_41\":
353
+ 1362\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 59,\n\t\t\t\t\"name\": \"Kaipi\",\n\t\t\t\t\"tag\":
354
+ \"KP\",\n\t\t\t\t\"time_created\": 1341929840,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\":
355
+ 1137416147448948067,\n\t\t\t\t\"logo_sponsor\": 0,\n\t\t\t\t\"country_code\":
356
+ \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
357
+ 0,\n\t\t\t\t\"player_0_account_id\": 6922000,\n\t\t\t\t\"player_1_account_id\":
358
+ 43276219,\n\t\t\t\t\"player_2_account_id\": 88719902,\n\t\t\t\t\"admin_account_id\":
359
+ 6922000,\n\t\t\t\t\"league_id_0\": 16,\n\t\t\t\t\"league_id_1\": 20,\n\t\t\t\t\"league_id_2\":
360
+ 21,\n\t\t\t\t\"league_id_3\": 27,\n\t\t\t\t\"league_id_4\": 28,\n\t\t\t\t\"league_id_5\":
361
+ 29,\n\t\t\t\t\"league_id_6\": 32,\n\t\t\t\t\"league_id_7\": 34,\n\t\t\t\t\"league_id_8\":
362
+ 45,\n\t\t\t\t\"league_id_9\": 46,\n\t\t\t\t\"league_id_10\": 47,\n\t\t\t\t\"league_id_11\":
363
+ 51,\n\t\t\t\t\"league_id_12\": 57,\n\t\t\t\t\"league_id_13\": 65,\n\t\t\t\t\"league_id_14\":
364
+ 69,\n\t\t\t\t\"league_id_15\": 74,\n\t\t\t\t\"league_id_16\": 78,\n\t\t\t\t\"league_id_17\":
365
+ 108,\n\t\t\t\t\"league_id_18\": 65003\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
366
+ 63,\n\t\t\t\t\"name\": \"skill difference\",\n\t\t\t\t\"tag\": \"sd\",\n\t\t\t\t\"time_created\":
367
+ 1342299789,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 576709682229137092,\n\t\t\t\t\"logo_sponsor\":
368
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
369
+ 0,\n\t\t\t\t\"player_0_account_id\": 5714839,\n\t\t\t\t\"player_1_account_id\":
370
+ 86764856,\n\t\t\t\t\"admin_account_id\": 5714839,\n\t\t\t\t\"league_id_0\":
371
+ 18,\n\t\t\t\t\"league_id_1\": 32\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
372
+ 67,\n\t\t\t\t\"name\": \"paiN Gaming\",\n\t\t\t\t\"tag\": \"paiN\",\n\t\t\t\t\"time_created\":
373
+ 1342757132,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 22838588353323265,\n\t\t\t\t\"logo_sponsor\":
374
+ 22838588353317335,\n\t\t\t\t\"country_code\": \"br\",\n\t\t\t\t\"url\": \"http://paingaming.net/\",\n\t\t\t\t\"games_played_with_current_roster\":
375
+ 0,\n\t\t\t\t\"player_0_account_id\": 16317795,\n\t\t\t\t\"player_1_account_id\":
376
+ 86919603,\n\t\t\t\t\"player_2_account_id\": 84853828,\n\t\t\t\t\"player_3_account_id\":
377
+ 85937380,\n\t\t\t\t\"player_4_account_id\": 102304762,\n\t\t\t\t\"player_5_account_id\":
378
+ 84677534,\n\t\t\t\t\"admin_account_id\": 16317795,\n\t\t\t\t\"league_id_0\":
379
+ 8,\n\t\t\t\t\"league_id_1\": 21,\n\t\t\t\t\"league_id_2\": 27,\n\t\t\t\t\"league_id_3\":
380
+ 36,\n\t\t\t\t\"league_id_4\": 50,\n\t\t\t\t\"league_id_5\": 62,\n\t\t\t\t\"league_id_6\":
381
+ 64,\n\t\t\t\t\"league_id_7\": 121\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
382
+ 70,\n\t\t\t\t\"name\": \"EYES ON U\",\n\t\t\t\t\"tag\": \"EYES\",\n\t\t\t\t\"time_created\":
383
+ 1343162207,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 939249452376708788,\n\t\t\t\t\"logo_sponsor\":
384
+ 0,\n\t\t\t\t\"country_code\": \"de\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
385
+ 0,\n\t\t\t\t\"player_0_account_id\": 91461908,\n\t\t\t\t\"admin_account_id\":
386
+ 91461908,\n\t\t\t\t\"league_id_0\": 28,\n\t\t\t\t\"league_id_1\": 47,\n\t\t\t\t\"league_id_2\":
387
+ 65003\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 71,\n\t\t\t\t\"name\": \"Vince
388
+ Te Ipsum\",\n\t\t\t\t\"tag\": \"vTi\",\n\t\t\t\t\"time_created\": 1343173963,\n\t\t\t\t\"rating\":
389
+ \"inactive\",\n\t\t\t\t\"logo\": 1155423501545105482,\n\t\t\t\t\"logo_sponsor\":
390
+ 0,\n\t\t\t\t\"country_code\": \"br\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
391
+ 0,\n\t\t\t\t\"player_0_account_id\": 30178690,\n\t\t\t\t\"player_1_account_id\":
392
+ 50832056,\n\t\t\t\t\"player_2_account_id\": 57391927,\n\t\t\t\t\"player_3_account_id\":
393
+ 62960147,\n\t\t\t\t\"admin_account_id\": 57391927,\n\t\t\t\t\"league_id_0\":
394
+ 9\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 80,\n\t\t\t\t\"name\": \"Mineski
395
+ HyperX\",\n\t\t\t\t\"tag\": \"Mineski\",\n\t\t\t\t\"time_created\": 1344016405,\n\t\t\t\t\"rating\":
396
+ \"inactive\",\n\t\t\t\t\"logo\": 576719343091616349,\n\t\t\t\t\"logo_sponsor\":
397
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
398
+ 0,\n\t\t\t\t\"admin_account_id\": 94012600,\n\t\t\t\t\"league_id_0\": 10,\n\t\t\t\t\"league_id_1\":
399
+ 14,\n\t\t\t\t\"league_id_2\": 26,\n\t\t\t\t\"league_id_3\": 30,\n\t\t\t\t\"league_id_4\":
400
+ 34,\n\t\t\t\t\"league_id_5\": 36\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
401
+ 94,\n\t\t\t\t\"name\": \"joinDOTAwesome\",\n\t\t\t\t\"tag\": \"jD3\",\n\t\t\t\t\"time_created\":
402
+ 1345841952,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 541810680936430092,\n\t\t\t\t\"logo_sponsor\":
403
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
404
+ 0,\n\t\t\t\t\"player_0_account_id\": 26290891,\n\t\t\t\t\"player_1_account_id\":
405
+ 33079773,\n\t\t\t\t\"player_2_account_id\": 71040815,\n\t\t\t\t\"player_3_account_id\":
406
+ 87360552,\n\t\t\t\t\"admin_account_id\": 33079773\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
407
+ 102,\n\t\t\t\t\"name\": \"TI3 Champ\",\n\t\t\t\t\"tag\": \"TI3CHAMP\",\n\t\t\t\t\"time_created\":
408
+ 1346656238,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 1136285831879572995,\n\t\t\t\t\"logo_sponsor\":
409
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
410
+ 0,\n\t\t\t\t\"player_0_account_id\": 105591101,\n\t\t\t\t\"admin_account_id\":
411
+ 86813501,\n\t\t\t\t\"league_id_0\": 14,\n\t\t\t\t\"league_id_1\": 31\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
412
+ 116,\n\t\t\t\t\"name\": \"Genuineness of Geeks\",\n\t\t\t\t\"tag\": \"GoG\",\n\t\t\t\t\"time_created\":
413
+ 1347567612,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
414
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"www.facebook.com/TeamGoG\",\n\t\t\t\t\"games_played_with_current_roster\":
415
+ 0,\n\t\t\t\t\"player_0_account_id\": 59481445,\n\t\t\t\t\"player_1_account_id\":
416
+ 86725183,\n\t\t\t\t\"player_2_account_id\": 93328973,\n\t\t\t\t\"player_3_account_id\":
417
+ 93762778,\n\t\t\t\t\"admin_account_id\": 91809021,\n\t\t\t\t\"league_id_0\":
418
+ 31\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 119,\n\t\t\t\t\"name\": \"e-Club[MUFC]\",\n\t\t\t\t\"tag\":
419
+ \"MUFC.\",\n\t\t\t\t\"time_created\": 1347625204,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\":
420
+ 541820196262480004,\n\t\t\t\t\"logo_sponsor\": 0,\n\t\t\t\t\"country_code\":
421
+ \"my\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
422
+ 0,\n\t\t\t\t\"player_0_account_id\": 85849567,\n\t\t\t\t\"player_1_account_id\":
423
+ 101717780,\n\t\t\t\t\"admin_account_id\": 85849567,\n\t\t\t\t\"league_id_0\":
424
+ 14,\n\t\t\t\t\"league_id_1\": 17,\n\t\t\t\t\"league_id_2\": 23,\n\t\t\t\t\"league_id_3\":
425
+ 24\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 138,\n\t\t\t\t\"name\": \"Natural
426
+ 9\",\n\t\t\t\t\"tag\": \"N9\",\n\t\t\t\t\"time_created\": 1348563120,\n\t\t\t\t\"rating\":
427
+ \"inactive\",\n\t\t\t\t\"logo\": 884096868348030066,\n\t\t\t\t\"logo_sponsor\":
428
+ 0,\n\t\t\t\t\"country_code\": \"au\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
429
+ 0,\n\t\t\t\t\"player_0_account_id\": 37139952,\n\t\t\t\t\"admin_account_id\":
430
+ 37139952,\n\t\t\t\t\"league_id_0\": 14,\n\t\t\t\t\"league_id_1\": 17,\n\t\t\t\t\"league_id_2\":
431
+ 20\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 142,\n\t\t\t\t\"name\": \"Team
432
+ Dignitas\",\n\t\t\t\t\"tag\": \"dignitas\",\n\t\t\t\t\"time_created\": 1348601358,\n\t\t\t\t\"rating\":
433
+ \"inactive\",\n\t\t\t\t\"logo\": 558722001460412650,\n\t\t\t\t\"logo_sponsor\":
434
+ 558722001460423207,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"www.team-dignitas.net\",\n\t\t\t\t\"games_played_with_current_roster\":
435
+ 0,\n\t\t\t\t\"player_0_account_id\": 29904110,\n\t\t\t\t\"admin_account_id\":
436
+ 168293968,\n\t\t\t\t\"league_id_0\": 12,\n\t\t\t\t\"league_id_1\": 15,\n\t\t\t\t\"league_id_2\":
437
+ 21,\n\t\t\t\t\"league_id_3\": 22,\n\t\t\t\t\"league_id_4\": 25,\n\t\t\t\t\"league_id_5\":
438
+ 27,\n\t\t\t\t\"league_id_6\": 29,\n\t\t\t\t\"league_id_7\": 32,\n\t\t\t\t\"league_id_8\":
439
+ 33,\n\t\t\t\t\"league_id_9\": 34,\n\t\t\t\t\"league_id_10\": 41,\n\t\t\t\t\"league_id_11\":
440
+ 47,\n\t\t\t\t\"league_id_12\": 48,\n\t\t\t\t\"league_id_13\": 50,\n\t\t\t\t\"league_id_14\":
441
+ 51,\n\t\t\t\t\"league_id_15\": 53,\n\t\t\t\t\"league_id_16\": 57,\n\t\t\t\t\"league_id_17\":
442
+ 67,\n\t\t\t\t\"league_id_18\": 70,\n\t\t\t\t\"league_id_19\": 74,\n\t\t\t\t\"league_id_20\":
443
+ 78,\n\t\t\t\t\"league_id_21\": 97,\n\t\t\t\t\"league_id_22\": 103,\n\t\t\t\t\"league_id_23\":
444
+ 104,\n\t\t\t\t\"league_id_24\": 109,\n\t\t\t\t\"league_id_25\": 110,\n\t\t\t\t\"league_id_26\":
445
+ 1304,\n\t\t\t\t\"league_id_27\": 1667,\n\t\t\t\t\"league_id_28\": 65002,\n\t\t\t\t\"league_id_29\":
446
+ 65006\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 147,\n\t\t\t\t\"name\": \"Learn2Gank\",\n\t\t\t\t\"tag\":
447
+ \"L2G\",\n\t\t\t\t\"time_created\": 1348775423,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\":
448
+ 902101705435959796,\n\t\t\t\t\"logo_sponsor\": 0,\n\t\t\t\t\"country_code\":
449
+ \"mx\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
450
+ 0,\n\t\t\t\t\"player_0_account_id\": 64948828,\n\t\t\t\t\"player_1_account_id\":
451
+ 87024422,\n\t\t\t\t\"player_2_account_id\": 87040694,\n\t\t\t\t\"player_3_account_id\":
452
+ 115485241,\n\t\t\t\t\"player_4_account_id\": 172213726,\n\t\t\t\t\"admin_account_id\":
453
+ 87024422,\n\t\t\t\t\"league_id_0\": 1304,\n\t\t\t\t\"league_id_1\": 1409\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
454
+ 157,\n\t\t\t\t\"name\": \"Darer.female\",\n\t\t\t\t\"tag\": \"Darer.fm\",\n\t\t\t\t\"time_created\":
455
+ 1349123438,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 1136293535413282243,\n\t\t\t\t\"logo_sponsor\":
456
+ 1136293535413290947,\n\t\t\t\t\"country_code\": \"bg\",\n\t\t\t\t\"url\":
457
+ \"\",\n\t\t\t\t\"games_played_with_current_roster\": 0,\n\t\t\t\t\"player_0_account_id\":
458
+ 43427106,\n\t\t\t\t\"player_1_account_id\": 57724159,\n\t\t\t\t\"player_2_account_id\":
459
+ 87581640,\n\t\t\t\t\"player_3_account_id\": 94451472,\n\t\t\t\t\"player_4_account_id\":
460
+ 98427807,\n\t\t\t\t\"admin_account_id\": 98427807\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
461
+ 162,\n\t\t\t\t\"name\": \"Flip.Sid3 Tactics\",\n\t\t\t\t\"tag\": \"[F.3]\",\n\t\t\t\t\"time_created\":
462
+ 1349193092,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 900999586924821869,\n\t\t\t\t\"logo_sponsor\":
463
+ 900999586925214571,\n\t\t\t\t\"country_code\": \"dk\",\n\t\t\t\t\"url\": \"www.flipsidetactics.com\",\n\t\t\t\t\"games_played_with_current_roster\":
464
+ 0,\n\t\t\t\t\"admin_account_id\": 42749645,\n\t\t\t\t\"league_id_0\": 13,\n\t\t\t\t\"league_id_1\":
465
+ 15,\n\t\t\t\t\"league_id_2\": 20,\n\t\t\t\t\"league_id_3\": 21,\n\t\t\t\t\"league_id_4\":
466
+ 27,\n\t\t\t\t\"league_id_5\": 28,\n\t\t\t\t\"league_id_6\": 29,\n\t\t\t\t\"league_id_7\":
467
+ 32,\n\t\t\t\t\"league_id_8\": 34,\n\t\t\t\t\"league_id_9\": 47,\n\t\t\t\t\"league_id_10\":
468
+ 51,\n\t\t\t\t\"league_id_11\": 53,\n\t\t\t\t\"league_id_12\": 57,\n\t\t\t\t\"league_id_13\":
469
+ 70,\n\t\t\t\t\"league_id_14\": 78,\n\t\t\t\t\"league_id_15\": 97,\n\t\t\t\t\"league_id_16\":
470
+ 108,\n\t\t\t\t\"league_id_17\": 181,\n\t\t\t\t\"league_id_18\": 202,\n\t\t\t\t\"league_id_19\":
471
+ 1051,\n\t\t\t\t\"league_id_20\": 65002,\n\t\t\t\t\"league_id_21\": 65003,\n\t\t\t\t\"league_id_22\":
472
+ 65005\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 164,\n\t\t\t\t\"name\": \"Insight
473
+ Esports Female\",\n\t\t\t\t\"tag\": \"INSG\",\n\t\t\t\t\"time_created\": 1349234071,\n\t\t\t\t\"rating\":
474
+ \"inactive\",\n\t\t\t\t\"logo\": 1136289618142051559,\n\t\t\t\t\"logo_sponsor\":
475
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
476
+ 0,\n\t\t\t\t\"admin_account_id\": 0\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
477
+ 165,\n\t\t\t\t\"name\": \"absolyt-_-gamynG\",\n\t\t\t\t\"tag\": \"absolyt\",\n\t\t\t\t\"time_created\":
478
+ 1349291037,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 577843264349534864,\n\t\t\t\t\"logo_sponsor\":
479
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
480
+ 0,\n\t\t\t\t\"player_0_account_id\": 24106261,\n\t\t\t\t\"player_1_account_id\":
481
+ 57606434,\n\t\t\t\t\"player_2_account_id\": 71407072,\n\t\t\t\t\"player_3_account_id\":
482
+ 87186470,\n\t\t\t\t\"player_4_account_id\": 100624252,\n\t\t\t\t\"admin_account_id\":
483
+ 24106261,\n\t\t\t\t\"league_id_0\": 16,\n\t\t\t\t\"league_id_1\": 18,\n\t\t\t\t\"league_id_2\":
484
+ 69\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 166,\n\t\t\t\t\"name\": \"Scenario\",\n\t\t\t\t\"tag\":
485
+ \"Scenario\",\n\t\t\t\t\"time_created\": 1349291905,\n\t\t\t\t\"rating\":
486
+ \"inactive\",\n\t\t\t\t\"logo\": 556513875553582452,\n\t\t\t\t\"logo_sponsor\":
487
+ 556513875553585920,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"www.facebook.com/Scenario.ReBorn\",\n\t\t\t\t\"games_played_with_current_roster\":
488
+ 17,\n\t\t\t\t\"player_0_account_id\": 87373024,\n\t\t\t\t\"player_1_account_id\":
489
+ 92311277,\n\t\t\t\t\"player_2_account_id\": 96133582,\n\t\t\t\t\"player_3_account_id\":
490
+ 100800283,\n\t\t\t\t\"player_4_account_id\": 146407973,\n\t\t\t\t\"admin_account_id\":
491
+ 92311277,\n\t\t\t\t\"league_id_0\": 1202,\n\t\t\t\t\"league_id_1\": 1234,\n\t\t\t\t\"league_id_2\":
492
+ 1350,\n\t\t\t\t\"league_id_3\": 1574,\n\t\t\t\t\"league_id_4\": 1702,\n\t\t\t\t\"league_id_5\":
493
+ 1739,\n\t\t\t\t\"league_id_6\": 1798\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
494
+ 171,\n\t\t\t\t\"name\": \"HardwareArena Gaming\",\n\t\t\t\t\"tag\": \"HWA^\",\n\t\t\t\t\"time_created\":
495
+ 1349310937,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
496
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
497
+ 0,\n\t\t\t\t\"player_0_account_id\": 108688401,\n\t\t\t\t\"admin_account_id\":
498
+ 108688401\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 172,\n\t\t\t\t\"name\":
499
+ \"HARDWAREARENAGAMING\",\n\t\t\t\t\"tag\": \"HWA.\",\n\t\t\t\t\"time_created\":
500
+ 1349311200,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
501
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
502
+ 0,\n\t\t\t\t\"player_0_account_id\": 108780130,\n\t\t\t\t\"admin_account_id\":
503
+ 108780130\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 183,\n\t\t\t\t\"name\":
504
+ \"GosuGamers\",\n\t\t\t\t\"tag\": \"GGnet\",\n\t\t\t\t\"time_created\": 1349359826,\n\t\t\t\t\"rating\":
505
+ \"inactive\",\n\t\t\t\t\"logo\": 920116836037547369,\n\t\t\t\t\"logo_sponsor\":
506
+ 0,\n\t\t\t\t\"country_code\": \"se\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
507
+ 0,\n\t\t\t\t\"player_0_account_id\": 46174171,\n\t\t\t\t\"player_1_account_id\":
508
+ 60424314,\n\t\t\t\t\"player_2_account_id\": 87413542,\n\t\t\t\t\"player_3_account_id\":
509
+ 91521378,\n\t\t\t\t\"admin_account_id\": 60424314\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
510
+ 185,\n\t\t\t\t\"name\": \"Coming Soon\",\n\t\t\t\t\"tag\": \"CS\",\n\t\t\t\t\"time_created\":
511
+ 1349396890,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 938131234585660217,\n\t\t\t\t\"logo_sponsor\":
512
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
513
+ 0,\n\t\t\t\t\"player_0_account_id\": 1962309,\n\t\t\t\t\"player_1_account_id\":
514
+ 11533875,\n\t\t\t\t\"player_2_account_id\": 57597599,\n\t\t\t\t\"admin_account_id\":
515
+ 1962309\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 189,\n\t\t\t\t\"name\": \"The
516
+ Derps\",\n\t\t\t\t\"tag\": \"DERP\",\n\t\t\t\t\"time_created\": 1349397060,\n\t\t\t\t\"rating\":
517
+ \"inactive\",\n\t\t\t\t\"logo\": 541814467350768040,\n\t\t\t\t\"logo_sponsor\":
518
+ 560966208458224985,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
519
+ 0,\n\t\t\t\t\"player_0_account_id\": 4858380,\n\t\t\t\t\"player_1_account_id\":
520
+ 12036036,\n\t\t\t\t\"player_2_account_id\": 31907914,\n\t\t\t\t\"player_3_account_id\":
521
+ 33005967,\n\t\t\t\t\"player_4_account_id\": 33027652,\n\t\t\t\t\"player_5_account_id\":
522
+ 55618602,\n\t\t\t\t\"admin_account_id\": 33005967\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
523
+ 191,\n\t\t\t\t\"name\": \"Charles Barkley Dunk Squad\",\n\t\t\t\t\"tag\":
524
+ \"DUNK\",\n\t\t\t\t\"time_created\": 1349397088,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\":
525
+ 560954765761624483,\n\t\t\t\t\"logo_sponsor\": 0,\n\t\t\t\t\"country_code\":
526
+ \"af\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
527
+ 0,\n\t\t\t\t\"player_0_account_id\": 738310,\n\t\t\t\t\"player_1_account_id\":
528
+ 2482180,\n\t\t\t\t\"player_2_account_id\": 4467867,\n\t\t\t\t\"player_3_account_id\":
529
+ 64944326,\n\t\t\t\t\"player_4_account_id\": 137706810,\n\t\t\t\t\"admin_account_id\":
530
+ 738310\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 192,\n\t\t\t\t\"name\": \"DS_Spirit\",\n\t\t\t\t\"tag\":
531
+ \"DSS\",\n\t\t\t\t\"time_created\": 1349397103,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\":
532
+ 0,\n\t\t\t\t\"logo_sponsor\": 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\":
533
+ \"\",\n\t\t\t\t\"games_played_with_current_roster\": 0,\n\t\t\t\t\"player_0_account_id\":
534
+ 100245545,\n\t\t\t\t\"player_1_account_id\": 104500695,\n\t\t\t\t\"player_2_account_id\":
535
+ 112642892,\n\t\t\t\t\"player_3_account_id\": 112729536,\n\t\t\t\t\"player_4_account_id\":
536
+ 124570741,\n\t\t\t\t\"player_5_account_id\": 137098312,\n\t\t\t\t\"admin_account_id\":
537
+ 89176184\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 193,\n\t\t\t\t\"name\":
538
+ \"TEAM WRONA\",\n\t\t\t\t\"tag\": \"WRONA\",\n\t\t\t\t\"time_created\": 1349397111,\n\t\t\t\t\"rating\":
539
+ \"inactive\",\n\t\t\t\t\"logo\": 612790734218656802,\n\t\t\t\t\"logo_sponsor\":
540
+ 612790734218544534,\n\t\t\t\t\"country_code\": \"ug\",\n\t\t\t\t\"url\": \"http://wronaistdumm.de\",\n\t\t\t\t\"games_played_with_current_roster\":
541
+ 1,\n\t\t\t\t\"player_0_account_id\": 24148096,\n\t\t\t\t\"player_1_account_id\":
542
+ 24687174,\n\t\t\t\t\"player_2_account_id\": 28290042,\n\t\t\t\t\"player_3_account_id\":
543
+ 90647924,\n\t\t\t\t\"player_4_account_id\": 126130349,\n\t\t\t\t\"admin_account_id\":
544
+ 28290042\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 194,\n\t\t\t\t\"name\":
545
+ \"Taylor Gang\",\n\t\t\t\t\"tag\": \"TG\",\n\t\t\t\t\"time_created\": 1349397115,\n\t\t\t\t\"rating\":
546
+ \"inactive\",\n\t\t\t\t\"logo\": 937005334647522758,\n\t\t\t\t\"logo_sponsor\":
547
+ 937005334647523301,\n\t\t\t\t\"country_code\": \"ca\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
548
+ 0,\n\t\t\t\t\"player_0_account_id\": 60527115,\n\t\t\t\t\"player_1_account_id\":
549
+ 140697197,\n\t\t\t\t\"admin_account_id\": 100602707\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
550
+ 196,\n\t\t\t\t\"name\": \"Hey\",\n\t\t\t\t\"tag\": \"Hey\",\n\t\t\t\t\"time_created\":
551
+ 1349397135,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
552
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
553
+ 0,\n\t\t\t\t\"player_0_account_id\": 103365720,\n\t\t\t\t\"admin_account_id\":
554
+ 103365720\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 198,\n\t\t\t\t\"name\":
555
+ \"Crits.org\",\n\t\t\t\t\"tag\": \"Crits\",\n\t\t\t\t\"time_created\": 1349397141,\n\t\t\t\t\"rating\":
556
+ \"inactive\",\n\t\t\t\t\"logo\": 595878516385639707,\n\t\t\t\t\"logo_sponsor\":
557
+ 630782671448200721,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
558
+ 0,\n\t\t\t\t\"player_0_account_id\": 11050442,\n\t\t\t\t\"player_1_account_id\":
559
+ 34314560,\n\t\t\t\t\"player_2_account_id\": 66858051,\n\t\t\t\t\"player_3_account_id\":
560
+ 69956180,\n\t\t\t\t\"player_4_account_id\": 70202518,\n\t\t\t\t\"admin_account_id\":
561
+ 34314560\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 200,\n\t\t\t\t\"name\":
562
+ \"DotA\",\n\t\t\t\t\"tag\": \"DotA\",\n\t\t\t\t\"time_created\": 1349397192,\n\t\t\t\t\"rating\":
563
+ \"inactive\",\n\t\t\t\t\"logo\": 900976537657237645,\n\t\t\t\t\"logo_sponsor\":
564
+ 0,\n\t\t\t\t\"country_code\": \"de\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
565
+ 0,\n\t\t\t\t\"player_0_account_id\": 20208361,\n\t\t\t\t\"player_1_account_id\":
566
+ 87935228,\n\t\t\t\t\"admin_account_id\": 87935228\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
567
+ 201,\n\t\t\t\t\"name\": \"Python Fan Club\",\n\t\t\t\t\"tag\": \"PFC\",\n\t\t\t\t\"time_created\":
568
+ 1349397195,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 920116836076637191,\n\t\t\t\t\"logo_sponsor\":
569
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
570
+ 0,\n\t\t\t\t\"player_0_account_id\": 2453740,\n\t\t\t\t\"player_1_account_id\":
571
+ 16876048,\n\t\t\t\t\"player_2_account_id\": 19913169,\n\t\t\t\t\"player_3_account_id\":
572
+ 30150071,\n\t\t\t\t\"player_4_account_id\": 34175012,\n\t\t\t\t\"player_5_account_id\":
573
+ 34541629,\n\t\t\t\t\"admin_account_id\": 30150071\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
574
+ 202,\n\t\t\t\t\"name\": \"FUCK YOU\",\n\t\t\t\t\"tag\": \"DmC\",\n\t\t\t\t\"time_created\":
575
+ 1349397199,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 560966433150418301,\n\t\t\t\t\"logo_sponsor\":
576
+ 560966433151788262,\n\t\t\t\t\"country_code\": \"je\",\n\t\t\t\t\"url\": \"http://dmc.com/\",\n\t\t\t\t\"games_played_with_current_roster\":
577
+ 0,\n\t\t\t\t\"player_0_account_id\": 35013402,\n\t\t\t\t\"player_1_account_id\":
578
+ 35155202,\n\t\t\t\t\"player_2_account_id\": 37342358,\n\t\t\t\t\"player_3_account_id\":
579
+ 49732637,\n\t\t\t\t\"player_4_account_id\": 56215910,\n\t\t\t\t\"admin_account_id\":
580
+ 35155202\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 204,\n\t\t\t\t\"name\":
581
+ \"in bloom\",\n\t\t\t\t\"tag\": \"[i.b]\",\n\t\t\t\t\"time_created\": 1349397219,\n\t\t\t\t\"rating\":
582
+ \"inactive\",\n\t\t\t\t\"logo\": 918990936137059951,\n\t\t\t\t\"logo_sponsor\":
583
+ 0,\n\t\t\t\t\"country_code\": \"ru\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
584
+ 0,\n\t\t\t\t\"player_0_account_id\": 3648,\n\t\t\t\t\"player_1_account_id\":
585
+ 122409,\n\t\t\t\t\"player_2_account_id\": 806337,\n\t\t\t\t\"player_3_account_id\":
586
+ 120626339,\n\t\t\t\t\"admin_account_id\": 806337\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
587
+ 207,\n\t\t\t\t\"name\": \"Dragon\",\n\t\t\t\t\"tag\": \"DRGN\",\n\t\t\t\t\"time_created\":
588
+ 1349397232,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 576717364466221439,\n\t\t\t\t\"logo_sponsor\":
589
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
590
+ 0,\n\t\t\t\t\"player_0_account_id\": 14407103,\n\t\t\t\t\"player_1_account_id\":
591
+ 36619824,\n\t\t\t\t\"player_2_account_id\": 54283164,\n\t\t\t\t\"player_3_account_id\":
592
+ 83523295,\n\t\t\t\t\"player_4_account_id\": 100482274,\n\t\t\t\t\"admin_account_id\":
593
+ 14407103\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 209,\n\t\t\t\t\"name\":
594
+ \"POWER CLAN\",\n\t\t\t\t\"tag\": \"PC\",\n\t\t\t\t\"time_created\": 1349397242,\n\t\t\t\t\"rating\":
595
+ \"inactive\",\n\t\t\t\t\"logo\": 541814467350848818,\n\t\t\t\t\"logo_sponsor\":
596
+ 560964212030423596,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
597
+ 0,\n\t\t\t\t\"player_0_account_id\": 865593,\n\t\t\t\t\"player_1_account_id\":
598
+ 3022580,\n\t\t\t\t\"player_2_account_id\": 18066754,\n\t\t\t\t\"player_3_account_id\":
599
+ 18531024,\n\t\t\t\t\"player_4_account_id\": 39051357,\n\t\t\t\t\"admin_account_id\":
600
+ 18066754\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 210,\n\t\t\t\t\"name\":
601
+ \"KZZ + 4\",\n\t\t\t\t\"tag\": \"KZZ+4\",\n\t\t\t\t\"time_created\": 1349397244,\n\t\t\t\t\"rating\":
602
+ \"inactive\",\n\t\t\t\t\"logo\": 937006451785042562,\n\t\t\t\t\"logo_sponsor\":
603
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
604
+ 0,\n\t\t\t\t\"player_0_account_id\": 77182422,\n\t\t\t\t\"player_1_account_id\":
605
+ 106497354,\n\t\t\t\t\"admin_account_id\": 106497354\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
606
+ 213,\n\t\t\t\t\"name\": \"The Useless Group\",\n\t\t\t\t\"tag\": \"Useless\",\n\t\t\t\t\"time_created\":
607
+ 1349397252,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 594731762971332263,\n\t\t\t\t\"logo_sponsor\":
608
+ 613883652968426716,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
609
+ 0,\n\t\t\t\t\"player_0_account_id\": 2616008,\n\t\t\t\t\"player_1_account_id\":
610
+ 14122814,\n\t\t\t\t\"player_2_account_id\": 19365501,\n\t\t\t\t\"player_3_account_id\":
611
+ 25436005,\n\t\t\t\t\"player_4_account_id\": 27801478,\n\t\t\t\t\"admin_account_id\":
612
+ 14122814\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 214,\n\t\t\t\t\"name\":
613
+ \"Orange Gaming\",\n\t\t\t\t\"tag\": \"OG\",\n\t\t\t\t\"time_created\": 1349397263,\n\t\t\t\t\"rating\":
614
+ \"inactive\",\n\t\t\t\t\"logo\": 937005334645488273,\n\t\t\t\t\"logo_sponsor\":
615
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
616
+ 0,\n\t\t\t\t\"player_0_account_id\": 30564333,\n\t\t\t\t\"player_1_account_id\":
617
+ 39898692,\n\t\t\t\t\"player_2_account_id\": 67714499,\n\t\t\t\t\"player_3_account_id\":
618
+ 114887421,\n\t\t\t\t\"player_4_account_id\": 115283500,\n\t\t\t\t\"admin_account_id\":
619
+ 39898692\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 216,\n\t\t\t\t\"name\":
620
+ \"Low Priority Queue\",\n\t\t\t\t\"tag\": \"LPQ\",\n\t\t\t\t\"time_created\":
621
+ 1349397264,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 630789657335506798,\n\t\t\t\t\"logo_sponsor\":
622
+ 630789657335508539,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"www.youfail.org\",\n\t\t\t\t\"games_played_with_current_roster\":
623
+ 4,\n\t\t\t\t\"player_0_account_id\": 49943788,\n\t\t\t\t\"player_1_account_id\":
624
+ 52028734,\n\t\t\t\t\"player_2_account_id\": 76775657,\n\t\t\t\t\"player_3_account_id\":
625
+ 79649171,\n\t\t\t\t\"player_4_account_id\": 103936935,\n\t\t\t\t\"admin_account_id\":
626
+ 49943788\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 218,\n\t\t\t\t\"name\":
627
+ \"WeAreBoatMen\",\n\t\t\t\t\"tag\": \"Boats\",\n\t\t\t\t\"time_created\":
628
+ 1349397269,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 578969164280207216,\n\t\t\t\t\"logo_sponsor\":
629
+ 0,\n\t\t\t\t\"country_code\": \"io\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
630
+ 0,\n\t\t\t\t\"player_0_account_id\": 44395469,\n\t\t\t\t\"player_1_account_id\":
631
+ 50224487,\n\t\t\t\t\"player_2_account_id\": 78888343,\n\t\t\t\t\"player_3_account_id\":
632
+ 81693466,\n\t\t\t\t\"player_4_account_id\": 91469651,\n\t\t\t\t\"admin_account_id\":
633
+ 50224487\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 219,\n\t\t\t\t\"name\":
634
+ \"Team #Y0L0\",\n\t\t\t\t\"tag\": \"YOLO\",\n\t\t\t\t\"time_created\": 1349397270,\n\t\t\t\t\"rating\":
635
+ \"inactive\",\n\t\t\t\t\"logo\": 937005334645874233,\n\t\t\t\t\"logo_sponsor\":
636
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
637
+ 0,\n\t\t\t\t\"player_0_account_id\": 67411448,\n\t\t\t\t\"admin_account_id\":
638
+ 67411448\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 224,\n\t\t\t\t\"name\":
639
+ \"FastForward\",\n\t\t\t\t\"tag\": \"[>>]\",\n\t\t\t\t\"time_created\": 1349397291,\n\t\t\t\t\"rating\":
640
+ \"inactive\",\n\t\t\t\t\"logo\": 576717364480553336,\n\t\t\t\t\"logo_sponsor\":
641
+ 576717364480555035,\n\t\t\t\t\"country_code\": \"aq\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
642
+ 0,\n\t\t\t\t\"player_0_account_id\": 4958944,\n\t\t\t\t\"player_1_account_id\":
643
+ 8676303,\n\t\t\t\t\"admin_account_id\": 4958944\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
644
+ 226,\n\t\t\t\t\"name\": \"Watermelon Space Jam\",\n\t\t\t\t\"tag\": \"WSJ\",\n\t\t\t\t\"time_created\":
645
+ 1349397301,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 594731762967571608,\n\t\t\t\t\"logo_sponsor\":
646
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
647
+ 0,\n\t\t\t\t\"player_0_account_id\": 36028888,\n\t\t\t\t\"player_1_account_id\":
648
+ 42010729,\n\t\t\t\t\"player_2_account_id\": 95890828,\n\t\t\t\t\"player_3_account_id\":
649
+ 100534308,\n\t\t\t\t\"admin_account_id\": 42010729\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
650
+ 228,\n\t\t\t\t\"name\": \"Fire in the Eye\",\n\t\t\t\t\"tag\": \"FITE\",\n\t\t\t\t\"time_created\":
651
+ 1349397307,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 867219482960145839,\n\t\t\t\t\"logo_sponsor\":
652
+ 0,\n\t\t\t\t\"country_code\": \"de\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
653
+ 0,\n\t\t\t\t\"player_0_account_id\": 20039883,\n\t\t\t\t\"player_1_account_id\":
654
+ 20640424,\n\t\t\t\t\"player_2_account_id\": 20645874,\n\t\t\t\t\"player_3_account_id\":
655
+ 23971712,\n\t\t\t\t\"player_4_account_id\": 50045551,\n\t\t\t\t\"player_5_account_id\":
656
+ 113812643,\n\t\t\t\t\"admin_account_id\": 20645874\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
657
+ 231,\n\t\t\t\t\"name\": \"Ignition\",\n\t\t\t\t\"tag\": \"Ign\",\n\t\t\t\t\"time_created\":
658
+ 1349397312,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 542940367258005663,\n\t\t\t\t\"logo_sponsor\":
659
+ 0,\n\t\t\t\t\"country_code\": \"ar\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
660
+ 0,\n\t\t\t\t\"player_0_account_id\": 86742547,\n\t\t\t\t\"player_1_account_id\":
661
+ 86772274,\n\t\t\t\t\"player_2_account_id\": 96183496,\n\t\t\t\t\"player_3_account_id\":
662
+ 108974214,\n\t\t\t\t\"player_4_account_id\": 124357978,\n\t\t\t\t\"admin_account_id\":
663
+ 86772274\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 232,\n\t\t\t\t\"name\":
664
+ \"The Goatmen\",\n\t\t\t\t\"tag\": \"GOAT\",\n\t\t\t\t\"time_created\": 1349397314,\n\t\t\t\t\"rating\":
665
+ \"inactive\",\n\t\t\t\t\"logo\": 920116836069163413,\n\t\t\t\t\"logo_sponsor\":
666
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"penisboobs\",\n\t\t\t\t\"games_played_with_current_roster\":
667
+ 0,\n\t\t\t\t\"player_0_account_id\": 17570543,\n\t\t\t\t\"admin_account_id\":
668
+ 17570543\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 233,\n\t\t\t\t\"name\":
669
+ \"The Moon Parliament\",\n\t\t\t\t\"tag\": \"TMP\",\n\t\t\t\t\"time_created\":
670
+ 1349397322,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 921242735951809405,\n\t\t\t\t\"logo_sponsor\":
671
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
672
+ 0,\n\t\t\t\t\"player_0_account_id\": 16300127,\n\t\t\t\t\"player_1_account_id\":
673
+ 17363514,\n\t\t\t\t\"player_2_account_id\": 24367665,\n\t\t\t\t\"player_3_account_id\":
674
+ 29125024,\n\t\t\t\t\"player_4_account_id\": 30115023,\n\t\t\t\t\"admin_account_id\":
675
+ 24367665\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 236,\n\t\t\t\t\"name\":
676
+ \"Squadron51\",\n\t\t\t\t\"tag\": \"S51\",\n\t\t\t\t\"time_created\": 1349397334,\n\t\t\t\t\"rating\":
677
+ \"inactive\",\n\t\t\t\t\"logo\": 902102437535447541,\n\t\t\t\t\"logo_sponsor\":
678
+ 902102437535449195,\n\t\t\t\t\"country_code\": \"pl\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
679
+ 0,\n\t\t\t\t\"player_0_account_id\": 39830079,\n\t\t\t\t\"player_1_account_id\":
680
+ 48218441,\n\t\t\t\t\"player_2_account_id\": 93852500,\n\t\t\t\t\"admin_account_id\":
681
+ 39830079\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 240,\n\t\t\t\t\"name\":
682
+ \"No One Lives Forever\",\n\t\t\t\t\"tag\": \"Nolf\",\n\t\t\t\t\"time_created\":
683
+ 1349397350,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 596983562798957477,\n\t\t\t\t\"logo_sponsor\":
684
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
685
+ 0,\n\t\t\t\t\"player_0_account_id\": 25901309,\n\t\t\t\t\"player_1_account_id\":
686
+ 30380103,\n\t\t\t\t\"player_2_account_id\": 47493723,\n\t\t\t\t\"player_3_account_id\":
687
+ 50753199,\n\t\t\t\t\"player_4_account_id\": 86762858,\n\t\t\t\t\"admin_account_id\":
688
+ 47493723\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 243,\n\t\t\t\t\"name\":
689
+ \"Team USA\",\n\t\t\t\t\"tag\": \"USA\",\n\t\t\t\t\"time_created\": 1349397356,\n\t\t\t\t\"rating\":
690
+ \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\": 0,\n\t\t\t\t\"country_code\":
691
+ \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
692
+ 0,\n\t\t\t\t\"player_0_account_id\": 9448757,\n\t\t\t\t\"player_1_account_id\":
693
+ 17499043,\n\t\t\t\t\"player_2_account_id\": 17967757,\n\t\t\t\t\"player_3_account_id\":
694
+ 49870957,\n\t\t\t\t\"player_4_account_id\": 70666939,\n\t\t\t\t\"admin_account_id\":
695
+ 17967757\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 246,\n\t\t\t\t\"name\":
696
+ \"Millenium\",\n\t\t\t\t\"tag\": \"[M]\",\n\t\t\t\t\"time_created\": 1349397364,\n\t\t\t\t\"rating\":
697
+ \"inactive\",\n\t\t\t\t\"logo\": 1136289618159211721,\n\t\t\t\t\"logo_sponsor\":
698
+ 1117160762467777259,\n\t\t\t\t\"country_code\": \"fr\",\n\t\t\t\t\"url\":
699
+ \"\",\n\t\t\t\t\"games_played_with_current_roster\": 0,\n\t\t\t\t\"player_0_account_id\":
700
+ 111086272,\n\t\t\t\t\"admin_account_id\": 111086272\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
701
+ 247,\n\t\t\t\t\"name\": \"Mortal Kombat\",\n\t\t\t\t\"tag\": \"MK\",\n\t\t\t\t\"time_created\":
702
+ 1349397364,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
703
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
704
+ 0,\n\t\t\t\t\"player_0_account_id\": 101081104,\n\t\t\t\t\"player_1_account_id\":
705
+ 101799422,\n\t\t\t\t\"admin_account_id\": 101799422\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
706
+ 255,\n\t\t\t\t\"name\": \"Flying Panda\",\n\t\t\t\t\"tag\": \"FP\",\n\t\t\t\t\"time_created\":
707
+ 1349397388,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 918990936154032295,\n\t\t\t\t\"logo_sponsor\":
708
+ 918990936154032509,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
709
+ 0,\n\t\t\t\t\"player_0_account_id\": 67692050,\n\t\t\t\t\"player_1_account_id\":
710
+ 72055259,\n\t\t\t\t\"player_2_account_id\": 78241736,\n\t\t\t\t\"player_3_account_id\":
711
+ 86759475,\n\t\t\t\t\"player_4_account_id\": 114078214,\n\t\t\t\t\"admin_account_id\":
712
+ 78241736\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 258,\n\t\t\t\t\"name\":
713
+ \"TribunaL\",\n\t\t\t\t\"tag\": \"TribunaL\",\n\t\t\t\t\"time_created\": 1349397394,\n\t\t\t\t\"rating\":
714
+ \"inactive\",\n\t\t\t\t\"logo\": 565518537757292051,\n\t\t\t\t\"logo_sponsor\":
715
+ 920116836091593033,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
716
+ 0,\n\t\t\t\t\"player_0_account_id\": 33277250,\n\t\t\t\t\"player_1_account_id\":
717
+ 68171831,\n\t\t\t\t\"admin_account_id\": 68171831,\n\t\t\t\t\"league_id_0\":
718
+ 1667\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 259,\n\t\t\t\t\"name\": \"Mundane\",\n\t\t\t\t\"tag\":
719
+ \"Mundane\",\n\t\t\t\t\"time_created\": 1349397396,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\":
720
+ 596987479945559386,\n\t\t\t\t\"logo_sponsor\": 0,\n\t\t\t\t\"country_code\":
721
+ \"cx\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
722
+ 0,\n\t\t\t\t\"player_0_account_id\": 29989995,\n\t\t\t\t\"player_1_account_id\":
723
+ 42062111,\n\t\t\t\t\"player_2_account_id\": 49436866,\n\t\t\t\t\"player_3_account_id\":
724
+ 85763330,\n\t\t\t\t\"admin_account_id\": 85763330\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
725
+ 263,\n\t\t\t\t\"name\": \"Team bacon\",\n\t\t\t\t\"tag\": \"TB\",\n\t\t\t\t\"time_created\":
726
+ 1349397407,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 921252182228128756,\n\t\t\t\t\"logo_sponsor\":
727
+ 921252182228133994,\n\t\t\t\t\"country_code\": \"se\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
728
+ 0,\n\t\t\t\t\"player_0_account_id\": 59136376,\n\t\t\t\t\"player_1_account_id\":
729
+ 72517144,\n\t\t\t\t\"admin_account_id\": 56605723\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
730
+ 270,\n\t\t\t\t\"name\": \"Cutie Pie Club\",\n\t\t\t\t\"tag\": \"cPc~\",\n\t\t\t\t\"time_created\":
731
+ 1349397419,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 578969164280219850,\n\t\t\t\t\"logo_sponsor\":
732
+ 0,\n\t\t\t\t\"country_code\": \"ca\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
733
+ 0,\n\t\t\t\t\"player_0_account_id\": 18026097,\n\t\t\t\t\"player_1_account_id\":
734
+ 74425032,\n\t\t\t\t\"admin_account_id\": 18026097\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
735
+ 271,\n\t\t\t\t\"name\": \"NEXPTIME\",\n\t\t\t\t\"tag\": \"NEXPT\",\n\t\t\t\t\"time_created\":
736
+ 1349397419,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 594731762967203343,\n\t\t\t\t\"logo_sponsor\":
737
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
738
+ 0,\n\t\t\t\t\"player_0_account_id\": 39871933,\n\t\t\t\t\"player_1_account_id\":
739
+ 78926395,\n\t\t\t\t\"player_2_account_id\": 91857543,\n\t\t\t\t\"player_3_account_id\":
740
+ 92044300,\n\t\t\t\t\"player_4_account_id\": 94241337,\n\t\t\t\t\"admin_account_id\":
741
+ 78926395\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 287,\n\t\t\t\t\"name\":
742
+ \"Macropyre\",\n\t\t\t\t\"tag\": \"MP\",\n\t\t\t\t\"time_created\": 1349397453,\n\t\t\t\t\"rating\":
743
+ \"inactive\",\n\t\t\t\t\"logo\": 542940367257693128,\n\t\t\t\t\"logo_sponsor\":
744
+ 0,\n\t\t\t\t\"country_code\": \"ax\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
745
+ 0,\n\t\t\t\t\"player_0_account_id\": 129147,\n\t\t\t\t\"player_1_account_id\":
746
+ 65292909,\n\t\t\t\t\"player_2_account_id\": 86451077,\n\t\t\t\t\"player_3_account_id\":
747
+ 86740892,\n\t\t\t\t\"admin_account_id\": 129147\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
748
+ 289,\n\t\t\t\t\"name\": \"The Fighting Mongooses\",\n\t\t\t\t\"tag\": \"TFM\",\n\t\t\t\t\"time_created\":
749
+ 1349397457,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 937005334645576844,\n\t\t\t\t\"logo_sponsor\":
750
+ 937005334645578278,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
751
+ 0,\n\t\t\t\t\"player_0_account_id\": 4755662,\n\t\t\t\t\"player_1_account_id\":
752
+ 4800191,\n\t\t\t\t\"player_2_account_id\": 6578845,\n\t\t\t\t\"player_3_account_id\":
753
+ 36544626,\n\t\t\t\t\"admin_account_id\": 4800191\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
754
+ 290,\n\t\t\t\t\"name\": \"All Pick Easy Mode\",\n\t\t\t\t\"tag\": \"APEM\",\n\t\t\t\t\"time_created\":
755
+ 1349397457,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 594733216756775995,\n\t\t\t\t\"logo_sponsor\":
756
+ 594733216756855887,\n\t\t\t\t\"country_code\": \"ca\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
757
+ 0,\n\t\t\t\t\"player_0_account_id\": 10656351,\n\t\t\t\t\"player_1_account_id\":
758
+ 24281454,\n\t\t\t\t\"player_2_account_id\": 33688685,\n\t\t\t\t\"player_3_account_id\":
759
+ 75955090,\n\t\t\t\t\"admin_account_id\": 33688685\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
760
+ 293,\n\t\t\t\t\"name\": \"Bad Players\",\n\t\t\t\t\"tag\": \"BAD\",\n\t\t\t\t\"time_created\":
761
+ 1349397465,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 559850022897662897,\n\t\t\t\t\"logo_sponsor\":
762
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
763
+ 0,\n\t\t\t\t\"player_0_account_id\": 418795,\n\t\t\t\t\"player_1_account_id\":
764
+ 8978796,\n\t\t\t\t\"player_2_account_id\": 10151067,\n\t\t\t\t\"player_3_account_id\":
765
+ 19928492,\n\t\t\t\t\"player_4_account_id\": 29691841,\n\t\t\t\t\"player_5_account_id\":
766
+ 36518094,\n\t\t\t\t\"admin_account_id\": 19928492\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
767
+ 294,\n\t\t\t\t\"name\": \"UNC\",\n\t\t\t\t\"tag\": \"UNC\",\n\t\t\t\t\"time_created\":
768
+ 1349397466,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 594731763001968823,\n\t\t\t\t\"logo_sponsor\":
769
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
770
+ 0,\n\t\t\t\t\"player_0_account_id\": 73815105,\n\t\t\t\t\"player_1_account_id\":
771
+ 80843276,\n\t\t\t\t\"player_2_account_id\": 90456857,\n\t\t\t\t\"admin_account_id\":
772
+ 73815105\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 296,\n\t\t\t\t\"name\":
773
+ \"Fun Asian Guys\",\n\t\t\t\t\"tag\": \"FAG\",\n\t\t\t\t\"time_created\":
774
+ 1349397468,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 1136289618158715084,\n\t\t\t\t\"logo_sponsor\":
775
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
776
+ 0,\n\t\t\t\t\"player_0_account_id\": 83939317,\n\t\t\t\t\"player_1_account_id\":
777
+ 83940085,\n\t\t\t\t\"player_2_account_id\": 86735565,\n\t\t\t\t\"player_3_account_id\":
778
+ 102903339,\n\t\t\t\t\"player_4_account_id\": 111104010,\n\t\t\t\t\"admin_account_id\":
779
+ 83940085\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 299,\n\t\t\t\t\"name\":
780
+ \"Cafe News Team\",\n\t\t\t\t\"tag\": \"Cafe\",\n\t\t\t\t\"time_created\":
781
+ 1349397470,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 615022166459696801,\n\t\t\t\t\"logo_sponsor\":
782
+ 615022166459697582,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"http://cafeofbrokendreams.com\",\n\t\t\t\t\"games_played_with_current_roster\":
783
+ 0,\n\t\t\t\t\"player_0_account_id\": 11331272,\n\t\t\t\t\"player_1_account_id\":
784
+ 34046132,\n\t\t\t\t\"player_2_account_id\": 40071707,\n\t\t\t\t\"player_3_account_id\":
785
+ 45996281,\n\t\t\t\t\"player_4_account_id\": 62078506,\n\t\t\t\t\"admin_account_id\":
786
+ 45996281\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 302,\n\t\t\t\t\"name\":
787
+ \"Inbreed\",\n\t\t\t\t\"tag\": \"Inbreed\",\n\t\t\t\t\"time_created\": 1349397473,\n\t\t\t\t\"rating\":
788
+ \"inactive\",\n\t\t\t\t\"logo\": 578969164280218952,\n\t\t\t\t\"logo_sponsor\":
789
+ 576735140859663915,\n\t\t\t\t\"country_code\": \"az\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
790
+ 0,\n\t\t\t\t\"player_0_account_id\": 1328641,\n\t\t\t\t\"player_1_account_id\":
791
+ 2039100,\n\t\t\t\t\"player_2_account_id\": 18234328,\n\t\t\t\t\"player_3_account_id\":
792
+ 29538153,\n\t\t\t\t\"player_4_account_id\": 31262192,\n\t\t\t\t\"player_5_account_id\":
793
+ 33223439,\n\t\t\t\t\"admin_account_id\": 33223439\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
794
+ 303,\n\t\t\t\t\"name\": \"peaceful skeleton realm\",\n\t\t\t\t\"tag\": \"BONER\",\n\t\t\t\t\"time_created\":
795
+ 1349397474,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 939257134464371751,\n\t\t\t\t\"logo_sponsor\":
796
+ 939257134464372997,\n\t\t\t\t\"country_code\": \"mk\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
797
+ 0,\n\t\t\t\t\"player_0_account_id\": 8166475,\n\t\t\t\t\"player_1_account_id\":
798
+ 11031068,\n\t\t\t\t\"player_2_account_id\": 11207712,\n\t\t\t\t\"player_3_account_id\":
799
+ 22349847,\n\t\t\t\t\"admin_account_id\": 11207712\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
800
+ 304,\n\t\t\t\t\"name\": \"Rapecraft\",\n\t\t\t\t\"tag\": \"RC\",\n\t\t\t\t\"time_created\":
801
+ 1349397474,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 612773448399694463,\n\t\t\t\t\"logo_sponsor\":
802
+ 612773448399685269,\n\t\t\t\t\"country_code\": \"fi\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
803
+ 0,\n\t\t\t\t\"player_0_account_id\": 1605140,\n\t\t\t\t\"player_1_account_id\":
804
+ 9779514,\n\t\t\t\t\"player_2_account_id\": 34504767,\n\t\t\t\t\"player_3_account_id\":
805
+ 47476887,\n\t\t\t\t\"player_4_account_id\": 78873398,\n\t\t\t\t\"admin_account_id\":
806
+ 34504767\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 305,\n\t\t\t\t\"name\":
807
+ \"Buff Dudes United\",\n\t\t\t\t\"tag\": \"BDU\",\n\t\t\t\t\"time_created\":
808
+ 1349397475,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 576717364456590131,\n\t\t\t\t\"logo_sponsor\":
809
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
810
+ 0,\n\t\t\t\t\"player_0_account_id\": 22579290,\n\t\t\t\t\"player_1_account_id\":
811
+ 29403910,\n\t\t\t\t\"player_2_account_id\": 39894036,\n\t\t\t\t\"player_3_account_id\":
812
+ 40405349,\n\t\t\t\t\"player_4_account_id\": 84189500,\n\t\t\t\t\"admin_account_id\":
813
+ 53042537\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 308,\n\t\t\t\t\"name\":
814
+ \"As Baller As Possible\",\n\t\t\t\t\"tag\": \"ABAP\",\n\t\t\t\t\"time_created\":
815
+ 1349397479,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
816
+ 0,\n\t\t\t\t\"country_code\": \"td\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
817
+ 0,\n\t\t\t\t\"player_0_account_id\": 20803645,\n\t\t\t\t\"player_1_account_id\":
818
+ 26375433,\n\t\t\t\t\"player_2_account_id\": 27855536,\n\t\t\t\t\"player_3_account_id\":
819
+ 49574683,\n\t\t\t\t\"player_4_account_id\": 84101234,\n\t\t\t\t\"admin_account_id\":
820
+ 27855536\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 315,\n\t\t\t\t\"name\":
821
+ \"Mind Power\",\n\t\t\t\t\"tag\": \"mindP\",\n\t\t\t\t\"time_created\": 1349397494,\n\t\t\t\t\"rating\":
822
+ \"inactive\",\n\t\t\t\t\"logo\": 541814467372213681,\n\t\t\t\t\"logo_sponsor\":
823
+ 0,\n\t\t\t\t\"country_code\": \"br\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
824
+ 0,\n\t\t\t\t\"player_0_account_id\": 26341624,\n\t\t\t\t\"player_1_account_id\":
825
+ 48930384,\n\t\t\t\t\"player_2_account_id\": 66193978,\n\t\t\t\t\"player_3_account_id\":
826
+ 66216069,\n\t\t\t\t\"player_4_account_id\": 83965485,\n\t\t\t\t\"admin_account_id\":
827
+ 66193978\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 317,\n\t\t\t\t\"name\":
828
+ \"Regards\",\n\t\t\t\t\"tag\": \"RGDS\",\n\t\t\t\t\"time_created\": 1349397495,\n\t\t\t\t\"rating\":
829
+ \"inactive\",\n\t\t\t\t\"logo\": 596983562786948383,\n\t\t\t\t\"logo_sponsor\":
830
+ 0,\n\t\t\t\t\"country_code\": \"br\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
831
+ 0,\n\t\t\t\t\"player_0_account_id\": 25588776,\n\t\t\t\t\"player_1_account_id\":
832
+ 41468289,\n\t\t\t\t\"player_2_account_id\": 49959615,\n\t\t\t\t\"player_3_account_id\":
833
+ 78706064,\n\t\t\t\t\"player_4_account_id\": 83649318,\n\t\t\t\t\"admin_account_id\":
834
+ 25588776\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 319,\n\t\t\t\t\"name\":
835
+ \"Jefferbads\",\n\t\t\t\t\"tag\": \"J-bads\",\n\t\t\t\t\"time_created\": 1349397503,\n\t\t\t\t\"rating\":
836
+ \"inactive\",\n\t\t\t\t\"logo\": 1135165172027241739,\n\t\t\t\t\"logo_sponsor\":
837
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
838
+ 0,\n\t\t\t\t\"player_0_account_id\": 46142888,\n\t\t\t\t\"player_1_account_id\":
839
+ 70937173,\n\t\t\t\t\"player_2_account_id\": 72815976,\n\t\t\t\t\"player_3_account_id\":
840
+ 73569929,\n\t\t\t\t\"player_4_account_id\": 84755590,\n\t\t\t\t\"player_5_account_id\":
841
+ 85350008,\n\t\t\t\t\"admin_account_id\": 85350008\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
842
+ 324,\n\t\t\t\t\"name\": \"The Fail Train\",\n\t\t\t\t\"tag\": \"CHOO\",\n\t\t\t\t\"time_created\":
843
+ 1349397511,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 597009398803331170,\n\t\t\t\t\"logo_sponsor\":
844
+ 0,\n\t\t\t\t\"country_code\": \"us\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
845
+ 0,\n\t\t\t\t\"player_0_account_id\": 35047363,\n\t\t\t\t\"player_1_account_id\":
846
+ 55897135,\n\t\t\t\t\"player_2_account_id\": 57876911,\n\t\t\t\t\"player_3_account_id\":
847
+ 65818997,\n\t\t\t\t\"player_4_account_id\": 75399688,\n\t\t\t\t\"admin_account_id\":
848
+ 55897135\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 326,\n\t\t\t\t\"name\":
849
+ \"Blame it on Lag\",\n\t\t\t\t\"tag\": \"BioL\",\n\t\t\t\t\"time_created\":
850
+ 1349397513,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
851
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
852
+ 0,\n\t\t\t\t\"player_0_account_id\": 6229563,\n\t\t\t\t\"player_1_account_id\":
853
+ 38715218,\n\t\t\t\t\"player_2_account_id\": 42784298,\n\t\t\t\t\"player_3_account_id\":
854
+ 123254026,\n\t\t\t\t\"admin_account_id\": 42784298\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
855
+ 328,\n\t\t\t\t\"name\": \"Potato\",\n\t\t\t\t\"tag\": \"pot\",\n\t\t\t\t\"time_created\":
856
+ 1349397515,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
857
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
858
+ 0,\n\t\t\t\t\"player_0_account_id\": 60444121,\n\t\t\t\t\"admin_account_id\":
859
+ 60444121\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 330,\n\t\t\t\t\"name\":
860
+ \"Moop\",\n\t\t\t\t\"tag\": \"Moop\",\n\t\t\t\t\"time_created\": 1349397520,\n\t\t\t\t\"rating\":
861
+ \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\": 0,\n\t\t\t\t\"country_code\":
862
+ \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
863
+ 0,\n\t\t\t\t\"player_0_account_id\": 36545510,\n\t\t\t\t\"player_1_account_id\":
864
+ 91376290,\n\t\t\t\t\"admin_account_id\": 36545510\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
865
+ 335,\n\t\t\t\t\"name\": \"Team Lisp\",\n\t\t\t\t\"tag\": \"TL\",\n\t\t\t\t\"time_created\":
866
+ 1349397523,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 0,\n\t\t\t\t\"logo_sponsor\":
867
+ 0,\n\t\t\t\t\"country_code\": \"\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
868
+ 0,\n\t\t\t\t\"player_0_account_id\": 28934366,\n\t\t\t\t\"player_1_account_id\":
869
+ 33045145,\n\t\t\t\t\"player_2_account_id\": 34830396,\n\t\t\t\t\"player_3_account_id\":
870
+ 43647691,\n\t\t\t\t\"player_4_account_id\": 44500023,\n\t\t\t\t\"player_5_account_id\":
871
+ 89634901,\n\t\t\t\t\"admin_account_id\": 44500023\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\":
872
+ 336,\n\t\t\t\t\"name\": \"Gnome Busters United\",\n\t\t\t\t\"tag\": \"GBU\",\n\t\t\t\t\"time_created\":
873
+ 1349397528,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 918991495535603930,\n\t\t\t\t\"logo_sponsor\":
874
+ 918991495535608826,\n\t\t\t\t\"country_code\": \"fr\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
875
+ 0,\n\t\t\t\t\"player_0_account_id\": 19373067,\n\t\t\t\t\"player_1_account_id\":
876
+ 20679935,\n\t\t\t\t\"player_2_account_id\": 43642639,\n\t\t\t\t\"player_3_account_id\":
877
+ 52627644,\n\t\t\t\t\"player_4_account_id\": 87930974,\n\t\t\t\t\"admin_account_id\":
878
+ 14389621\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"team_id\": 346,\n\t\t\t\t\"name\":
879
+ \"Black Eight Squadron\",\n\t\t\t\t\"tag\": \"BES\",\n\t\t\t\t\"time_created\":
880
+ 1349397546,\n\t\t\t\t\"rating\": \"inactive\",\n\t\t\t\t\"logo\": 559828865908891842,\n\t\t\t\t\"logo_sponsor\":
881
+ 0,\n\t\t\t\t\"country_code\": \"cz\",\n\t\t\t\t\"url\": \"\",\n\t\t\t\t\"games_played_with_current_roster\":
882
+ 0,\n\t\t\t\t\"player_0_account_id\": 11043940,\n\t\t\t\t\"player_1_account_id\":
883
+ 30375525,\n\t\t\t\t\"player_2_account_id\": 33030511,\n\t\t\t\t\"player_3_account_id\":
884
+ 33672350,\n\t\t\t\t\"player_4_account_id\": 34713823,\n\t\t\t\t\"admin_account_id\":
885
+ 34713823\n\t\t\t}\n\t\t]\n\t\t\n\t}\n}"
886
+ http_version:
887
+ recorded_at: Sun, 07 Dec 2014 15:37:05 GMT
888
+ recorded_with: VCR 2.9.3