Spaces:
Sleeping
Sleeping
Jimin Park
commited on
Commit
·
8c94d1f
1
Parent(s):
40282f2
debug
Browse files- util/Meta_scrapper.py +38 -0
- util/Player_scrapper.py +18 -0
- util/Recent_match_scrapper.py +20 -0
- util/Weekly_meta_scrapper.py +18 -0
- util/__pycache__/Meta_scrapper.cpython-311.pyc +0 -0
- util/__pycache__/Player_scrapper.cpython-311.pyc +0 -0
- util/__pycache__/Recent_match_scrapper.cpython-311.pyc +0 -0
- util/__pycache__/Weekly_meta_scrapper.cpython-311.pyc +0 -0
- util/app_training_df_getter.py +2 -7
- util/data/feature_eng_stats.csv +0 -0
- util/data/meta_stats.csv +235 -234
- util/data/weekly_meta_stats.csv +147 -147
util/Meta_scrapper.py
CHANGED
@@ -19,6 +19,8 @@ TIER_COLOR_MAPPING = {
|
|
19 |
"#9AA4AF": 4, # Gray
|
20 |
}
|
21 |
|
|
|
|
|
22 |
def setup_driver():
|
23 |
"""Setup and return a configured Chrome WebDriver with optimized settings"""
|
24 |
chrome_options = Options()
|
@@ -37,6 +39,42 @@ def setup_driver():
|
|
37 |
# Remove log_level parameter from ChromeDriverManager
|
38 |
service = Service(ChromeDriverManager().install())
|
39 |
return webdriver.Chrome(service=service, options=chrome_options)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
def parse_rate(rate_str):
|
42 |
"""Convert percentage string to float"""
|
|
|
19 |
"#9AA4AF": 4, # Gray
|
20 |
}
|
21 |
|
22 |
+
|
23 |
+
'''Original driver
|
24 |
def setup_driver():
|
25 |
"""Setup and return a configured Chrome WebDriver with optimized settings"""
|
26 |
chrome_options = Options()
|
|
|
39 |
# Remove log_level parameter from ChromeDriverManager
|
40 |
service = Service(ChromeDriverManager().install())
|
41 |
return webdriver.Chrome(service=service, options=chrome_options)
|
42 |
+
'''
|
43 |
+
|
44 |
+
#Test setup
|
45 |
+
def setup_driver():
|
46 |
+
"""Setup and return a configured Chrome WebDriver with optimized settings."""
|
47 |
+
# Define chrome options
|
48 |
+
chrome_options = Options()
|
49 |
+
chrome_options.add_argument("--headless")
|
50 |
+
chrome_options.add_argument("--no-sandbox")
|
51 |
+
chrome_options.add_argument("--disable-dev-shm-usage")
|
52 |
+
chrome_options.add_argument("--disable-gpu")
|
53 |
+
chrome_options.add_argument("--disable-extensions")
|
54 |
+
chrome_options.add_argument("--disable-logging")
|
55 |
+
chrome_options.add_argument("--log-level=3")
|
56 |
+
chrome_options.add_argument("--silent")
|
57 |
+
chrome_options.add_argument(
|
58 |
+
"user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
|
59 |
+
)
|
60 |
+
|
61 |
+
# Check if we're running in Hugging Face Spaces or locally
|
62 |
+
if 'HF_SPACE' in os.environ:
|
63 |
+
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
64 |
+
print("Running on Hugging Face Space.")
|
65 |
+
chromedriver_path = ChromeDriverManager(version="131.0.6778.264").install()
|
66 |
+
else:
|
67 |
+
# Local environment setup
|
68 |
+
print("Running locally.")
|
69 |
+
chromedriver_path = ChromeDriverManager().install()
|
70 |
+
|
71 |
+
# Create the Service object using the installed chromedriver
|
72 |
+
service = Service(executable_path=chromedriver_path)
|
73 |
+
|
74 |
+
# Return the configured WebDriver instance
|
75 |
+
driver = webdriver.Chrome(service=service, options=chrome_options)
|
76 |
+
|
77 |
+
return driver
|
78 |
|
79 |
def parse_rate(rate_str):
|
80 |
"""Convert percentage string to float"""
|
util/Player_scrapper.py
CHANGED
@@ -28,6 +28,24 @@ def setup_driver():
|
|
28 |
options.add_argument(
|
29 |
"user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
|
30 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
return webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
|
32 |
|
33 |
def wait_and_find_element(driver, selector, timeout=20, description="element"):
|
|
|
28 |
options.add_argument(
|
29 |
"user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
|
30 |
)
|
31 |
+
|
32 |
+
# Check if we're running in Hugging Face Spaces or locally
|
33 |
+
if 'HF_SPACE' in os.environ:
|
34 |
+
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
35 |
+
print("Running on Hugging Face Space.")
|
36 |
+
chromedriver_path = ChromeDriverManager(version="131.0.6778.264").install()
|
37 |
+
else:
|
38 |
+
# Local environment setup
|
39 |
+
print("Running locally.")
|
40 |
+
chromedriver_path = ChromeDriverManager().install()
|
41 |
+
|
42 |
+
# Create the Service object using the installed chromedriver
|
43 |
+
service = Service(executable_path=chromedriver_path)
|
44 |
+
|
45 |
+
# Return the configured WebDriver instance
|
46 |
+
driver = webdriver.Chrome(service=service, options=options)
|
47 |
+
|
48 |
+
return driver
|
49 |
return webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
|
50 |
|
51 |
def wait_and_find_element(driver, selector, timeout=20, description="element"):
|
util/Recent_match_scrapper.py
CHANGED
@@ -22,6 +22,26 @@ def setup_driver():
|
|
22 |
'--disable-gpu', '--window-size=1920,1080']:
|
23 |
options.add_argument(arg)
|
24 |
options.add_argument('user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/91.0.4472.124')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
return webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
|
26 |
|
27 |
def get_tooltip_date(driver, element):
|
|
|
22 |
'--disable-gpu', '--window-size=1920,1080']:
|
23 |
options.add_argument(arg)
|
24 |
options.add_argument('user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/91.0.4472.124')
|
25 |
+
|
26 |
+
|
27 |
+
# Check if we're running in Hugging Face Spaces or locally
|
28 |
+
if 'HF_SPACE' in os.environ:
|
29 |
+
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
30 |
+
print("Running on Hugging Face Space.")
|
31 |
+
chromedriver_path = ChromeDriverManager(version="131.0.6778.264").install()
|
32 |
+
else:
|
33 |
+
# Local environment setup
|
34 |
+
print("Running locally.")
|
35 |
+
chromedriver_path = ChromeDriverManager().install()
|
36 |
+
|
37 |
+
# Create the Service object using the installed chromedriver
|
38 |
+
service = Service(executable_path=chromedriver_path)
|
39 |
+
|
40 |
+
# Return the configured WebDriver instance
|
41 |
+
driver = webdriver.Chrome(service=service, options=options)
|
42 |
+
|
43 |
+
return driver
|
44 |
+
|
45 |
return webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
|
46 |
|
47 |
def get_tooltip_date(driver, element):
|
util/Weekly_meta_scrapper.py
CHANGED
@@ -24,6 +24,24 @@ def setup_driver():
|
|
24 |
chrome_options.add_argument(
|
25 |
"user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
|
26 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
service = Service(ChromeDriverManager().install())
|
29 |
return webdriver.Chrome(service=service, options=chrome_options)
|
|
|
24 |
chrome_options.add_argument(
|
25 |
"user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
|
26 |
)
|
27 |
+
|
28 |
+
# Check if we're running in Hugging Face Spaces or locally
|
29 |
+
if 'HF_SPACE' in os.environ:
|
30 |
+
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
31 |
+
print("Running on Hugging Face Space.")
|
32 |
+
chromedriver_path = ChromeDriverManager(version="131.0.6778.264").install()
|
33 |
+
else:
|
34 |
+
# Local environment setup
|
35 |
+
print("Running locally.")
|
36 |
+
chromedriver_path = ChromeDriverManager().install()
|
37 |
+
|
38 |
+
# Create the Service object using the installed chromedriver
|
39 |
+
service = Service(executable_path=chromedriver_path)
|
40 |
+
|
41 |
+
# Return the configured WebDriver instance
|
42 |
+
driver = webdriver.Chrome(service=service, options=chrome_options)
|
43 |
+
|
44 |
+
return driver
|
45 |
|
46 |
service = Service(ChromeDriverManager().install())
|
47 |
return webdriver.Chrome(service=service, options=chrome_options)
|
util/__pycache__/Meta_scrapper.cpython-311.pyc
CHANGED
Binary files a/util/__pycache__/Meta_scrapper.cpython-311.pyc and b/util/__pycache__/Meta_scrapper.cpython-311.pyc differ
|
|
util/__pycache__/Player_scrapper.cpython-311.pyc
CHANGED
Binary files a/util/__pycache__/Player_scrapper.cpython-311.pyc and b/util/__pycache__/Player_scrapper.cpython-311.pyc differ
|
|
util/__pycache__/Recent_match_scrapper.cpython-311.pyc
CHANGED
Binary files a/util/__pycache__/Recent_match_scrapper.cpython-311.pyc and b/util/__pycache__/Recent_match_scrapper.cpython-311.pyc differ
|
|
util/__pycache__/Weekly_meta_scrapper.cpython-311.pyc
CHANGED
Binary files a/util/__pycache__/Weekly_meta_scrapper.cpython-311.pyc and b/util/__pycache__/Weekly_meta_scrapper.cpython-311.pyc differ
|
|
util/app_training_df_getter.py
CHANGED
@@ -434,12 +434,8 @@ def get_meta_stats():
|
|
434 |
|
435 |
def create_app_user_training_df(url):
|
436 |
try:
|
437 |
-
meta_stats = get_meta_stats()
|
438 |
-
|
439 |
-
weekly_meta_stats = get_weekly_meta()
|
440 |
-
|
441 |
-
print("========= Inside get_user_training_df(player_opgg_url) ============= \n")
|
442 |
-
print("input url: ", url, "\n")
|
443 |
|
444 |
# Input validation
|
445 |
if not url or not isinstance(url, str):
|
@@ -450,7 +446,6 @@ def create_app_user_training_df(url):
|
|
450 |
if not match:
|
451 |
raise ValueError(f"Could not parse region and username from URL: {url}\n Type(url): {type(url)}")
|
452 |
|
453 |
-
|
454 |
region = match.group(1)
|
455 |
username = match.group(2)
|
456 |
print(f"Extracted - Region: {region}, Username: {username}")
|
|
|
434 |
|
435 |
def create_app_user_training_df(url):
|
436 |
try:
|
437 |
+
#meta_stats = get_meta_stats()
|
438 |
+
#weekly_meta_stats = get_weekly_meta()
|
|
|
|
|
|
|
|
|
439 |
|
440 |
# Input validation
|
441 |
if not url or not isinstance(url, str):
|
|
|
446 |
if not match:
|
447 |
raise ValueError(f"Could not parse region and username from URL: {url}\n Type(url): {type(url)}")
|
448 |
|
|
|
449 |
region = match.group(1)
|
450 |
username = match.group(2)
|
451 |
print(f"Extracted - Region: {region}, Username: {username}")
|
util/data/feature_eng_stats.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
util/data/meta_stats.csv
CHANGED
@@ -1,236 +1,237 @@
|
|
1 |
rank,champion,tier,role,win_rate,pick_rate,ban_rate,counter1,counter2,counter3
|
2 |
-
1,Darius,1,top,0.
|
3 |
-
2,Cassiopeia,1,top,0.
|
4 |
-
3,Irelia,1,top,0.
|
5 |
-
4,Riven,1,top,0.
|
6 |
-
5,Urgot,1,top,0.
|
7 |
-
6,Sett,2,top,0.5118,0.
|
8 |
-
7,Aatrox,2,top,0.
|
9 |
-
8,Gnar,2,top,0.
|
10 |
-
9,Cho'Gath,2,top,0.
|
11 |
-
10,
|
12 |
-
11,
|
13 |
-
12,
|
14 |
-
13,Tryndamere,
|
15 |
-
14,
|
16 |
-
15,
|
17 |
-
16,
|
18 |
-
17,Renekton,
|
19 |
-
18,
|
20 |
-
19,
|
21 |
-
20,Warwick,3,top,0.
|
22 |
-
21,
|
23 |
-
22,
|
24 |
-
23,K'Sante,3,top,0.483,0.08070000000000001,0.
|
25 |
-
24,
|
26 |
-
25,
|
27 |
-
26,Volibear,3,top,0.
|
28 |
-
27,Jayce,3,top,0.
|
29 |
-
28,
|
30 |
-
29,
|
31 |
-
30,
|
32 |
-
31,
|
33 |
-
32,
|
34 |
-
33,Ornn,4,top,0.
|
35 |
-
34,
|
36 |
-
35,
|
37 |
-
36,Rumble,4,top,0.
|
38 |
-
37,Tahm Kench,4,top,0.
|
39 |
-
38,
|
40 |
-
39,
|
41 |
-
40,
|
42 |
-
41,Gwen,4,top,0.
|
43 |
-
42,
|
44 |
-
43,
|
45 |
-
44,
|
46 |
-
45,
|
47 |
-
46,
|
48 |
-
47,Dr. Mundo,4,top,0.
|
49 |
-
48,
|
50 |
-
49,
|
51 |
-
50,
|
52 |
-
51,
|
53 |
-
52,
|
54 |
-
53,
|
55 |
-
54,
|
56 |
-
55,
|
57 |
-
1,Viego,1,jungle,0.
|
58 |
-
2,Wukong,1,jungle,0.
|
59 |
-
3,Lee Sin,1,jungle,0.
|
60 |
-
4,
|
61 |
-
5,
|
62 |
-
6,
|
63 |
-
7,
|
64 |
-
8,Warwick,2,jungle,0.
|
65 |
-
9,Skarner,2,jungle,0.
|
66 |
-
10,Hecarim,2,jungle,0.
|
67 |
-
11,Jarvan IV,2,jungle,0.
|
68 |
-
12,Nunu & Willump,2,jungle,0.
|
69 |
-
13,
|
70 |
-
14,
|
71 |
-
15,Lillia,2,jungle,0.
|
72 |
-
16,Bel'Veth,2,jungle,0.
|
73 |
-
17,Udyr,3,jungle,0.
|
74 |
-
18,Volibear,3,jungle,0.
|
75 |
-
19,Kindred,3,jungle,0.
|
76 |
-
20,Karthus,3,jungle,0.
|
77 |
-
21,Fiddlesticks,3,jungle,0.
|
78 |
-
22,Kha'Zix,3,jungle,0.
|
79 |
-
23,
|
80 |
-
24,
|
81 |
-
25,
|
82 |
-
26,Briar,3,jungle,0.
|
83 |
-
27,
|
84 |
-
28,
|
85 |
-
29,
|
86 |
-
30,
|
87 |
-
31,Zac,4,jungle,0.
|
88 |
-
32,
|
89 |
-
33,
|
90 |
-
34,Nidalee,4,jungle,0.
|
91 |
-
35,Evelynn,4,jungle,0.
|
92 |
-
36,
|
93 |
-
37,
|
94 |
-
38,
|
95 |
-
39,
|
96 |
-
40,Shyvana,5,jungle,0.
|
97 |
-
41,
|
98 |
-
42,
|
99 |
-
43,
|
100 |
-
44,
|
101 |
-
45,Pantheon,5,jungle,0.
|
102 |
-
46,
|
103 |
-
47,Gragas,5,jungle,0.
|
104 |
-
48,Ambessa,5,jungle,0.
|
105 |
-
1,Viktor,1,mid,0.
|
106 |
-
2,Cassiopeia,1,mid,0.
|
107 |
-
3,Zoe,1,mid,0.
|
108 |
-
4,Sylas,1,mid,0.
|
109 |
-
5,Lux,1,mid,0.
|
110 |
-
6,
|
111 |
-
7,
|
112 |
-
8,
|
113 |
-
9,Neeko,1,mid,0.
|
114 |
-
10,
|
115 |
-
11,
|
116 |
-
12,
|
117 |
-
13,Akali,2,mid,0.
|
118 |
-
14,
|
119 |
-
15,
|
120 |
-
16,Kayle,2,mid,0.
|
121 |
-
17,
|
122 |
-
18,
|
123 |
-
19,Aurora,2,mid,0.
|
124 |
-
20,
|
125 |
-
21,LeBlanc,2,mid,0.
|
126 |
-
22,Akshan,2,mid,0.
|
127 |
-
23,Veigar,2,mid,0.
|
128 |
-
24,Hwei,2,mid,0.
|
129 |
-
25,
|
130 |
-
26,
|
131 |
-
27,
|
132 |
-
28,
|
133 |
-
29,
|
134 |
-
30,Talon,
|
135 |
-
31,
|
136 |
-
32,
|
137 |
-
33,
|
138 |
-
34,
|
139 |
-
35,
|
140 |
-
36,Kassadin,3,mid,0.
|
141 |
-
37,
|
142 |
38,Ryze,3,mid,0.4974,0.023,0.0028000000000000004,Galio,Katarina,Viktor
|
143 |
-
39,
|
144 |
-
40,Yone,3,mid,0.
|
145 |
-
41,Fizz,3,mid,0.
|
146 |
-
42,Kennen,3,mid,0.
|
147 |
-
43,
|
148 |
-
44,
|
149 |
-
45,Azir,3,mid,0.
|
150 |
-
46,Cho'Gath,3,mid,0.
|
151 |
-
47,
|
152 |
-
48,Pantheon,3,mid,0.
|
153 |
-
49,
|
154 |
-
50,
|
155 |
-
51,Gragas,
|
156 |
-
52,
|
157 |
-
53,
|
158 |
-
54,Renekton,4,mid,0.
|
159 |
-
55,Jayce,4,mid,0.
|
160 |
-
1,Miss Fortune,1,adc,0.
|
161 |
-
2,Corki,1,adc,0.
|
162 |
-
3,Jinx,1,adc,0.
|
163 |
-
4,Viktor,2,adc,0.
|
164 |
-
5,
|
165 |
-
6,Ezreal,2,adc,0.
|
166 |
-
7,
|
167 |
-
8,
|
168 |
-
9,
|
169 |
-
10,
|
170 |
-
11,
|
171 |
-
12,Jhin,3,adc,0.
|
172 |
-
13,
|
173 |
-
14,
|
174 |
-
15,
|
175 |
-
16,
|
176 |
-
17,
|
177 |
-
18,
|
178 |
-
19,
|
179 |
-
20,Sivir,3,adc,0.
|
180 |
-
21,Lucian,3,adc,0.
|
181 |
-
22,
|
182 |
-
23,
|
183 |
-
24,
|
184 |
-
25,
|
185 |
-
26,
|
186 |
-
27,Zeri,4,adc,0.
|
187 |
-
28,Swain,4,adc,0.
|
188 |
-
29,Brand,
|
189 |
-
30,Yasuo,
|
190 |
-
31,Aphelios,5,adc,0.
|
191 |
-
32,
|
192 |
-
33,
|
193 |
-
1,Lulu,1,support,0.
|
194 |
-
2,Janna,1,support,0.
|
195 |
-
3,Rell,
|
196 |
-
4,
|
197 |
-
5,
|
198 |
-
6,
|
199 |
-
7,
|
200 |
-
8,
|
201 |
-
9,
|
202 |
-
10,
|
203 |
-
11,Taric,
|
204 |
-
12,
|
205 |
-
13,Pyke,
|
206 |
-
14,
|
207 |
-
15,Alistar,
|
208 |
-
16,Nautilus,
|
209 |
-
17,Vel'Koz,
|
210 |
-
18,
|
211 |
-
19,
|
212 |
-
20,Tahm Kench,
|
213 |
-
21,
|
214 |
-
22,
|
215 |
-
23,
|
216 |
-
24,
|
217 |
-
25,
|
218 |
-
26,Bard,
|
219 |
-
27,
|
220 |
-
28,
|
221 |
-
29,Rakan,4,support,0.
|
222 |
-
30,Xerath,4,support,0.
|
223 |
-
31,Morgana,4,support,0.
|
224 |
-
32,
|
225 |
-
33,
|
226 |
-
34,
|
227 |
-
35,
|
228 |
-
36,
|
229 |
-
37,
|
230 |
-
38,Zoe,5,support,0.
|
231 |
-
39,Swain,5,support,0.
|
232 |
-
40,Brand,5,support,0.
|
233 |
-
41,Camille,5,support,0.
|
234 |
-
42,
|
235 |
-
43,
|
236 |
-
44,
|
|
|
|
1 |
rank,champion,tier,role,win_rate,pick_rate,ban_rate,counter1,counter2,counter3
|
2 |
+
1,Darius,1,top,0.5173,0.0757,0.1457,Teemo,Kennen,Quinn
|
3 |
+
2,Cassiopeia,1,top,0.5686,0.0103,0.0075,,,
|
4 |
+
3,Irelia,1,top,0.5164,0.061799999999999994,0.1436,Trundle,Cho'Gath,Poppy
|
5 |
+
4,Riven,1,top,0.5236999999999999,0.048,0.028300000000000002,Poppy,Kennen,Gnar
|
6 |
+
5,Urgot,1,top,0.535,0.0239,0.0039000000000000003,Malphite,Ornn,Irelia
|
7 |
+
6,Sett,2,top,0.5118,0.0513,0.0088,Singed,Riven,Cho'Gath
|
8 |
+
7,Aatrox,2,top,0.49479999999999996,0.0852,0.0946,Udyr,Kled,Heimerdinger
|
9 |
+
8,Gnar,2,top,0.5099,0.0464,0.0246,Teemo,Sett,Gwen
|
10 |
+
9,Cho'Gath,2,top,0.5183,0.0338,0.0058,Malphite,Trundle,Kayle
|
11 |
+
10,Mordekaiser,2,top,0.5069,0.0504,0.049800000000000004,Gnar,Teemo,Sylas
|
12 |
+
11,Camille,2,top,0.5146999999999999,0.037200000000000004,0.0174,Poppy,Sion,Fiora
|
13 |
+
12,Trundle,2,top,0.5309,0.018799999999999997,0.0048,Camille,Mordekaiser,Riven
|
14 |
+
13,Tryndamere,2,top,0.5277000000000001,0.0206,0.0137,Gnar,Ambessa,Jax
|
15 |
+
14,Olaf,2,top,0.5315,0.0176,0.012199999999999999,Gnar,Volibear,Urgot
|
16 |
+
15,Jax,2,top,0.5036999999999999,0.046,0.07719999999999999,Yorick,Gnar,Teemo
|
17 |
+
16,Maokai,2,top,0.5017,0.0496,0.03,Warwick,Yorick,Kled
|
18 |
+
17,Renekton,2,top,0.4946,0.0649,0.049100000000000005,Urgot,Nasus,Cho'Gath
|
19 |
+
18,Gragas,2,top,0.5052,0.042199999999999994,0.0199,Cho'Gath,Fiora,Sion
|
20 |
+
19,Fiora,3,top,0.5055,0.039,0.0706,Tahm Kench,Vladimir,Ambessa
|
21 |
+
20,Warwick,3,top,0.5106,0.0273,0.0668,Ornn,Dr. Mundo,Trundle
|
22 |
+
21,Teemo,3,top,0.5205,0.021,0.0329,Ambessa,Gragas,Garen
|
23 |
+
22,Ambessa,3,top,0.4921,0.0509,0.1991,Trundle,Pantheon,Warwick
|
24 |
+
23,K'Sante,3,top,0.483,0.08070000000000001,0.09,Cassiopeia,Swain,Trundle
|
25 |
+
24,Malphite,3,top,0.5034000000000001,0.0374,0.059699999999999996,Warwick,Shen,Garen
|
26 |
+
25,Kayle,3,top,0.5221,0.019,0.0068000000000000005,Ambessa,Sett,Malphite
|
27 |
+
26,Volibear,3,top,0.49570000000000003,0.0435,0.0292,Akali,Kayle,Tryndamere
|
28 |
+
27,Jayce,3,top,0.47619999999999996,0.0857,0.0533,Cho'Gath,Urgot,Quinn
|
29 |
+
28,Singed,3,top,0.5188,0.0182,0.0027,Gnar,Fiora,Garen
|
30 |
+
29,Sion,3,top,0.4932,0.0471,0.006500000000000001,Ambessa,Aurora,Mordekaiser
|
31 |
+
30,Kled,4,top,0.5189,0.0168,0.0048,Ambessa,Irelia,Ornn
|
32 |
+
31,Vladimir,4,top,0.5065999999999999,0.0232,0.0167,Sett,Sion,Aatrox
|
33 |
+
32,Garen,4,top,0.4907,0.043,0.0209,Camille,Irelia,Fiora
|
34 |
+
33,Ornn,4,top,0.4936,0.038900000000000004,0.0060999999999999995,Olaf,Aurora,Shen
|
35 |
+
34,Akali,4,top,0.5108,0.0161,0.018500000000000003,Gragas,Jax,Irelia
|
36 |
+
35,Shen,4,top,0.49420000000000003,0.0335,0.0043,Gragas,Camille,Urgot
|
37 |
+
36,Rumble,4,top,0.5054,0.0206,0.0073,Ornn,Sett,Jax
|
38 |
+
37,Tahm Kench,4,top,0.4943,0.0281,0.0403,Ambessa,Tryndamere,Aatrox
|
39 |
+
38,Yorick,4,top,0.5024000000000001,0.022000000000000002,0.0245,Tahm Kench,Gangplank,Renekton
|
40 |
+
39,Wukong,4,top,0.5171,0.0113,0.0075,Ambessa,,
|
41 |
+
40,Gangplank,4,top,0.49340000000000006,0.030299999999999997,0.0115,Rumble,Cho'Gath,Camille
|
42 |
+
41,Gwen,4,top,0.49060000000000004,0.032,0.025099999999999997,Fiora,Warwick,Zac
|
43 |
+
42,Heimerdinger,4,top,0.5233,0.0089,0.0051,,,
|
44 |
+
43,Kennen,4,top,0.5075999999999999,0.0158,0.009899999999999999,Irelia,Renekton,Gnar
|
45 |
+
44,Pantheon,4,top,0.49810000000000004,0.0213,0.0051,Volibear,Maokai,Mordekaiser
|
46 |
+
45,Poppy,4,top,0.5,0.0178,0.0319,Mordekaiser,Sion,Maokai
|
47 |
+
46,Yone,4,top,0.47240000000000004,0.05,0.037000000000000005,Malphite,Urgot,Vladimir
|
48 |
+
47,Dr. Mundo,4,top,0.4819,0.0339,0.0183,Gwen,Shen,Ornn
|
49 |
+
48,Quinn,4,top,0.524,0.0068000000000000005,0.0027,,,
|
50 |
+
49,Illaoi,5,top,0.4903,0.020099999999999996,0.045700000000000005,Garen,Jax,Ornn
|
51 |
+
50,Aurora,5,top,0.4854,0.018600000000000002,0.0382,Darius,Jayce,Sett
|
52 |
+
51,Vayne,5,top,0.511,0.0078000000000000005,0.0044,K'Sante,,
|
53 |
+
52,Yasuo,5,top,0.4794,0.0203,0.0349,Riven,Darius,Fiora
|
54 |
+
53,Zac,5,top,0.4929,0.0123,0.0074,Maokai,K'Sante,Aatrox
|
55 |
+
54,Nasus,5,top,0.4824,0.018500000000000003,0.0259,K'Sante,Gnar,Sion
|
56 |
+
55,Ryze,5,top,0.5005,0.009300000000000001,0.0011,Teemo,Irelia,
|
57 |
+
1,Viego,1,jungle,0.51,0.19879999999999998,0.1543,Teemo,Amumu,Gwen
|
58 |
+
2,Wukong,1,jungle,0.5233,0.0868,0.0572,Rek'Sai,Lillia,Udyr
|
59 |
+
3,Lee Sin,1,jungle,0.5047,0.1925,0.1435,Ivern,Warwick,Zyra
|
60 |
+
4,Amumu,2,jungle,0.5285,0.030899999999999997,0.0158,Diana,Zac,Nunu & Willump
|
61 |
+
5,Gwen,2,jungle,0.5432,0.0125,0.0097,Skarner,Diana,Lee Sin
|
62 |
+
6,Nocturne,2,jungle,0.516,0.0546,0.0701,Gwen,Amumu,Bel'Veth
|
63 |
+
7,Diana,2,jungle,0.5171,0.048,0.0123,Volibear,Master Yi,Skarner
|
64 |
+
8,Warwick,2,jungle,0.5196000000000001,0.0351,0.0851,Kindred,Amumu,Hecarim
|
65 |
+
9,Skarner,2,jungle,0.5165,0.0446,0.1093,Briar,Lillia,Master Yi
|
66 |
+
10,Hecarim,2,jungle,0.5112,0.0536,0.039900000000000005,Sejuani,Amumu,Bel'Veth
|
67 |
+
11,Jarvan IV,2,jungle,0.508,0.0555,0.0158,Gwen,Volibear,Nidalee
|
68 |
+
12,Nunu & Willump,2,jungle,0.5166,0.034,0.009300000000000001,Talon,Warwick,Fiddlesticks
|
69 |
+
13,Graves,2,jungle,0.4916,0.11800000000000001,0.163,Ivern,Bel'Veth,Zyra
|
70 |
+
14,Xin Zhao,2,jungle,0.5123,0.0412,0.0072,Nocturne,Udyr,Kindred
|
71 |
+
15,Lillia,2,jungle,0.5071,0.041100000000000005,0.0347,Rengar,Xin Zhao,Diana
|
72 |
+
16,Bel'Veth,2,jungle,0.5115,0.0301,0.056900000000000006,Nunu & Willump,Jarvan IV,Wukong
|
73 |
+
17,Udyr,3,jungle,0.5091,0.0281,0.0264,Amumu,Rengar,Hecarim
|
74 |
+
18,Volibear,3,jungle,0.5139,0.0203,0.013500000000000002,Ekko,Zac,Shaco
|
75 |
+
19,Kindred,3,jungle,0.5034000000000001,0.0369,0.0333,Skarner,Karthus,Briar
|
76 |
+
20,Karthus,3,jungle,0.4997,0.0364,0.0934,Taliyah,Xin Zhao,Udyr
|
77 |
+
21,Fiddlesticks,3,jungle,0.5088,0.0216,0.0127,Nocturne,Elise,Xin Zhao
|
78 |
+
22,Kha'Zix,3,jungle,0.4877,0.0655,0.0553,Ivern,Nocturne,Wukong
|
79 |
+
23,Talon,3,jungle,0.5056,0.0225,0.0068000000000000005,Rengar,Hecarim,Lillia
|
80 |
+
24,Elise,3,jungle,0.4854,0.0562,0.0684,Taliyah,Warwick,Nocturne
|
81 |
+
25,Kayn,3,jungle,0.485,0.0592,0.0464,Fiddlesticks,Shyvana,Evelynn
|
82 |
+
26,Briar,3,jungle,0.501,0.0242,0.021400000000000002,Master Yi,Kayn,Vi
|
83 |
+
27,Rek'Sai,4,jungle,0.5044,0.018500000000000003,0.009000000000000001,Nunu & Willump,Skarner,Diana
|
84 |
+
28,Vi,4,jungle,0.4829,0.059500000000000004,0.0171,Kindred,Gragas,Kayn
|
85 |
+
29,Ekko,4,jungle,0.4875,0.0424,0.0078000000000000005,Amumu,Kha'Zix,Skarner
|
86 |
+
30,Zyra,4,jungle,0.5031,0.0171,0.0118,Wukong,Karthus,Nidalee
|
87 |
+
31,Zac,4,jungle,0.48710000000000003,0.0354,0.021099999999999997,Diana,Lillia,Evelynn
|
88 |
+
32,Master Yi,4,jungle,0.4855,0.0366,0.0575,Sejuani,Evelynn,Talon
|
89 |
+
33,Ivern,4,jungle,0.5003,0.0139,0.0083,Shaco,Karthus,Hecarim
|
90 |
+
34,Nidalee,4,jungle,0.4756,0.048499999999999995,0.044800000000000006,Udyr,Kindred,Briar
|
91 |
+
35,Evelynn,4,jungle,0.4916,0.0203,0.0319,Skarner,Jarvan IV,Nocturne
|
92 |
+
36,Taliyah,4,jungle,0.49369999999999997,0.0171,0.0044,Zac,Skarner,Wukong
|
93 |
+
37,Rengar,5,jungle,0.48310000000000003,0.026699999999999998,0.0495,Hecarim,Nocturne,Fiddlesticks
|
94 |
+
38,Poppy,5,jungle,0.5044,0.0066,0.011699999999999999,,,
|
95 |
+
39,Shaco,5,jungle,0.46659999999999996,0.0429,0.136,Bel'Veth,Lillia,Kindred
|
96 |
+
40,Shyvana,5,jungle,0.48479999999999995,0.0129,0.0031,Nocturne,Hecarim,Viego
|
97 |
+
41,Teemo,5,jungle,0.49729999999999996,0.0055000000000000005,0.0086,Lee Sin,,
|
98 |
+
42,Sejuani,5,jungle,0.4718,0.0213,0.0026,Wukong,Ekko,Lee Sin
|
99 |
+
43,Qiyana,5,jungle,0.48969999999999997,0.0067,0.0016,Viego,Lee Sin,
|
100 |
+
44,Rammus,5,jungle,0.4813,0.010700000000000001,0.0252,Viego,,
|
101 |
+
45,Pantheon,5,jungle,0.4867,0.0073,0.0017000000000000001,Graves,Viego,Lee Sin
|
102 |
+
46,Zed,5,jungle,0.4747,0.011399999999999999,0.0242,Wukong,Lee Sin,Elise
|
103 |
+
47,Gragas,5,jungle,0.46020000000000005,0.0258,0.012,Kindred,Xin Zhao,Bel'Veth
|
104 |
+
48,Ambessa,5,jungle,0.46909999999999996,0.0072,0.028300000000000002,Wukong,Graves,Viego
|
105 |
+
1,Viktor,1,mid,0.5033,0.1384,0.33390000000000003,Naafiri,Zoe,Neeko
|
106 |
+
2,Cassiopeia,1,mid,0.5398,0.0216,0.0159,Irelia,Zed,Vladimir
|
107 |
+
3,Zoe,1,mid,0.5322,0.0297,0.0134,Ekko,Malzahar,Syndra
|
108 |
+
4,Sylas,1,mid,0.5044,0.10679999999999999,0.09230000000000001,Cassiopeia,Malzahar,Neeko
|
109 |
+
5,Lux,1,mid,0.5207999999999999,0.037200000000000004,0.013999999999999999,Azir,Zoe,Cassiopeia
|
110 |
+
6,Irelia,1,mid,0.5158,0.0381,0.08869999999999999,Azir,Veigar,Swain
|
111 |
+
7,Galio,1,mid,0.513,0.053099999999999994,0.0373,Lux,Qiyana,Corki
|
112 |
+
8,Ahri,1,mid,0.49979999999999997,0.09849999999999999,0.0352,Zoe,Ekko,Kennen
|
113 |
+
9,Neeko,1,mid,0.5461,0.0089,0.0025,Aurora,,
|
114 |
+
10,Syndra,2,mid,0.5057,0.0637,0.0384,Twisted Fate,Anivia,Qiyana
|
115 |
+
11,Vladimir,2,mid,0.5149,0.0356,0.025699999999999997,Syndra,Kassadin,Ekko
|
116 |
+
12,Xerath,2,mid,0.5164,0.0302,0.0245,Talon,Zoe,Irelia
|
117 |
+
13,Akali,2,mid,0.4951,0.08380000000000001,0.0966,Naafiri,Aurelion Sol,Xerath
|
118 |
+
14,Taliyah,2,mid,0.5253,0.0197,0.0051,Akshan,Katarina,Galio
|
119 |
+
15,Garen,2,mid,0.5488000000000001,0.0054,0.0026,,,
|
120 |
+
16,Kayle,2,mid,0.5458,0.0063,0.0022,,,
|
121 |
+
17,Malzahar,2,mid,0.5115999999999999,0.0336,0.0333,Lissandra,Galio,Twisted Fate
|
122 |
+
18,Lissandra,2,mid,0.5123,0.0318,0.0144,Twisted Fate,Sylas,Cassiopeia
|
123 |
+
19,Aurora,2,mid,0.49700000000000005,0.058499999999999996,0.1198,Lux,Malzahar,Qiyana
|
124 |
+
20,Vex,2,mid,0.5093,0.0348,0.0526,Vladimir,Lux,Akshan
|
125 |
+
21,LeBlanc,2,mid,0.49560000000000004,0.0584,0.2102,Kassadin,Ekko,Cassiopeia
|
126 |
+
22,Akshan,2,mid,0.5107,0.028300000000000002,0.0245,Anivia,Vladimir,Yasuo
|
127 |
+
23,Veigar,2,mid,0.5126,0.0248,0.004699999999999999,Syndra,Zed,Yasuo
|
128 |
+
24,Hwei,2,mid,0.4917,0.06480000000000001,0.056900000000000006,Katarina,Cassiopeia,Aurelion Sol
|
129 |
+
25,Yasuo,2,mid,0.4865,0.0706,0.1216,Xerath,Vel'Koz,Aurelion Sol
|
130 |
+
26,Katarina,2,mid,0.4867,0.0758,0.0662,Cassiopeia,Aurelion Sol,Lissandra
|
131 |
+
27,Ambessa,2,mid,0.5273,0.0069,0.027000000000000003,,,
|
132 |
+
28,Qiyana,2,mid,0.5085999999999999,0.0241,0.0058,Vex,Xerath,LeBlanc
|
133 |
+
29,Anivia,3,mid,0.5093,0.0212,0.0147,Malzahar,Aurora,Lux
|
134 |
+
30,Talon,3,mid,0.4989,0.0336,0.0103,Ryze,Irelia,Qiyana
|
135 |
+
31,Vel'Koz,3,mid,0.5177,0.0125,0.0025,Hwei,Sylas,Syndra
|
136 |
+
32,Ekko,3,mid,0.4996,0.0273,0.005,Lissandra,Aurora,Xerath
|
137 |
+
33,Zed,3,mid,0.48200000000000004,0.0572,0.1225,Vex,Vladimir,Taliyah
|
138 |
+
34,Annie,3,mid,0.5192,0.0098,0.0017000000000000001,Katarina,Sylas,Syndra
|
139 |
+
35,Swain,3,mid,0.5049,0.018500000000000003,0.0084,Hwei,Zed,Ahri
|
140 |
+
36,Kassadin,3,mid,0.49939999999999996,0.024300000000000002,0.0291,Irelia,Galio,Lux
|
141 |
+
37,Orianna,3,mid,0.48450000000000004,0.044500000000000005,0.0089,Ryze,Cassiopeia,Diana
|
142 |
38,Ryze,3,mid,0.4974,0.023,0.0028000000000000004,Galio,Katarina,Viktor
|
143 |
+
39,Aurelion Sol,3,mid,0.5005,0.0183,0.005699999999999999,Vladimir,Veigar,Lux
|
144 |
+
40,Yone,3,mid,0.46950000000000003,0.0721,0.0535,Lissandra,Akshan,Xerath
|
145 |
+
41,Fizz,3,mid,0.48829999999999996,0.026600000000000002,0.0288,Ryze,Veigar,Galio
|
146 |
+
42,Kennen,3,mid,0.5179,0.005600000000000001,0.0034999999999999996,Sylas,,
|
147 |
+
43,Diana,3,mid,0.484,0.0254,0.0066,Cassiopeia,Vex,Hwei
|
148 |
+
44,Twisted Fate,3,mid,0.48460000000000003,0.0254,0.0026,Orianna,Lux,Ekko
|
149 |
+
45,Azir,3,mid,0.4849,0.0219,0.0032,LeBlanc,Galio,Vladimir
|
150 |
+
46,Cho'Gath,3,mid,0.5097999999999999,0.0054,0.0009,Viktor,,
|
151 |
+
47,Brand,3,mid,0.5104,0.0051,0.0026,Viktor,,
|
152 |
+
48,Pantheon,3,mid,0.5036,0.0067,0.0016,Sylas,Yone,
|
153 |
+
49,Naafiri,3,mid,0.49570000000000003,0.0102,0.0034999999999999996,Ahri,,
|
154 |
+
50,Corki,3,mid,0.4914,0.011200000000000002,0.0074,Aurora,LeBlanc,Ahri
|
155 |
+
51,Gragas,4,mid,0.4902,0.0089,0.0042,Ahri,Katarina,
|
156 |
+
52,Malphite,4,mid,0.49229999999999996,0.0063,0.01,Sylas,,
|
157 |
+
53,Ziggs,4,mid,0.4943,0.006,0.002,Viktor,,
|
158 |
+
54,Renekton,4,mid,0.49520000000000003,0.0051,0.0038,,,
|
159 |
+
55,Jayce,4,mid,0.4619,0.0192,0.011899999999999999,LeBlanc,Galio,Sylas
|
160 |
+
1,Miss Fortune,1,adc,0.5253,0.1149,0.0398,Seraphine,Hwei,Corki
|
161 |
+
2,Corki,1,adc,0.5223,0.0818,0.054400000000000004,Viktor,Nilah,Vayne
|
162 |
+
3,Jinx,1,adc,0.5065999999999999,0.1827,0.037000000000000005,Lux,Veigar,Varus
|
163 |
+
4,Viktor,2,adc,0.5221,0.0196,0.0475,Samira,Draven,Kai'Sa
|
164 |
+
5,Vayne,2,adc,0.5207,0.037200000000000004,0.021099999999999997,Samira,Aphelios,Draven
|
165 |
+
6,Ezreal,2,adc,0.4915,0.19010000000000002,0.057800000000000004,Lux,Nilah,Kog'Maw
|
166 |
+
7,Caitlyn,2,adc,0.49060000000000004,0.1753,0.24969999999999998,Nilah,Ziggs,Brand
|
167 |
+
8,Varus,3,adc,0.5043,0.075,0.0184,Hwei,Tristana,Viktor
|
168 |
+
9,Seraphine,3,adc,0.5373,0.009399999999999999,0.0019,Smolder,Draven,Jinx
|
169 |
+
10,Lux,3,adc,0.5342,0.0105,0.004,Corki,Kai'Sa,
|
170 |
+
11,Kog'Maw,3,adc,0.5241,0.0209,0.0101,Aphelios,Lucian,Caitlyn
|
171 |
+
12,Jhin,3,adc,0.485,0.18100000000000002,0.0277,Brand,Lux,Samira
|
172 |
+
13,Draven,3,adc,0.5009,0.0646,0.2643,Twitch,Swain,Zeri
|
173 |
+
14,Nilah,3,adc,0.5242,0.0174,0.0319,Xayah,Jinx,Ashe
|
174 |
+
15,Xayah,3,adc,0.5117,0.0374,0.0058,Vayne,Zeri,Sivir
|
175 |
+
16,Veigar,3,adc,0.5422,0.0054,0.001,Ashe,,
|
176 |
+
17,Twitch,3,adc,0.5108,0.0362,0.0192,Kog'Maw,Corki,Kai'Sa
|
177 |
+
18,Ashe,3,adc,0.4817,0.1611,0.2029,Swain,Seraphine,Twitch
|
178 |
+
19,Kai'Sa,3,adc,0.4889,0.1243,0.0132,Seraphine,Nilah,Samira
|
179 |
+
20,Sivir,3,adc,0.5052,0.043899999999999995,0.0079,Kog'Maw,Viktor,Vayne
|
180 |
+
21,Lucian,3,adc,0.5001,0.0536,0.008100000000000001,Viktor,Xayah,Samira
|
181 |
+
22,Kalista,3,adc,0.49939999999999996,0.0418,0.021,Vayne,Corki,Smolder
|
182 |
+
23,Samira,3,adc,0.4993,0.041299999999999996,0.0434,Xayah,Sivir,Miss Fortune
|
183 |
+
24,Ziggs,3,adc,0.5127,0.018500000000000003,0.0064,Smolder,Kai'Sa,Sivir
|
184 |
+
25,Tristana,4,adc,0.4988,0.032400000000000005,0.0034999999999999996,Smolder,Vayne,Aphelios
|
185 |
+
26,Hwei,4,adc,0.5093,0.013300000000000001,0.011699999999999999,Corki,Kai'Sa,Ashe
|
186 |
+
27,Zeri,4,adc,0.4961,0.0278,0.0025,Tristana,Varus,Vayne
|
187 |
+
28,Swain,4,adc,0.505,0.0144,0.0066,Jhin,Miss Fortune,Ezreal
|
188 |
+
29,Brand,4,adc,0.5157,0.0067,0.0034000000000000002,Ezreal,Jinx,
|
189 |
+
30,Yasuo,4,adc,0.5038,0.01,0.0173,Jinx,Corki,Kai'Sa
|
190 |
+
31,Aphelios,5,adc,0.4757,0.045700000000000005,0.0060999999999999995,Corki,Swain,Varus
|
191 |
+
32,Smolder,5,adc,0.47490000000000004,0.0348,0.014499999999999999,Vayne,Viktor,Kog'Maw
|
192 |
+
33,Karthus,5,adc,0.4975,0.0079,0.0206,Draven,Jhin,Jinx
|
193 |
+
1,Lulu,1,support,0.5157,0.1467,0.1837,Sylas,Vel'Koz,Zoe
|
194 |
+
2,Janna,1,support,0.5285,0.0703,0.0274,Zyra,Elise,Seraphine
|
195 |
+
3,Rell,1,support,0.5181,0.0754,0.0319,Taric,Janna,Maokai
|
196 |
+
4,Nami,1,support,0.5123,0.09359999999999999,0.0083,Zoe,Taric,Blitzcrank
|
197 |
+
5,Thresh,1,support,0.5036999999999999,0.1282,0.053200000000000004,Sona,Renata Glasc,Brand
|
198 |
+
6,Braum,1,support,0.5168,0.0694,0.0662,Poppy,Soraka,Galio
|
199 |
+
7,Senna,1,support,0.5231,0.051100000000000007,0.015,Poppy,Vel'Koz,Zilean
|
200 |
+
8,Karma,2,support,0.4986,0.1093,0.0437,Braum,Shaco,Seraphine
|
201 |
+
9,Poppy,2,support,0.5196999999999999,0.0385,0.0674,Maokai,Janna,Seraphine
|
202 |
+
10,Maokai,2,support,0.5253,0.0294,0.0174,Soraka,Janna,Tahm Kench
|
203 |
+
11,Taric,2,support,0.5367999999999999,0.0178,0.0036,Braum,Alistar,Senna
|
204 |
+
12,Soraka,2,support,0.51,0.045700000000000005,0.0166,Swain,Bard,Xerath
|
205 |
+
13,Pyke,2,support,0.48960000000000004,0.084,0.34869999999999995,Maokai,Taric,Rell
|
206 |
+
14,Elise,2,support,0.5239,0.0208,0.025,Maokai,Senna,Leona
|
207 |
+
15,Alistar,2,support,0.5103,0.041100000000000005,0.013600000000000001,Elise,Morgana,Pantheon
|
208 |
+
16,Nautilus,2,support,0.4865,0.0983,0.1247,Shaco,Renata Glasc,Hwei
|
209 |
+
17,Vel'Koz,2,support,0.5169,0.0275,0.0055000000000000005,Zyra,Pyke,Sona
|
210 |
+
18,Milio,3,support,0.4991,0.0537,0.027000000000000003,Morgana,Senna,Pantheon
|
211 |
+
19,Blitzcrank,3,support,0.4951,0.057999999999999996,0.17579999999999998,Sona,Taric,Senna
|
212 |
+
20,Tahm Kench,3,support,0.5023,0.0416,0.058499999999999996,Alistar,Nami,Blitzcrank
|
213 |
+
21,Seraphine,3,support,0.5049,0.0348,0.0069,Xerath,Bard,Zilean
|
214 |
+
22,Sona,3,support,0.5147999999999999,0.0226,0.0013,Janna,Pyke,Leona
|
215 |
+
23,Lux,3,support,0.4914,0.0593,0.0219,Taric,Alistar,Bard
|
216 |
+
24,Leona,3,support,0.4882,0.0613,0.049699999999999994,Tahm Kench,Zilean,Renata Glasc
|
217 |
+
25,Zyra,3,support,0.5046,0.028399999999999998,0.019299999999999998,Seraphine,Soraka,Yuumi
|
218 |
+
26,Bard,3,support,0.491,0.049699999999999994,0.0074,Maokai,Poppy,Thresh
|
219 |
+
27,Renata Glasc,3,support,0.5027,0.025,0.0036,Braum,Nami,Karma
|
220 |
+
28,Neeko,4,support,0.5039,0.021400000000000002,0.006,Seraphine,Poppy,Janna
|
221 |
+
29,Rakan,4,support,0.4794,0.0562,0.0060999999999999995,Seraphine,Taric,Tahm Kench
|
222 |
+
30,Xerath,4,support,0.4889,0.0321,0.0255,Milio,Alistar,Nautilus
|
223 |
+
31,Morgana,4,support,0.4901,0.028999999999999998,0.0922,Maokai,Soraka,Zyra
|
224 |
+
32,Zilean,4,support,0.491,0.023700000000000002,0.0074,Milio,Pyke,Janna
|
225 |
+
33,Galio,4,support,0.5143,0.0076,0.0052,Rell,Karma,
|
226 |
+
34,Shaco,4,support,0.49920000000000003,0.0129,0.0404,Rell,Janna,Rakan
|
227 |
+
35,Zac,4,support,0.5203,0.0051,0.003,Lulu,,
|
228 |
+
36,Pantheon,4,support,0.4921,0.0177,0.0040999999999999995,Janna,Karma,Nautilus
|
229 |
+
37,Yuumi,4,support,0.4696,0.0462,0.0696,Sona,Braum,Elise
|
230 |
+
38,Zoe,5,support,0.49770000000000003,0.0087,0.0038,Nautilus,Thresh,Karma
|
231 |
+
39,Swain,5,support,0.4625,0.0197,0.0088,Milio,Pyke,Nami
|
232 |
+
40,Brand,5,support,0.4632,0.0154,0.0078000000000000005,Janna,Lulu,Nami
|
233 |
+
41,Camille,5,support,0.48,0.005600000000000001,0.0026,,,
|
234 |
+
42,LeBlanc,5,support,0.467,0.0078000000000000005,0.0274,Pyke,Thresh,Lulu
|
235 |
+
43,Sylas,5,support,0.4558,0.0123,0.0104,Janna,Rakan,Nami
|
236 |
+
44,Hwei,5,support,0.4672,0.008,0.0068000000000000005,Lulu,Thresh,Karma
|
237 |
+
45,Shen,5,support,0.4714,0.005,0.0006,Thresh,,
|
util/data/weekly_meta_stats.csv
CHANGED
@@ -1,162 +1,162 @@
|
|
1 |
rank,champion,games,KDA,WR,pick,ban,cs,gold
|
2 |
-
1,Viego,
|
3 |
-
2,Viktor,
|
4 |
-
3,Corki,554,2.64,51.99,
|
5 |
-
4,Jayce,537,2.1,49.16,21.
|
6 |
-
5,
|
7 |
-
6,
|
8 |
-
7,K'Sante,445,2.51,53.48,17.
|
9 |
-
8,Yone,
|
10 |
-
9,Jhin,
|
11 |
-
10,Sylas,
|
12 |
-
11,Aurora,
|
13 |
-
12,Ambessa,
|
14 |
-
13,Ashe,
|
15 |
-
14,Irelia,
|
16 |
-
15,Varus,342,2.45,51.46,13.
|
17 |
-
16,Graves,342,3.05,50.88,13.
|
18 |
-
17,
|
19 |
-
18,
|
20 |
-
19,Nautilus,311,2.67,52.41,12.
|
21 |
-
20,Caitlyn,303,2.36,54.46,
|
22 |
-
21,Lulu,298,3.5,53.36,
|
23 |
-
22,Akali,288,2.61,48.61,11.
|
24 |
-
23,
|
25 |
-
24,
|
26 |
-
25,Rell,
|
27 |
-
26,Poppy,274,2.43,53.28,10.
|
28 |
-
27,Talon,271,2.8,53.87,10.
|
29 |
-
28,Hwei,
|
30 |
-
29,Karma,
|
31 |
-
30,Bard,257,3.65,49.81,10.
|
32 |
-
31,Rakan,256,3.26,46.88,10.
|
33 |
-
32,Gnar,
|
34 |
-
33,Kai'Sa,239,2.59,43.51,9.
|
35 |
-
34,Jinx,
|
36 |
-
35,Jax,
|
37 |
-
36,Pyke,229,2.41,48.91,9.
|
38 |
-
37,Vi,
|
39 |
-
38,Ahri,
|
40 |
-
39,Syndra,203,2.59,51.23,8.
|
41 |
-
40,Lux,
|
42 |
-
41,Gragas,201,2.48,49.25,7.
|
43 |
-
42,Maokai,
|
44 |
-
43,Nidalee,
|
45 |
-
44,Galio,194,2.83,52.06,7.
|
46 |
-
45,Zed,188,2.79,54.26,7.
|
47 |
-
46,Camille,187,2.08,52.94,7.
|
48 |
-
47,Jarvan IV,187,3.79,50.27,7.
|
49 |
-
48,Kindred,187,2.64,4.92,7.
|
50 |
-
49,Neeko,185,2.57,48.11,7.
|
51 |
-
50,Ekko,179,3.16,49.72,7.
|
52 |
-
51,Taliyah,178,2.74,51.69,7.
|
53 |
-
52,Elise,177,2.53,46.89,
|
54 |
-
53,Zyra,169,3.32,5.68,6.
|
55 |
-
54,Janna,167,3.89,52.69,
|
56 |
-
55,Orianna,158,3.26,58.86,6.
|
57 |
-
56,Draven,158,2.15,50.63,6.
|
58 |
-
57,Zac,154,3.26,49.35,
|
59 |
-
58,Riven,151,2.43,56.29,5.
|
60 |
-
59,Diana,150,2.74,0.6,5.
|
61 |
-
60,Braum,148,3.26,56.76,5.
|
62 |
-
61,Blitzcrank,148,2.64,0.5,5.
|
63 |
-
62,
|
64 |
-
63,
|
65 |
-
64,Leona,145,2.44,48.97,5.
|
66 |
-
65,Gwen,145,1.9,46.21,5.
|
67 |
-
66,Pantheon,145,2.13,42.07,5.
|
68 |
-
67,Swain,143,3,55.24,5.
|
69 |
-
68,Kha'Zix,141,2.75,41.13,5.
|
70 |
-
69,Kalista,139,2.42,42.45,5.
|
71 |
-
70,Senna,137,2.74,53.28,5.
|
72 |
-
71,Tristana,135,2.97,60.74,5.
|
73 |
-
72,Thresh,129,3.18,54.26,
|
74 |
-
73,Rumble,128,2.41,52.34,5.
|
75 |
74,Sona,128,2.98,46.88,5.17,1.23,28.09,7720
|
76 |
-
75,Fiora,127,2.08,6.22,5.
|
77 |
-
76,Smolder,121,2.77,54.55,4.
|
78 |
-
77,Qiyana,119,2.5,55.46,
|
79 |
-
78,Garen,118,2.19,49.15,4.
|
80 |
-
79,
|
81 |
-
80,
|
82 |
-
81,Vladimir,115,2.39,43.48,4.55,5.
|
83 |
-
82,Azir,113,2.55,61.06,4.
|
84 |
-
83,Kennen,111,2.1,52.25,
|
85 |
-
84,Miss Fortune,111,2.73,49.55,
|
86 |
-
85,Volibear,110,2.35,50.91,4.
|
87 |
-
86,Lucian,107,2.65,55.14,4.
|
88 |
-
87,Xin Zhao,100,2.99,0.53,3.
|
89 |
-
88,Nunu & Willump,100,2.36,0.42,3.
|
90 |
-
89,Karthus,97,2.85,62.89,3.
|
91 |
-
90,Kayn,94,2.62,56.38,3.72,4.
|
92 |
91,Udyr,94,2.96,55.32,3.72,5.63,185.2,10885
|
93 |
92,Ryze,94,2.44,54.26,3.72,0.79,211.19,11382
|
94 |
-
93,Teemo,94,2.42,52.13,3.
|
95 |
-
94,
|
96 |
-
95,
|
97 |
-
96,Hecarim,92,2.96,51.09,3.64,4.
|
98 |
-
97,Bel'Veth,
|
99 |
-
98,Xerath,89,3.53,51.69,3.52,1.
|
100 |
-
99,
|
101 |
-
100,
|
102 |
-
101,Darius,85,2.02,52.94,3.
|
103 |
-
102,Xayah,85,2.21,44.71,3.
|
104 |
-
103,Nocturne,85,3.17,42.35,3.
|
105 |
-
104,Ziggs,84,2.84,45.24,3.
|
106 |
-
105,Trundle,83,1.56,44.58,3.
|
107 |
-
106,Tryndamere,82,2.06,57.32,3.
|
108 |
-
107,Soraka,82,3.32,52.44,3.
|
109 |
-
108,Lillia,78,3.78,58.97,3.
|
110 |
-
109,Rengar,78,2.59,0.5,3.
|
111 |
-
110,Veigar,77,2.63,50.65,3.
|
112 |
-
111,Dr. Mundo,77,2.36,42.86,3.
|
113 |
-
112,Renata Glasc,74,3.07,5.27,2.93,0.
|
114 |
113,Ivern,73,5.52,57.53,2.89,1.74,146.96,10355
|
115 |
114,Zeri,73,2.54,42.47,2.95,0.28,226.51,12038
|
116 |
-
115,Shaco,
|
117 |
-
116,Fiddlesticks,70,2.58,45.71,2.77,4.
|
118 |
-
117,
|
119 |
-
118,
|
120 |
-
119,
|
121 |
-
120,
|
122 |
121,Zilean,64,2.99,43.75,2.53,1.42,72.88,7850
|
123 |
-
122,Taric,62,2.61,48.39,2.
|
124 |
-
123,Master Yi,60,2.56,53.33,2.
|
125 |
-
124,Samira,59,2.1,54.24,2.
|
126 |
-
125,Gangplank,58,2.16,5.69,
|
127 |
-
126,Lissandra,58,2.61,0.5,
|
128 |
-
127,
|
129 |
-
128,
|
130 |
-
129,
|
131 |
-
130,
|
132 |
-
131,
|
133 |
-
132,Akshan,55,2.77,54.55,2.
|
134 |
-
133,Ornn,55,2.57,50.91,2.
|
135 |
-
134,Aurelion Sol,54,3.62,57.41,2.
|
136 |
-
135,Urgot,54,1.93,4.63,2.
|
137 |
-
136,Kassadin,51,2.79,52.94,2.02,2.
|
138 |
137,Kog'Maw,51,2.27,35.29,2.06,0.12,197.76,11430
|
139 |
-
138,
|
140 |
-
139,
|
141 |
140,Briar,46,2.36,0.5,1.82,1.39,152.26,11701
|
142 |
-
141,
|
143 |
-
142,
|
144 |
143,Evelynn,41,3.11,60.98,1.62,3.32,160.8,10573
|
145 |
-
144,Yuumi,41,3.84,4.39,1.62,5.
|
146 |
145,Mordekaiser,40,2.12,6.25,1.58,1.19,173.6,10485
|
147 |
146,Anivia,40,2.95,0.55,1.58,0.18,183.07,10705
|
148 |
-
147,Twitch,37,2.75,45.95,1.
|
149 |
148,Kled,36,2.31,58.33,1.45,0.03,182.22,11719
|
150 |
-
149,Olaf,36,1.94,47.22,1.
|
151 |
-
150,Fizz,36,2.24,38.89,1.
|
152 |
-
151,Twisted Fate,34,2.91,58.82,1.
|
153 |
-
152,Vel'Koz,33,3.05,57.58,
|
154 |
-
153,Brand,32,2.53,53.13,1.
|
155 |
-
154,Cassiopeia,32,2.04,46.88,1.
|
156 |
-
155,Rammus,31,3.73,41.94,1.23,2.
|
157 |
-
156,Nilah,30,2.46,56.67,1.19,3.
|
158 |
-
157,Morgana,
|
159 |
-
158,Vex,25,2.75,0.6,0.99,
|
160 |
159,Annie,25,2.61,0.52,0.99,0.31,157.32,10261
|
161 |
160,Singed,24,2.47,0.5,0.95,0.78,160.63,9949
|
162 |
161,Yorick,24,1.06,29.17,0.97,0.54,176.13,9654
|
@@ -167,4 +167,4 @@ rank,champion,games,KDA,WR,pick,ban,cs,gold
|
|
167 |
166,Nasus,14,1.8,0.5,0.55,1.97,172.43,10215
|
168 |
167,Quinn,13,1.66,46.15,0.51,0.71,148.85,10760
|
169 |
168,Illaoi,13,1.39,23.08,0.51,1.19,217.69,11962
|
170 |
-
169,Naafiri,
|
|
|
1 |
rank,champion,games,KDA,WR,pick,ban,cs,gold
|
2 |
+
1,Viego,687,3.23,52.69,27.16,22.01,177.98,11656
|
3 |
+
2,Viktor,682,2.52,52.49,26.96,37.75,207.08,11311
|
4 |
+
3,Corki,554,2.64,51.99,2.19,12.92,214.86,11849
|
5 |
+
4,Jayce,537,2.1,49.16,21.23,5.47,191.1,10769
|
6 |
+
5,Lee Sin,478,3.37,52.72,18.89,9.66,161.39,11208
|
7 |
+
6,Ezreal,477,2.58,46.54,18.86,7.94,199.61,11049
|
8 |
+
7,K'Sante,445,2.51,53.48,17.59,12.67,182.8,10169
|
9 |
+
8,Yone,437,2.04,4.92,17.27,4.55,212.41,11478
|
10 |
+
9,Jhin,420,3.22,51.67,1.66,1.03,200.78,12039
|
11 |
+
10,Sylas,416,2.37,53.13,16.44,8.25,152.25,10364
|
12 |
+
11,Aurora,407,2.72,46.44,16.09,2.41,191.43,10977
|
13 |
+
12,Ambessa,392,2.14,48.72,15.49,29.22,181.05,10515
|
14 |
+
13,Ashe,366,2.56,50.27,14.47,22.32,195.51,10893
|
15 |
+
14,Irelia,362,1.54,47.51,14.31,1.42,215.95,12088
|
16 |
+
15,Varus,342,2.45,51.46,13.52,5.26,197.96,11357
|
17 |
+
16,Graves,342,3.05,50.88,13.52,18.49,196.38,12363
|
18 |
+
17,Wukong,339,2.85,51.62,1.34,8.93,181.38,11593
|
19 |
+
18,Skarner,338,3.79,53.25,13.36,2.66,139.78,9866
|
20 |
+
19,Nautilus,311,2.67,52.41,12.29,7.39,24.97,7266
|
21 |
+
20,Caitlyn,303,2.36,54.46,11.98,13.91,208.85,11935
|
22 |
+
21,Lulu,298,3.5,53.36,11.78,12.21,31.63,7464
|
23 |
+
22,Akali,288,2.61,48.61,11.38,9.83,183.09,11073
|
24 |
+
23,Yasuo,281,1.75,5.16,11.11,17.48,211.52,11593
|
25 |
+
24,Renekton,281,2.17,51.25,11.11,9.31,198.07,11106
|
26 |
+
25,Rell,277,3.38,53.43,10.95,3.04,23.35,7465
|
27 |
+
26,Poppy,274,2.43,53.28,10.83,15.42,57.24,8231
|
28 |
+
27,Talon,271,2.8,53.87,10.71,7.38,197.88,11961
|
29 |
+
28,Hwei,271,2.53,44.65,10.71,5.78,188.03,10543
|
30 |
+
29,Karma,263,3.09,53.99,10.39,3.33,44.56,8082
|
31 |
+
30,Bard,257,3.65,49.81,10.16,1.16,26.24,7615
|
32 |
+
31,Rakan,256,3.26,46.88,10.12,1.07,27.87,7429
|
33 |
+
32,Gnar,240,2.06,45.42,9.49,5.36,194.47,11047
|
34 |
+
33,Kai'Sa,239,2.59,43.51,9.45,0.88,203.39,11698
|
35 |
+
34,Jinx,238,2.54,49.58,9.41,1.84,200.15,11153
|
36 |
+
35,Jax,232,1.94,55.17,9.17,11.49,180.5,10877
|
37 |
+
36,Pyke,229,2.41,48.91,9.05,44.14,30.93,8746
|
38 |
+
37,Vi,213,3.05,51.17,8.42,1.25,163,10439
|
39 |
+
38,Ahri,207,2.95,50.72,8.18,2.62,191.9,10710
|
40 |
+
39,Syndra,203,2.59,51.23,8.02,3.89,206.56,11447
|
41 |
+
40,Lux,202,3.12,53.96,7.98,1.41,142.52,10071
|
42 |
+
41,Gragas,201,2.48,49.25,7.94,4.57,166.75,10045
|
43 |
+
42,Maokai,200,2.4,0.48,7.91,2.31,106.14,8396
|
44 |
+
43,Nidalee,199,3.76,55.28,7.87,8.78,173.43,11431
|
45 |
+
44,Galio,194,2.83,52.06,7.67,0.45,166.91,9825
|
46 |
+
45,Zed,188,2.79,54.26,7.43,14.38,199.98,12528
|
47 |
+
46,Camille,187,2.08,52.94,7.39,1.66,158.57,10943
|
48 |
+
47,Jarvan IV,187,3.79,50.27,7.39,1.57,161.2,10728
|
49 |
+
48,Kindred,187,2.64,4.92,7.39,8.95,174.36,11567
|
50 |
+
49,Neeko,185,2.57,48.11,7.31,1.39,59.74,8350
|
51 |
+
50,Ekko,179,3.16,49.72,7.08,2.05,198.59,11975
|
52 |
+
51,Taliyah,178,2.74,51.69,7.04,1.83,189.21,11090
|
53 |
+
52,Elise,177,2.53,46.89,0.07,9.71,105.67,10470
|
54 |
+
53,Zyra,169,3.32,5.68,6.68,6.39,197.69,11782
|
55 |
+
54,Janna,167,3.89,52.69,0.66,0.42,23.57,7468
|
56 |
+
55,Orianna,158,3.26,58.86,6.25,0.94,194.28,10518
|
57 |
+
56,Draven,158,2.15,50.63,6.24,3.24,195.15,12928
|
58 |
+
57,Zac,154,3.26,49.35,6.09,4.78,156.18,10418
|
59 |
+
58,Riven,151,2.43,56.29,5.97,0.82,202.01,11593
|
60 |
+
59,Diana,150,2.74,0.6,5.93,1.26,197.83,11927
|
61 |
+
60,Braum,148,3.26,56.76,5.85,5.32,23.49,7164
|
62 |
+
61,Blitzcrank,148,2.64,0.5,5.85,8.14,23.14,7354
|
63 |
+
62,Aatrox,147,2.29,57.14,5.81,4.76,174.56,10214
|
64 |
+
63,Nami,147,3.96,48.98,5.81,0.42,23.07,7603
|
65 |
+
64,Leona,145,2.44,48.97,5.73,1.83,25.17,7321
|
66 |
+
65,Gwen,145,1.9,46.21,5.73,2.98,202.86,11986
|
67 |
+
66,Pantheon,145,2.13,42.07,5.73,1.32,140.9,10073
|
68 |
+
67,Swain,143,3,55.24,5.65,1.26,181.74,10857
|
69 |
+
68,Kha'Zix,141,2.75,41.13,5.57,0.43,169.07,11016
|
70 |
+
69,Kalista,139,2.42,42.45,5.49,3.59,206.04,12462
|
71 |
+
70,Senna,137,2.74,53.28,5.42,0.84,32.76,8439
|
72 |
+
71,Tristana,135,2.97,60.74,5.34,0.62,200.69,12561
|
73 |
+
72,Thresh,129,3.18,54.26,0.51,3.31,26.61,7393
|
74 |
+
73,Rumble,128,2.41,52.34,5.06,1.69,183.78,10595
|
75 |
74,Sona,128,2.98,46.88,5.17,1.23,28.09,7720
|
76 |
+
75,Fiora,127,2.08,6.22,5.02,8.08,204.98,12151
|
77 |
+
76,Smolder,121,2.77,54.55,4.78,1.12,219.92,12021
|
78 |
+
77,Qiyana,119,2.5,55.46,0.47,3.85,176.61,11531
|
79 |
+
78,Garen,118,2.19,49.15,4.66,0.15,216.67,12256
|
80 |
+
79,LeBlanc,116,2.59,44.83,4.59,23.66,159.41,10312
|
81 |
+
80,Seraphine,115,2.91,46.09,4.55,1.72,101.1,8795
|
82 |
+
81,Vladimir,115,2.39,43.48,4.55,5.22,201.03,10822
|
83 |
+
82,Azir,113,2.55,61.06,4.47,1.38,218.57,11839
|
84 |
+
83,Kennen,111,2.1,52.25,4.39,2.53,184.78,10884
|
85 |
+
84,Miss Fortune,111,2.73,49.55,4.39,0.48,212.71,12226
|
86 |
+
85,Volibear,110,2.35,50.91,4.35,1.69,173.54,10393
|
87 |
+
86,Lucian,107,2.65,55.14,4.23,0.26,206.75,11904
|
88 |
+
87,Xin Zhao,100,2.99,0.53,3.95,0.26,164.04,10835
|
89 |
+
88,Nunu & Willump,100,2.36,0.42,3.95,3.38,143.31,9155
|
90 |
+
89,Karthus,97,2.85,62.89,3.83,14.08,201.16,12700
|
91 |
+
90,Kayn,94,2.62,56.38,3.72,4.72,173.37,11197
|
92 |
91,Udyr,94,2.96,55.32,3.72,5.63,185.2,10885
|
93 |
92,Ryze,94,2.44,54.26,3.72,0.79,211.19,11382
|
94 |
+
93,Teemo,94,2.42,52.13,3.71,2.62,207.47,11895
|
95 |
+
94,Alistar,93,2.89,51.61,3.68,1.96,23.33,7047
|
96 |
+
95,Aphelios,93,2.13,43.01,3.68,0.59,200.69,11557
|
97 |
+
96,Hecarim,92,2.96,51.09,3.64,4.44,189.28,11250
|
98 |
+
97,Bel'Veth,91,2.77,48.35,0.36,10.78,177.87,11240
|
99 |
+
98,Xerath,89,3.53,51.69,3.52,1.55,160.9,10778
|
100 |
+
99,Katarina,88,2.65,48.86,3.48,6.29,181.9,11650
|
101 |
+
100,Zoe,87,2.73,52.87,3.44,4.58,126.1,9886
|
102 |
+
101,Darius,85,2.02,52.94,3.36,8.68,197.94,11667
|
103 |
+
102,Xayah,85,2.21,44.71,3.36,0.26,229.39,12276
|
104 |
+
103,Nocturne,85,3.17,42.35,3.36,1.43,172.88,11123
|
105 |
+
104,Ziggs,84,2.84,45.24,3.32,0.48,215.73,11690
|
106 |
+
105,Trundle,83,1.56,44.58,3.28,0.23,195.75,11611
|
107 |
+
106,Tryndamere,82,2.06,57.32,3.24,0.24,229.11,12839
|
108 |
+
107,Soraka,82,3.32,52.44,3.24,1.71,30.96,7270
|
109 |
+
108,Lillia,78,3.78,58.97,3.08,1.47,198.32,11882
|
110 |
+
109,Rengar,78,2.59,0.5,3.08,21.78,179.04,11705
|
111 |
+
110,Veigar,77,2.63,50.65,3.04,0.28,194.95,11887
|
112 |
+
111,Dr. Mundo,77,2.36,42.86,3.04,0.91,194.86,10588
|
113 |
+
112,Renata Glasc,74,3.07,5.27,2.93,0.43,27.78,7277
|
114 |
113,Ivern,73,5.52,57.53,2.89,1.74,146.96,10355
|
115 |
114,Zeri,73,2.54,42.47,2.95,0.28,226.51,12038
|
116 |
+
115,Shaco,72,2.59,51.39,2.85,9.24,126.57,10556
|
117 |
+
116,Fiddlesticks,70,2.58,45.71,2.77,4.35,75.01,9324
|
118 |
+
117,Tahm Kench,67,2.75,58.21,2.65,1.92,62.06,8503
|
119 |
+
118,Malphite,67,2.18,46.27,2.65,6.18,160.87,9457
|
120 |
+
119,Warwick,67,1.87,4.03,2.65,8.99,168.81,11055
|
121 |
+
120,Shen,66,2.64,46.97,2.61,0.35,122.29,8215
|
122 |
121,Zilean,64,2.99,43.75,2.53,1.42,72.88,7850
|
123 |
+
122,Taric,62,2.61,48.39,2.45,0.61,35.87,7079
|
124 |
+
123,Master Yi,60,2.56,53.33,2.37,7.69,177.03,12129
|
125 |
+
124,Samira,59,2.1,54.24,2.33,2.56,182.32,12057
|
126 |
+
125,Gangplank,58,2.16,5.69,2.29,0.51,201.74,12525
|
127 |
+
126,Lissandra,58,2.61,0.5,2.29,1.15,187.67,10883
|
128 |
+
127,Sejuani,58,3.01,44.83,2.29,0.11,142,9028
|
129 |
+
128,Milio,58,3.96,44.83,2.29,2.65,25.17,7270
|
130 |
+
129,Kayle,57,2.32,52.63,2.25,1.32,234.33,12906
|
131 |
+
130,Cho'Gath,56,2.58,57.14,2.21,0.35,194.64,11118
|
132 |
+
131,Sett,56,1.68,48.21,2.21,0.15,168.39,10639
|
133 |
+
132,Akshan,55,2.77,54.55,2.17,5.04,185.6,12299
|
134 |
+
133,Ornn,55,2.57,50.91,2.17,0.19,167.8,9433
|
135 |
+
134,Aurelion Sol,54,3.62,57.41,2.13,0.52,212.65,11800
|
136 |
+
135,Urgot,54,1.93,4.63,2.13,1.59,190.7,11884
|
137 |
+
136,Kassadin,51,2.79,52.94,2.02,2.98,189.14,11397
|
138 |
137,Kog'Maw,51,2.27,35.29,2.06,0.12,197.76,11430
|
139 |
+
138,Vayne,48,2.17,47.92,0.19,0.19,187.02,11136
|
140 |
+
139,Rek'Sai,47,4,55.32,1.86,0.65,178.81,11968
|
141 |
140,Briar,46,2.36,0.5,1.82,1.39,152.26,11701
|
142 |
+
141,Sion,46,1.62,45.65,1.82,0.17,194.39,11175
|
143 |
+
142,Sivir,45,2.55,53.33,1.78,0.28,214.29,11506
|
144 |
143,Evelynn,41,3.11,60.98,1.62,3.32,160.8,10573
|
145 |
+
144,Yuumi,41,3.84,4.39,1.62,5.29,14.41,6592
|
146 |
145,Mordekaiser,40,2.12,6.25,1.58,1.19,173.6,10485
|
147 |
146,Anivia,40,2.95,0.55,1.58,0.18,183.07,10705
|
148 |
+
147,Twitch,37,2.75,45.95,1.46,0.69,151.89,11294
|
149 |
148,Kled,36,2.31,58.33,1.45,0.03,182.22,11719
|
150 |
+
149,Olaf,36,1.94,47.22,1.42,1.35,182.08,10686
|
151 |
+
150,Fizz,36,2.24,38.89,1.42,0.66,155.03,10824
|
152 |
+
151,Twisted Fate,34,2.91,58.82,1.34,0.33,162.15,11002
|
153 |
+
152,Vel'Koz,33,3.05,57.58,0.13,0.38,136.52,10631
|
154 |
+
153,Brand,32,2.53,53.13,1.26,0.33,142.31,9632
|
155 |
+
154,Cassiopeia,32,2.04,46.88,1.26,2.06,188.53,10504
|
156 |
+
155,Rammus,31,3.73,41.94,1.23,2.06,182.32,10988
|
157 |
+
156,Nilah,30,2.46,56.67,1.19,3.74,206.9,13259
|
158 |
+
157,Morgana,30,2.49,0.4,1.19,1.91,79.87,8433
|
159 |
+
158,Vex,25,2.75,0.6,0.99,1.89,173.32,10678
|
160 |
159,Annie,25,2.61,0.52,0.99,0.31,157.32,10261
|
161 |
160,Singed,24,2.47,0.5,0.95,0.78,160.63,9949
|
162 |
161,Yorick,24,1.06,29.17,0.97,0.54,176.13,9654
|
|
|
167 |
166,Nasus,14,1.8,0.5,0.55,1.97,172.43,10215
|
168 |
167,Quinn,13,1.66,46.15,0.51,0.71,148.85,10760
|
169 |
168,Illaoi,13,1.39,23.08,0.51,1.19,217.69,11962
|
170 |
+
169,Naafiri,11,1.88,36.36,0.43,0.24,177.09,10296
|