riot_games_api 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (180) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.rubocop.yml +28 -0
  4. data/.travis.yml +8 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +192 -0
  8. data/Rakefile +5 -0
  9. data/lib/riot_games_api/lol/client.rb +57 -0
  10. data/lib/riot_games_api/lol/constant/champions.rb +125 -0
  11. data/lib/riot_games_api/lol/constant/items.rb +186 -0
  12. data/lib/riot_games_api/lol/model/champion/champion.rb +18 -0
  13. data/lib/riot_games_api/lol/model/champion.rb +10 -0
  14. data/lib/riot_games_api/lol/model/corecion/time.rb +16 -0
  15. data/lib/riot_games_api/lol/model/game/game.rb +27 -0
  16. data/lib/riot_games_api/lol/model/game/player.rb +15 -0
  17. data/lib/riot_games_api/lol/model/game/raw_stats.rb +88 -0
  18. data/lib/riot_games_api/lol/model/game/recent_game.rb +14 -0
  19. data/lib/riot_games_api/lol/model/game.rb +13 -0
  20. data/lib/riot_games_api/lol/model/league/league.rb +17 -0
  21. data/lib/riot_games_api/lol/model/league/league_item.rb +35 -0
  22. data/lib/riot_games_api/lol/model/league/mini_series.rb +17 -0
  23. data/lib/riot_games_api/lol/model/league.rb +12 -0
  24. data/lib/riot_games_api/lol/model/static_data/basic_data.rb +35 -0
  25. data/lib/riot_games_api/lol/model/static_data/basic_data_stats.rb +77 -0
  26. data/lib/riot_games_api/lol/model/static_data/block.rb +14 -0
  27. data/lib/riot_games_api/lol/model/static_data/block_item.rb +14 -0
  28. data/lib/riot_games_api/lol/model/static_data/champion.rb +29 -0
  29. data/lib/riot_games_api/lol/model/static_data/champion_list.rb +17 -0
  30. data/lib/riot_games_api/lol/model/static_data/champion_list_data_by_id.rb +11 -0
  31. data/lib/riot_games_api/lol/model/static_data/champion_spell.rb +32 -0
  32. data/lib/riot_games_api/lol/model/static_data/gold.rb +16 -0
  33. data/lib/riot_games_api/lol/model/static_data/group.rb +14 -0
  34. data/lib/riot_games_api/lol/model/static_data/image.rb +19 -0
  35. data/lib/riot_games_api/lol/model/static_data/info.rb +16 -0
  36. data/lib/riot_games_api/lol/model/static_data/item.rb +35 -0
  37. data/lib/riot_games_api/lol/model/static_data/item_list.rb +18 -0
  38. data/lib/riot_games_api/lol/model/static_data/item_tree.rb +14 -0
  39. data/lib/riot_games_api/lol/model/static_data/level_tip.rb +14 -0
  40. data/lib/riot_games_api/lol/model/static_data/mastery.rb +19 -0
  41. data/lib/riot_games_api/lol/model/static_data/mastery_list.rb +16 -0
  42. data/lib/riot_games_api/lol/model/static_data/mastery_tree.rb +15 -0
  43. data/lib/riot_games_api/lol/model/static_data/mastery_tree_item.rb +14 -0
  44. data/lib/riot_games_api/lol/model/static_data/mastery_tree_list.rb +13 -0
  45. data/lib/riot_games_api/lol/model/static_data/meta_data.rb +18 -0
  46. data/lib/riot_games_api/lol/model/static_data/passive.rb +16 -0
  47. data/lib/riot_games_api/lol/model/static_data/realm.rb +21 -0
  48. data/lib/riot_games_api/lol/model/static_data/recommended.rb +19 -0
  49. data/lib/riot_games_api/lol/model/static_data/rune.rb +35 -0
  50. data/lib/riot_games_api/lol/model/static_data/rune_list.rb +16 -0
  51. data/lib/riot_games_api/lol/model/static_data/skin.rb +15 -0
  52. data/lib/riot_games_api/lol/model/static_data/spell_vars.rb +16 -0
  53. data/lib/riot_games_api/lol/model/static_data/stats.rb +32 -0
  54. data/lib/riot_games_api/lol/model/static_data/summoner_spell.rb +35 -0
  55. data/lib/riot_games_api/lol/model/static_data/summoner_spell_list.rb +15 -0
  56. data/lib/riot_games_api/lol/model/static_data/summoner_spell_list_data_by_id.rb +11 -0
  57. data/lib/riot_games_api/lol/model/static_data.rb +47 -0
  58. data/lib/riot_games_api/lol/model/stats/aggregated_stats.rb +68 -0
  59. data/lib/riot_games_api/lol/model/stats/champion_stats.rb +14 -0
  60. data/lib/riot_games_api/lol/model/stats/player_stats_summary.rb +17 -0
  61. data/lib/riot_games_api/lol/model/stats/player_stats_summary_list.rb +14 -0
  62. data/lib/riot_games_api/lol/model/stats/ranked_stats.rb +15 -0
  63. data/lib/riot_games_api/lol/model/stats.rb +15 -0
  64. data/lib/riot_games_api/lol/model/summoner/mastery.rb +14 -0
  65. data/lib/riot_games_api/lol/model/summoner/mastery_page.rb +16 -0
  66. data/lib/riot_games_api/lol/model/summoner/mastery_page_list.rb +14 -0
  67. data/lib/riot_games_api/lol/model/summoner/rune_page.rb +16 -0
  68. data/lib/riot_games_api/lol/model/summoner/rune_page_list.rb +14 -0
  69. data/lib/riot_games_api/lol/model/summoner/rune_slot.rb +14 -0
  70. data/lib/riot_games_api/lol/model/summoner/summoner.rb +17 -0
  71. data/lib/riot_games_api/lol/model/summoner.rb +16 -0
  72. data/lib/riot_games_api/lol/model/team/match_history_summary.rb +23 -0
  73. data/lib/riot_games_api/lol/model/team/message_of_day.rb +15 -0
  74. data/lib/riot_games_api/lol/model/team/roster.rb +14 -0
  75. data/lib/riot_games_api/lol/model/team/team.rb +27 -0
  76. data/lib/riot_games_api/lol/model/team/team_member_info.rb +16 -0
  77. data/lib/riot_games_api/lol/model/team/team_stat_detail.rb +17 -0
  78. data/lib/riot_games_api/lol/model/team/team_stat_summary.rb +14 -0
  79. data/lib/riot_games_api/lol/model/team.rb +16 -0
  80. data/lib/riot_games_api/lol/model.rb +16 -0
  81. data/lib/riot_games_api/lol/resource/base.rb +22 -0
  82. data/lib/riot_games_api/lol/resource/champion.rb +39 -0
  83. data/lib/riot_games_api/lol/resource/game.rb +23 -0
  84. data/lib/riot_games_api/lol/resource/league.rb +65 -0
  85. data/lib/riot_games_api/lol/resource/static_data.rb +91 -0
  86. data/lib/riot_games_api/lol/resource/stats.rb +28 -0
  87. data/lib/riot_games_api/lol/resource/summoner.rb +52 -0
  88. data/lib/riot_games_api/lol/resource/team.rb +34 -0
  89. data/lib/riot_games_api/lol/resource.rb +15 -0
  90. data/lib/riot_games_api/version.rb +3 -0
  91. data/lib/riot_games_api.rb +15 -0
  92. data/riot_games_api.gemspec +34 -0
  93. data/spec/lol/resource/champion_spec.rb +27 -0
  94. data/spec/lol/resource/game_spec.rb +40 -0
  95. data/spec/lol/resource/league_spec.rb +93 -0
  96. data/spec/lol/resource/static_data_spec.rb +215 -0
  97. data/spec/lol/resource/stats_spec.rb +57 -0
  98. data/spec/lol/resource/summoner_spec.rb +80 -0
  99. data/spec/lol/resource/team_spec.rb +31 -0
  100. data/spec/spec_helper.rb +21 -0
  101. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_all/should_first_record_is_Aatrox.yml +44 -0
  102. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_by_champion_id/should_be_Teemo.yml +44 -0
  103. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_free/should_be_only_free_champions.yml +44 -0
  104. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_champinons_is_Talon_in_first_game_record.yml +44 -0
  105. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_fellow_player_s_team_is_blue.yml +44 -0
  106. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_game_is_win.yml +44 -0
  107. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_player_model.yml +44 -0
  108. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_raw_stats_model.yml +44 -0
  109. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_records_count_is_10.yml +44 -0
  110. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_have_summoner_id.yml +44 -0
  111. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_have_league_item_entries.yml +1497 -0
  112. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_phantoml0ad_is_in_league_which_name_is_Nasus_s_Agents.yml +1497 -0
  113. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_is_in_series.yml +43 -0
  114. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_s_tier_is_platinum.yml +43 -0
  115. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_have_league_item_entries.yml +864 -0
  116. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_rascal_jester_is_in_league_which_name_is_Nunu_s_Outriders.yml +864 -0
  117. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_is_not_in_series.yml +44 -0
  118. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_tier_is_challenger.yml +44 -0
  119. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_queue_is_ranked_solo_5v5.yml +1281 -0
  120. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_tier_is_challenger.yml +1281 -0
  121. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_queue_is_ranked_team_3v3.yml +123 -0
  122. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_tier_is_challenger.yml +123 -0
  123. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_queue_is_ranked_team_5v5.yml +61 -0
  124. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_tier_is_challenger.yml +61 -0
  125. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_data_cdn_is_cdn_url.yml +44 -0
  126. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_static_data_of_realm.yml +44 -0
  127. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_inputed_data_version.yml +38011 -0
  128. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_key_with_champion_name.yml +38011 -0
  129. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_of_champions.yml +38011 -0
  130. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_keys_is_champion_id.yml +38000 -0
  131. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_of_champion.yml +38000 -0
  132. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_data_key_is_shaco.yml +151 -0
  133. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_static_data_of_champion.yml +151 -0
  134. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_inputed_data_version.yml +2388 -0
  135. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_of_items.yml +2388 -0
  136. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_with_item_name.yml +2388 -0
  137. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_data_name_is_biscuit.yml +46 -0
  138. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_static_data_of_item.yml +46 -0
  139. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_inputed_data_version.yml +240 -0
  140. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_of_masterys.yml +240 -0
  141. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_with_mastery_name.yml +240 -0
  142. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_data_name_is_sorcery.yml +47 -0
  143. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_static_data_of_mastery.yml +47 -0
  144. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_inputed_data_version.yml +733 -0
  145. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_of_runes.yml +733 -0
  146. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_with_rune_name.yml +733 -0
  147. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_data_name_is_rune_name.yml +45 -0
  148. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_static_data_of_rune.yml +45 -0
  149. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_inputed_data_version.yml +156 -0
  150. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_static_data_key_with_summoner_spell_name.yml +156 -0
  151. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_static_data_of_summoner_spell.yml +156 -0
  152. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_true/should_have_static_data_keys_is_sumoner_spell_id.yml +156 -0
  153. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_true/should_have_static_data_of_summoner_spell.yml +156 -0
  154. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_data_name_is_teleport.yml +55 -0
  155. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_static_data_of_summoner_spell.yml +55 -0
  156. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/latest_season/should_not_found_ranked_stats.yml +57 -0
  157. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_champion_stats.yml +44 -0
  158. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_modify_data_which_unixtime_milliseconds.yml +44 -0
  159. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_player_stat_summaries.yml +44 -0
  160. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_summoner_id_inputed.yml +44 -0
  161. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_player_stat_summaries.yml +44 -0
  162. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_summoner_id_inputed.yml +44 -0
  163. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_key_which_is_summoner_id.yml +44 -0
  164. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_summoner_model.yml +44 -0
  165. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_summoner_model_have_summoner_level.yml +44 -0
  166. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_key_which_is_summoner_name.yml +44 -0
  167. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_summoner_model.yml +44 -0
  168. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_summoner_model_have_summoner_level.yml +44 -0
  169. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_key_which_is_summoner_id.yml +52 -0
  170. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_list_model.yml +52 -0
  171. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_model.yml +52 -0
  172. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_name/should_have_summoner_name.yml +44 -0
  173. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_key_which_is_summoner_id.yml +56 -0
  174. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_list_model.yml +56 -0
  175. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_model.yml +56 -0
  176. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_focus_me_s_full_id.yml +314 -0
  177. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_team_model.yml +314 -0
  178. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_key_which_is_team_id.yml +165 -0
  179. data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_team_model.yml +165 -0
  180. metadata +484 -0
@@ -0,0 +1,733 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://prod.api.pvp.net/api/lol/static-data/na/v1.2/rune?api_key=test_key&locale=en_US&runeListData=all&version=4.5.4
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
+ Access-Control-Allow-Headers:
22
+ - Content-Type
23
+ Access-Control-Allow-Methods:
24
+ - GET, POST, DELETE, PUT
25
+ Access-Control-Allow-Origin:
26
+ - "*"
27
+ Content-Type:
28
+ - application/json; charset=UTF-8
29
+ Date:
30
+ - Thu, 17 Apr 2014 19:08:12 GMT
31
+ Server:
32
+ - Jetty(9.1.1.v20140108)
33
+ Vary:
34
+ - Accept-Encoding, User-Agent
35
+ Transfer-Encoding:
36
+ - chunked
37
+ Connection:
38
+ - keep-alive
39
+ body:
40
+ encoding: UTF-8
41
+ string: "{\"type\":\"rune\",\"version\":\"4.5.4\",\"data\":{\"5235\":{\"id\":5235,\"name\":\"Quintessence
42
+ of Ability Power\",\"description\":\"+3.85 ability power\",\"sanitizedDescription\":\"+3.85
43
+ ability power\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":3.85},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5234\":{\"id\":5234,\"name\":\"Quintessence
44
+ of Scaling Cooldown Reduction\",\"description\":\"-0.21% cooldowns per level
45
+ (-3.9% at champion level 18)\",\"sanitizedDescription\":\"-0.21% cooldowns
46
+ per level (-3.9% at champion level 18)\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownModPerLevel\":-0.002167},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5233\":{\"id\":5233,\"name\":\"Quintessence
47
+ of Cooldown Reduction\",\"description\":\"-1.95% cooldowns\",\"sanitizedDescription\":\"-1.95%
48
+ cooldowns\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.0195},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5370\":{\"id\":5370,\"name\":\"Greater
49
+ Seal of Scaling Energy Regeneration\",\"description\":\"+0.064 Energy regen/5
50
+ sec per level (+1.15 at champion level 18)\",\"sanitizedDescription\":\"+0.064
51
+ Energy regen/5 sec per level (+1.15 at champion level 18)\",\"tags\":[\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatEnergyRegenModPerLevel\":0.01283},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5230\":{\"id\":5230,\"name\":\"Quintessence
52
+ of Scaling Health Regeneration\",\"description\":\"+0.22 health regen / 5
53
+ sec. per level (+3.96 at champion level 18)\",\"sanitizedDescription\":\"+0.22
54
+ health regen / 5 sec. per level (+3.96 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPRegenModPerLevel\":0.04376},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"8016\":{\"id\":8016,\"name\":\"Quintessence
55
+ of the Speedy Specter\",\"description\":\"+1.39% movement speed\",\"sanitizedDescription\":\"+1.39%
56
+ movement speed\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"8016.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"PercentMovementSpeedMod\":0.0139},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5374\":{\"id\":5374,\"name\":\"Greater
57
+ Quintessence of Energy\",\"description\":\"+5.4 Energy\",\"sanitizedDescription\":\"+5.4
58
+ Energy\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatEnergyPoolMod\":5.4},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"8015\":{\"id\":8015,\"name\":\"Quintessence
59
+ of Bountiful Treats\",\"description\":\"+24 health\",\"sanitizedDescription\":\"+24
60
+ health\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"8015.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":24.0},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5373\":{\"id\":5373,\"name\":\"Greater
61
+ Quintessence of Energy Regeneration\",\"description\":\"+1.575 Energy regen/5
62
+ sec\",\"sanitizedDescription\":\"+1.575 Energy regen/5 sec\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatEnergyRegenMod\":0.315},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5372\":{\"id\":5372,\"name\":\"Greater
63
+ Glyph of Scaling Energy\",\"description\":\"+0.161 Energy/level (+2.89 at
64
+ level 18)\",\"sanitizedDescription\":\"+0.161 Energy/level (+2.89 at level
65
+ 18)\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"b_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatEnergyModPerLevel\":0.161},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"8017\":{\"id\":8017,\"name\":\"Quintessence
66
+ of the Witches Brew\",\"description\":\"+4.56 ability power\",\"sanitizedDescription\":\"+4.56
67
+ ability power\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"8017.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":4.56},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5371\":{\"id\":5371,\"name\":\"Greater
68
+ Glyph of Energy\",\"description\":\"+2.2 Energy\",\"sanitizedDescription\":\"+2.2
69
+ Energy\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"b_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatEnergyPoolMod\":2.2},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"8012\":{\"id\":8012,\"name\":\"Glyph
70
+ of the Soaring Slalom\",\"description\":\"-0.75% cooldowns\",\"sanitizedDescription\":\"-0.75%
71
+ cooldowns\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"8012.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.0075},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"8011\":{\"id\":8011,\"name\":\"Lesser
72
+ Glyph of the Challenger\",\"description\":\"+0.66 ability power\",\"sanitizedDescription\":\"+0.66
73
+ ability power\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"8011.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.66},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"8014\":{\"id\":8014,\"name\":\"Quintessence
74
+ of the Piercing Screech\",\"description\":\"+1.85 magic penetration\",\"sanitizedDescription\":\"+1.85
75
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"8014.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":1.85},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"8013\":{\"id\":8013,\"name\":\"Quintessence
76
+ of the Headless Horseman\",\"description\":\"+2.37 armor penetration\",\"sanitizedDescription\":\"+2.37
77
+ armor penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"8013.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":2.37},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5368\":{\"id\":5368,\"name\":\"Greater
78
+ Quintessence of Experience\",\"description\":\"+2% experience gained\",\"sanitizedDescription\":\"+2%
79
+ experience gained\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentEXPBonus\":0.02},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5369\":{\"id\":5369,\"name\":\"Greater
80
+ Seal of Energy Regeneration\",\"description\":\"+0.63 Energy regen/5 sec\",\"sanitizedDescription\":\"+0.63
81
+ Energy regen/5 sec\",\"tags\":[\"seal\"],\"image\":{\"full\":\"y_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatEnergyRegenMod\":0.126},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"8008\":{\"id\":8008,\"name\":\"Mark
82
+ of the Combatant\",\"description\":\"+2% critical damage\",\"sanitizedDescription\":\"+2%
83
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"8008.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.019835},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"8009\":{\"id\":8009,\"name\":\"Lesser
84
+ Seal of the Medalist\",\"description\":\"+3.56 health\",\"sanitizedDescription\":\"+3.56
85
+ health\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"8009.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":3.564},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5229\":{\"id\":5229,\"name\":\"Quintessence
86
+ of Health Regeneration\",\"description\":\"+2.1 health regen / 5 sec.\",\"sanitizedDescription\":\"+2.1
87
+ health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.42},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5227\":{\"id\":5227,\"name\":\"Quintessence
88
+ of Magic Resist\",\"description\":\"+3.11 magic resist\",\"sanitizedDescription\":\"+3.11
89
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":3.11},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5228\":{\"id\":5228,\"name\":\"Quintessence
90
+ of Scaling Magic Resist\",\"description\":\"+0.29 magic resist per level (+5.22
91
+ at champion level 18)\",\"sanitizedDescription\":\"+0.29 magic resist per
92
+ level (+5.22 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.2886},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5225\":{\"id\":5225,\"name\":\"Quintessence
93
+ of Armor\",\"description\":\"+3.32 armor\",\"sanitizedDescription\":\"+3.32
94
+ armor\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":3.3158},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5226\":{\"id\":5226,\"name\":\"Quintessence
95
+ of Scaling Armor\",\"description\":\"+0.29 armor per level (+5.22 at champion
96
+ level 18)\",\"sanitizedDescription\":\"+0.29 armor per level (+5.22 at champion
97
+ level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorModPerLevel\":0.2917},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"8021\":{\"id\":8021,\"name\":\"Greater
98
+ Quintessence of Frosty Health\",\"description\":\"+26 health\",\"sanitizedDescription\":\"+26
99
+ health\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"8021.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":26.0},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"8020\":{\"id\":8020,\"name\":\"Greater
100
+ Quintessence of the Deadly Wreath\",\"description\":\"+2.56 armor penetration\",\"sanitizedDescription\":\"+2.56
101
+ armor penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"8020.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":2.56},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5221\":{\"id\":5221,\"name\":\"Quintessence
102
+ of Armor Penetration\",\"description\":\"+1.99 armor penetration\",\"sanitizedDescription\":\"+1.99
103
+ armor penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":1.99},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5224\":{\"id\":5224,\"name\":\"Quintessence
104
+ of Scaling Health\",\"description\":\"+2.1 health per level (+37.8 at champion
105
+ level 18)\",\"sanitizedDescription\":\"+2.1 health per level (+37.8 at champion
106
+ level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":2.1034},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5223\":{\"id\":5223,\"name\":\"Quintessence
107
+ of Health\",\"description\":\"+20 health\",\"sanitizedDescription\":\"+20
108
+ health\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":20.0},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5361\":{\"id\":5361,\"name\":\"Greater
109
+ Quintessence of Mana Regeneration\",\"description\":\"+1.25 mana regen / 5
110
+ sec.\",\"sanitizedDescription\":\"+1.25 mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.25},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5360\":{\"id\":5360,\"name\":\"Greater
111
+ Quintessence of Scaling Mana\",\"description\":\"+4.17 mana per level (+75.06
112
+ at champion level 18)\",\"sanitizedDescription\":\"+4.17 mana per level (+75.06
113
+ at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":4.1667},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5363\":{\"id\":5363,\"name\":\"Greater
114
+ Quintessence of Magic Penetration\",\"description\":\"+2.01 magic penetration\",\"sanitizedDescription\":\"+2.01
115
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":2.01},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5362\":{\"id\":5362,\"name\":\"Greater
116
+ Quintessence of Scaling Mana Regeneration\",\"description\":\"+0.24 mana regen
117
+ / 5 sec. per level (+4.32 at champion level 18)\",\"sanitizedDescription\":\"+0.24
118
+ mana regen / 5 sec. per level (+4.32 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.04882},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5365\":{\"id\":5365,\"name\":\"Greater
119
+ Quintessence of Movement Speed\",\"description\":\"+1.5% movement speed\",\"sanitizedDescription\":\"+1.5%
120
+ movement speed\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentMovementSpeedMod\":0.015},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5367\":{\"id\":5367,\"name\":\"Greater
121
+ Quintessence of Gold\",\"description\":\"+1 gold / 10 sec.\",\"sanitizedDescription\":\"+1
122
+ gold / 10 sec.\",\"tags\":[\"utility\",\"quintessence\"],\"image\":{\"full\":\"bl_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatGoldPer10Mod\":1.0},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"8022\":{\"id\":8022,\"name\":\"Greater
123
+ Quintessence of Sugar Rush\",\"description\":\"+1.5% movement speed\",\"sanitizedDescription\":\"+1.5%
124
+ movement speed\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"8022.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"PercentMovementSpeedMod\":0.015},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5366\":{\"id\":5366,\"name\":\"Greater
125
+ Quintessence of Revival\",\"description\":\"-5% time dead\",\"sanitizedDescription\":\"-5%
126
+ time dead\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rPercentTimeDeadMod\":0.05},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5357\":{\"id\":5357,\"name\":\"Greater
127
+ Quintessence of Ability Power\",\"description\":\"+4.95 ability power\",\"sanitizedDescription\":\"+4.95
128
+ ability power\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":4.95},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5358\":{\"id\":5358,\"name\":\"Greater
129
+ Quintessence of Scaling Ability Power\",\"description\":\"+0.43 ability power
130
+ per level (+7.74 at champion level 18)\",\"sanitizedDescription\":\"+0.43
131
+ ability power per level (+7.74 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.4327},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5359\":{\"id\":5359,\"name\":\"Greater
132
+ Quintessence of Mana\",\"description\":\"+37.5 mana\",\"sanitizedDescription\":\"+37.5
133
+ mana\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":37.5},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"8019\":{\"id\":8019,\"name\":\"Greater
134
+ Quintessence of the Piercing Present\",\"description\":\"+2.01 magic penetration\",\"sanitizedDescription\":\"+2.01
135
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"8019.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":288,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":2.01},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5219\":{\"id\":5219,\"name\":\"Quintessence
136
+ of Critical Chance\",\"description\":\"+1.44% critical chance\",\"sanitizedDescription\":\"+1.44%
137
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.014433},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5214\":{\"id\":5214,\"name\":\"Quintessence
138
+ of Scaling Attack Damage\",\"description\":\"+0.19 attack damage per level
139
+ (+3.42 at champion level 18)\",\"sanitizedDescription\":\"+0.19 attack damage
140
+ per level (+3.42 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.1944},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5215\":{\"id\":5215,\"name\":\"Quintessence
141
+ of Attack Speed\",\"description\":\"+3.51% attack speed\",\"sanitizedDescription\":\"+3.51%
142
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.0351},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5217\":{\"id\":5217,\"name\":\"Quintessence
143
+ of Critical Damage\",\"description\":\"+3.47% critical damage\",\"sanitizedDescription\":\"+3.47%
144
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.034711},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5253\":{\"id\":5253,\"name\":\"Greater
145
+ Mark of Armor Penetration\",\"description\":\"+1.28 armor penetration\",\"sanitizedDescription\":\"+1.28
146
+ armor penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":1.28},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5251\":{\"id\":5251,\"name\":\"Greater
147
+ Mark of Critical Chance\",\"description\":\"+0.93% critical chance\",\"sanitizedDescription\":\"+0.93%
148
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.009278},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5257\":{\"id\":5257,\"name\":\"Greater
149
+ Mark of Armor\",\"description\":\"+0.91 armor\",\"sanitizedDescription\":\"+0.91
150
+ armor\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":0.9144},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5256\":{\"id\":5256,\"name\":\"Greater
151
+ Mark of Scaling Health\",\"description\":\"+0.54 health per level (+9.72 at
152
+ champion level 18)\",\"sanitizedDescription\":\"+0.54 health per level (+9.72
153
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":0.5409},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5255\":{\"id\":5255,\"name\":\"Greater
154
+ Mark of Health\",\"description\":\"+3.47 health\",\"sanitizedDescription\":\"+3.47
155
+ health\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":3.4749},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5356\":{\"id\":5356,\"name\":\"Greater
156
+ Quintessence of Scaling Cooldown Reduction\",\"description\":\"-0.28% cooldowns
157
+ per level (-5% at champion level 18)\",\"sanitizedDescription\":\"-0.28% cooldowns
158
+ per level (-5% at champion level 18)\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownModPerLevel\":-0.002778},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5355\":{\"id\":5355,\"name\":\"Greater
159
+ Quintessence of Cooldown Reduction\",\"description\":\"-2.5% cooldowns\",\"sanitizedDescription\":\"-2.5%
160
+ cooldowns\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.025},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"8035\":{\"id\":8035,\"name\":\"Greater
161
+ Quintessence of Studio Rumble\",\"description\":\"+1.5% movement speed\",\"sanitizedDescription\":\"+1.5%
162
+ movement speed\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"8035.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":384,\"w\":48,\"h\":48},\"stats\":{\"PercentMovementSpeedMod\":0.015},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5352\":{\"id\":5352,\"name\":\"Greater
163
+ Quintessence of Scaling Health Regeneration\",\"description\":\"+0.28 health
164
+ regen / 5 sec. per level (+5.04 at champion level 18)\",\"sanitizedDescription\":\"+0.28
165
+ health regen / 5 sec. per level (+5.04 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPRegenModPerLevel\":0.05626},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5351\":{\"id\":5351,\"name\":\"Greater
166
+ Quintessence of Health Regeneration\",\"description\":\"+2.7 health regen
167
+ / 5 sec.\",\"sanitizedDescription\":\"+2.7 health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.54},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5350\":{\"id\":5350,\"name\":\"Greater
168
+ Quintessence of Scaling Magic Resist\",\"description\":\"+0.37 magic resist
169
+ per level (+6.66 at champion level 18)\",\"sanitizedDescription\":\"+0.37
170
+ magic resist per level (+6.66 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.3711},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5348\":{\"id\":5348,\"name\":\"Greater
171
+ Quintessence of Scaling Armor\",\"description\":\"+0.38 armor per level (+6.84
172
+ at champion level 18)\",\"sanitizedDescription\":\"+0.38 armor per level (+6.84
173
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorModPerLevel\":0.375},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5349\":{\"id\":5349,\"name\":\"Greater
174
+ Quintessence of Magic Resist\",\"description\":\"+4 magic resist\",\"sanitizedDescription\":\"+4
175
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":4.0},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5346\":{\"id\":5346,\"name\":\"Greater
176
+ Quintessence of Scaling Health\",\"description\":\"+2.7 health per level (+48.6
177
+ at champion level 18)\",\"sanitizedDescription\":\"+2.7 health per level (+48.6
178
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":2.7043},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5347\":{\"id\":5347,\"name\":\"Greater
179
+ Quintessence of Armor\",\"description\":\"+4.26 armor\",\"sanitizedDescription\":\"+4.26
180
+ armor\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":4.2632},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5249\":{\"id\":5249,\"name\":\"Greater
181
+ Mark of Critical Damage\",\"description\":\"+2.23% critical damage\",\"sanitizedDescription\":\"+2.23%
182
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.022314},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5247\":{\"id\":5247,\"name\":\"Greater
183
+ Mark of Attack Speed\",\"description\":\"+1.7% attack speed\",\"sanitizedDescription\":\"+1.7%
184
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"mark\"],\"image\":{\"full\":\"r_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.016981},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5240\":{\"id\":5240,\"name\":\"Quintessence
185
+ of Scaling Mana Regeneration\",\"description\":\"+0.19 mana regen / 5 sec.
186
+ per level (+3.42 at champion level 18)\",\"sanitizedDescription\":\"+0.19
187
+ mana regen / 5 sec. per level (+3.42 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.03798},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5241\":{\"id\":5241,\"name\":\"Quintessence
188
+ of Magic Penetration\",\"description\":\"+1.56 magic penetration\",\"sanitizedDescription\":\"+1.56
189
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":1.56},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5243\":{\"id\":5243,\"name\":\"Quintessence
190
+ of Movement Speed\",\"description\":\"+1.17% movement speed\",\"sanitizedDescription\":\"+1.17%
191
+ movement speed\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"PercentMovementSpeedMod\":0.011667},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5246\":{\"id\":5246,\"name\":\"Greater
192
+ Mark of Scaling Attack Damage\",\"description\":\"+0.13 attack damage per
193
+ level (+2.43 at champion level 18)\",\"sanitizedDescription\":\"+0.13 attack
194
+ damage per level (+2.43 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.135},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5245\":{\"id\":5245,\"name\":\"Greater
195
+ Mark of Attack Damage\",\"description\":\"+0.95 attack damage\",\"sanitizedDescription\":\"+0.95
196
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.945},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5343\":{\"id\":5343,\"name\":\"Greater
197
+ Quintessence of Armor Penetration\",\"description\":\"+2.56 armor penetration\",\"sanitizedDescription\":\"+2.56
198
+ armor penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":2.56},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5345\":{\"id\":5345,\"name\":\"Greater
199
+ Quintessence of Health\",\"description\":\"+26 health\",\"sanitizedDescription\":\"+26
200
+ health\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":26.0},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5341\":{\"id\":5341,\"name\":\"Greater
201
+ Quintessence of Critical Chance\",\"description\":\"+1.86% critical chance\",\"sanitizedDescription\":\"+1.86%
202
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.018557},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5339\":{\"id\":5339,\"name\":\"Greater
203
+ Quintessence of Critical Damage\",\"description\":\"+4.46% critical damage\",\"sanitizedDescription\":\"+4.46%
204
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.044628},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5335\":{\"id\":5335,\"name\":\"Greater
205
+ Quintessence of Attack Damage\",\"description\":\"+2.25 attack damage\",\"sanitizedDescription\":\"+2.25
206
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":2.25},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5336\":{\"id\":5336,\"name\":\"Greater
207
+ Quintessence of Scaling Attack Damage\",\"description\":\"+0.25 attack damage
208
+ per level (+4.5 at champion level 18)\",\"sanitizedDescription\":\"+0.25 attack
209
+ damage per level (+4.5 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.25},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5337\":{\"id\":5337,\"name\":\"Greater
210
+ Quintessence of Attack Speed\",\"description\":\"+4.5% attack speed\",\"sanitizedDescription\":\"+4.5%
211
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.045},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5236\":{\"id\":5236,\"name\":\"Quintessence
212
+ of Scaling Ability Power\",\"description\":\"+0.34 ability power per level
213
+ (+6.12 at champion level 18)\",\"sanitizedDescription\":\"+0.34 ability power
214
+ per level (+6.12 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.3365},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5237\":{\"id\":5237,\"name\":\"Quintessence
215
+ of Mana\",\"description\":\"+29.17 mana\",\"sanitizedDescription\":\"+29.17
216
+ mana\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":29.1667},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5238\":{\"id\":5238,\"name\":\"Quintessence
217
+ of Scaling Mana\",\"description\":\"+3.24 mana per level (+58.32 at champion
218
+ level 18)\",\"sanitizedDescription\":\"+3.24 mana per level (+58.32 at champion
219
+ level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":3.2407},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5239\":{\"id\":5239,\"name\":\"Quintessence
220
+ of Mana Regeneration\",\"description\":\"+0.97 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.97
221
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.19444},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5330\":{\"id\":5330,\"name\":\"Greater
222
+ Seal of Scaling Mana\",\"description\":\"+1.17 mana per level (+21.06 at champion
223
+ level 18)\",\"sanitizedDescription\":\"+1.17 mana per level (+21.06 at champion
224
+ level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":1.1667},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5129\":{\"id\":5129,\"name\":\"Mark
225
+ of Critical Chance\",\"description\":\"+0.72% critical chance\",\"sanitizedDescription\":\"+0.72%
226
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.007216},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5127\":{\"id\":5127,\"name\":\"Mark
227
+ of Critical Damage\",\"description\":\"+1.74% critical damage\",\"sanitizedDescription\":\"+1.74%
228
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.017355},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5331\":{\"id\":5331,\"name\":\"Greater
229
+ Seal of Mana Regeneration\",\"description\":\"+0.41 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.41
230
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.08126},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5400\":{\"id\":5400,\"name\":\"Lesser
231
+ Mark of Hybrid Penetration\",\"description\":\"+0.5 Armor Penetration / +0.34
232
+ Magic Penetration\",\"sanitizedDescription\":\"+0.5 Armor Penetration / +0.34
233
+ Magic Penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"magic\",\"mark\"],\"image\":{\"full\":\"r_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":0.5,\"rFlatMagicPenetrationMod\":0.34},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5332\":{\"id\":5332,\"name\":\"Greater
234
+ Seal of Scaling Mana Regeneration\",\"description\":\"+0.065 mana regen /
235
+ 5 sec. per level (+1.17 at champion level 18)\",\"sanitizedDescription\":\"+0.065
236
+ mana regen / 5 sec. per level (+1.17 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.013},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5327\":{\"id\":5327,\"name\":\"Greater
237
+ Seal of Ability Power\",\"description\":\"+0.59 ability power\",\"sanitizedDescription\":\"+0.59
238
+ ability power\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.594},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5131\":{\"id\":5131,\"name\":\"Mark
239
+ of Armor Penetration\",\"description\":\"+1 armor penetration\",\"sanitizedDescription\":\"+1
240
+ armor penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":1.0},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5325\":{\"id\":5325,\"name\":\"Greater
241
+ Seal of Cooldown Reduction\",\"description\":\"-0.36% cooldowns\",\"sanitizedDescription\":\"-0.36%
242
+ cooldowns\",\"tags\":[\"seal\"],\"image\":{\"full\":\"y_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.003556},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5135\":{\"id\":5135,\"name\":\"Mark
243
+ of Armor\",\"description\":\"+0.71 armor\",\"sanitizedDescription\":\"+0.71
244
+ armor\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":0.7112},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5329\":{\"id\":5329,\"name\":\"Greater
245
+ Seal of Mana\",\"description\":\"+6.89 mana\",\"sanitizedDescription\":\"+6.89
246
+ mana\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":6.8906},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5134\":{\"id\":5134,\"name\":\"Mark
247
+ of Scaling Health\",\"description\":\"+0.42 health per level (+7.56 at champion
248
+ level 18)\",\"sanitizedDescription\":\"+0.42 health per level (+7.56 at champion
249
+ level 18)\",\"tags\":[\"defense\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":0.4207},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5328\":{\"id\":5328,\"name\":\"Greater
250
+ Seal of Scaling Ability Power\",\"description\":\"+0.1 ability power per level
251
+ (+1.8 at champion level 18)\",\"sanitizedDescription\":\"+0.1 ability power
252
+ per level (+1.8 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.1038},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5133\":{\"id\":5133,\"name\":\"Mark
253
+ of Health\",\"description\":\"+2.7 health\",\"sanitizedDescription\":\"+2.7
254
+ health\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":2.7027},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5115\":{\"id\":5115,\"name\":\"Lesser
255
+ Quintessence of Mana\",\"description\":\"+20.83 mana\",\"sanitizedDescription\":\"+20.83
256
+ mana\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":20.8333},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5116\":{\"id\":5116,\"name\":\"Lesser
257
+ Quintessence of Scaling Mana\",\"description\":\"+2.31 mana per level (+41.58
258
+ at champion level 18)\",\"sanitizedDescription\":\"+2.31 mana per level (+41.58
259
+ at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":2.3148},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5117\":{\"id\":5117,\"name\":\"Lesser
260
+ Quintessence of Mana Regeneration\",\"description\":\"+0.69 mana regen / 5
261
+ sec.\",\"sanitizedDescription\":\"+0.69 mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.13888},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5118\":{\"id\":5118,\"name\":\"Lesser
262
+ Quintessence of Scaling Mana Regeneration\",\"description\":\"+0.14 mana regen
263
+ / 5 sec. per level (+2.52 at champion level 18)\",\"sanitizedDescription\":\"+0.14
264
+ mana regen / 5 sec. per level (+2.52 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.02712},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5410\":{\"id\":5410,\"name\":\"Lesser
265
+ Quintessence of Life Steal\",\"description\":\"+0.84% Life Steal\",\"sanitizedDescription\":\"+0.84%
266
+ Life Steal\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentLifeStealMod\":0.0084},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5320\":{\"id\":5320,\"name\":\"Greater
267
+ Seal of Scaling Magic Resist\",\"description\":\"+0.1 magic resist per level
268
+ (+1.8 at champion level 18)\",\"sanitizedDescription\":\"+0.1 magic resist
269
+ per level (+1.8 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.0965},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5119\":{\"id\":5119,\"name\":\"Lesser
270
+ Quintessence of Magic Penetration\",\"description\":\"+1.11 magic penetration\",\"sanitizedDescription\":\"+1.11
271
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":1.11},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5411\":{\"id\":5411,\"name\":\"Quintessence
272
+ of Life Steal\",\"description\":\"+1.17% Life Steal\",\"sanitizedDescription\":\"+1.17%
273
+ Life Steal\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"PercentLifeStealMod\":0.0117},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5321\":{\"id\":5321,\"name\":\"Greater
274
+ Seal of Health Regeneration\",\"description\":\"+0.56 health regen / 5 sec.\",\"sanitizedDescription\":\"+0.56
275
+ health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.1112},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5322\":{\"id\":5322,\"name\":\"Greater
276
+ Seal of Scaling Health Regeneration\",\"description\":\"+0.11 health regen
277
+ / 5 sec. per level (+1.98 at champion level 18)\",\"sanitizedDescription\":\"+0.11
278
+ health regen / 5 sec. per level (+1.98 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPRegenModPerLevel\":0.0225},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5409\":{\"id\":5409,\"name\":\"Greater
279
+ Quintessence of Spell Vamp\",\"description\":\"+2% Spellvamp.\",\"sanitizedDescription\":\"+2%
280
+ Spellvamp.\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentSpellVampMod\":0.02},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5404\":{\"id\":5404,\"name\":\"Lesser
281
+ Quintessence of Percent Health\",\"description\":\"+0.84% increased health.\",\"sanitizedDescription\":\"+0.84%
282
+ increased health.\",\"tags\":[\"defense\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentHPPoolMod\":0.0084},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5403\":{\"id\":5403,\"name\":\"Greater
283
+ Seal of Gold\",\"description\":\"+0.25 gold / 10 sec.\",\"sanitizedDescription\":\"+0.25
284
+ gold / 10 sec.\",\"tags\":[\"utility\",\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatGoldPer10Mod\":0.25},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5402\":{\"id\":5402,\"name\":\"Greater
285
+ Mark of Hybrid Penetration\",\"description\":\"+0.9 Armor Penetration / +0.62
286
+ Magic Penetration\",\"sanitizedDescription\":\"+0.9 Armor Penetration / +0.62
287
+ Magic Penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"magic\",\"mark\"],\"image\":{\"full\":\"r_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":0.9,\"rFlatMagicPenetrationMod\":0.61},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5316\":{\"id\":5316,\"name\":\"Greater
288
+ Seal of Scaling Health\",\"description\":\"+1.33 health per level (+24 at
289
+ champion level 18)\",\"sanitizedDescription\":\"+1.33 health per level (+24
290
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":1.3334},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5121\":{\"id\":5121,\"name\":\"Lesser
291
+ Quintessence of Movement Speed\",\"description\":\"+0.83% movement speed\",\"sanitizedDescription\":\"+0.83%
292
+ movement speed\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentMovementSpeedMod\":0.008333},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5401\":{\"id\":5401,\"name\":\"Mark
293
+ of Hybrid Penetration\",\"description\":\"+0.7 Armor Penetration / +0.48 Magic
294
+ Penetration\",\"sanitizedDescription\":\"+0.7 Armor Penetration / +0.48 Magic
295
+ Penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"magic\",\"mark\"],\"image\":{\"full\":\"r_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":0.7,\"rFlatMagicPenetrationMod\":0.48},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5315\":{\"id\":5315,\"name\":\"Greater
296
+ Seal of Health\",\"description\":\"+8 health\",\"sanitizedDescription\":\"+8
297
+ health\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":8.0},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5408\":{\"id\":5408,\"name\":\"Quintessence
298
+ of Spell Vamp\",\"description\":\"+1.56% Spellvamp.\",\"sanitizedDescription\":\"+1.56%
299
+ Spellvamp.\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"PercentSpellVampMod\":0.0156},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5318\":{\"id\":5318,\"name\":\"Greater
300
+ Seal of Scaling Armor\",\"description\":\"+0.16 armor per level (+3 at champion
301
+ level 18)\",\"sanitizedDescription\":\"+0.16 armor per level (+3 at champion
302
+ level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorModPerLevel\":0.16667},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5123\":{\"id\":5123,\"name\":\"Mark
303
+ of Attack Damage\",\"description\":\"+0.74 attack damage\",\"sanitizedDescription\":\"+0.74
304
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.735},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5407\":{\"id\":5407,\"name\":\"Lesser
305
+ Quintessence of Spell Vamp\",\"description\":\"+1.12% Spellvamp.\",\"sanitizedDescription\":\"+1.12%
306
+ Spellvamp.\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentSpellVampMod\":0.0112},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5317\":{\"id\":5317,\"name\":\"Greater
307
+ Seal of Armor\",\"description\":\"+1 armor\",\"sanitizedDescription\":\"+1
308
+ armor\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":1.0},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5406\":{\"id\":5406,\"name\":\"Greater
309
+ Quintessence of Percent Health\",\"description\":\"+1.5% increased health.\",\"sanitizedDescription\":\"+1.5%
310
+ increased health.\",\"tags\":[\"defense\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentHPPoolMod\":0.015},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5125\":{\"id\":5125,\"name\":\"Mark
311
+ of Attack Speed\",\"description\":\"+1.32% attack speed\",\"sanitizedDescription\":\"+1.32%
312
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"mark\"],\"image\":{\"full\":\"r_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.013208},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5405\":{\"id\":5405,\"name\":\"Quintessence
313
+ of Percent Health\",\"description\":\"+1.17% increased health.\",\"sanitizedDescription\":\"+1.17%
314
+ increased health.\",\"tags\":[\"defense\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"PercentHPPoolMod\":0.0117},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5319\":{\"id\":5319,\"name\":\"Greater
315
+ Seal of Magic Resist\",\"description\":\"+0.74 magic resist\",\"sanitizedDescription\":\"+0.74
316
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":0.7425},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5124\":{\"id\":5124,\"name\":\"Mark
317
+ of Scaling Attack Damage\",\"description\":\"+0.1 attack damage per level
318
+ (+1.89 at champion level 18)\",\"sanitizedDescription\":\"+0.1 attack damage
319
+ per level (+1.89 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.105},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5311\":{\"id\":5311,\"name\":\"Greater
320
+ Seal of Critical Chance\",\"description\":\"+0.42% critical chance\",\"sanitizedDescription\":\"+0.42%
321
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.004175},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5108\":{\"id\":5108,\"name\":\"Lesser
322
+ Quintessence of Scaling Health Regeneration\",\"description\":\"+0.16 health
323
+ regen / 5 sec. per level (+2.88 at champion level 18)\",\"sanitizedDescription\":\"+0.16
324
+ health regen / 5 sec. per level (+2.88 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPRegenModPerLevel\":0.03126},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5106\":{\"id\":5106,\"name\":\"Lesser
325
+ Quintessence of Scaling Magic Resist\",\"description\":\"+0.21 magic resist
326
+ per level (+3.78 at champion level 18)\",\"sanitizedDescription\":\"+0.21
327
+ magic resist per level (+3.78 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.2062},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5107\":{\"id\":5107,\"name\":\"Lesser
328
+ Quintessence of Health Regeneration\",\"description\":\"+1.5 health regen
329
+ / 5 sec.\",\"sanitizedDescription\":\"+1.5 health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.3},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5104\":{\"id\":5104,\"name\":\"Lesser
330
+ Quintessence of Scaling Armor\",\"description\":\"+0.21 armor per level (+3.78
331
+ at champion level 18)\",\"sanitizedDescription\":\"+0.21 armor per level (+3.78
332
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorModPerLevel\":0.2083},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5105\":{\"id\":5105,\"name\":\"Lesser
333
+ Quintessence of Magic Resist\",\"description\":\"+2.22 magic resist\",\"sanitizedDescription\":\"+2.22
334
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":2.22},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5007\":{\"id\":5007,\"name\":\"Lesser
335
+ Mark of Critical Chance\",\"description\":\"+0.52% critical chance\",\"sanitizedDescription\":\"+0.52%
336
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.005155},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5005\":{\"id\":5005,\"name\":\"Lesser
337
+ Mark of Critical Damage\",\"description\":\"+1.24% critical damage\",\"sanitizedDescription\":\"+1.24%
338
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.012397},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5213\":{\"id\":5213,\"name\":\"Quintessence
339
+ of Attack Damage\",\"description\":\"+1.75 attack damage\",\"sanitizedDescription\":\"+1.75
340
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":1.75},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5210\":{\"id\":5210,\"name\":\"Seal
341
+ of Scaling Mana Regeneration\",\"description\":\"+0.05 mana regen / 5 sec.
342
+ per level (+0.9 at champion level 18)\",\"sanitizedDescription\":\"+0.05 mana
343
+ regen / 5 sec. per level (+0.9 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.01},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5009\":{\"id\":5009,\"name\":\"Lesser
344
+ Mark of Armor Penetration\",\"description\":\"+0.72 armor penetration\",\"sanitizedDescription\":\"+0.72
345
+ armor penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":0.72},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5206\":{\"id\":5206,\"name\":\"Seal
346
+ of Scaling Ability Power\",\"description\":\"+0.08 ability power per level
347
+ (+1.44 at champion level 18)\",\"sanitizedDescription\":\"+0.08 ability power
348
+ per level (+1.44 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.0808},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5011\":{\"id\":5011,\"name\":\"Lesser
349
+ Mark of Health\",\"description\":\"+1.93 health\",\"sanitizedDescription\":\"+1.93
350
+ health\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":1.9305},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5205\":{\"id\":5205,\"name\":\"Seal
351
+ of Ability Power\",\"description\":\"+0.46 ability power\",\"sanitizedDescription\":\"+0.46
352
+ ability power\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.462},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5203\":{\"id\":5203,\"name\":\"Seal
353
+ of Cooldown Reduction\",\"description\":\"-0.29% cooldowns\",\"sanitizedDescription\":\"-0.29%
354
+ cooldowns\",\"tags\":[\"seal\"],\"image\":{\"full\":\"y_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.002889},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5015\":{\"id\":5015,\"name\":\"Lesser
355
+ Mark of Magic Resist\",\"description\":\"+0.43 magic resist\",\"sanitizedDescription\":\"+0.43
356
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":0.43},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5209\":{\"id\":5209,\"name\":\"Seal
357
+ of Mana Regeneration\",\"description\":\"+0.32 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.32
358
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.0632},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5208\":{\"id\":5208,\"name\":\"Seal
359
+ of Scaling Mana\",\"description\":\"+0.91 mana per level (+16.38 at champion
360
+ level 18)\",\"sanitizedDescription\":\"+0.91 mana per level (+16.38 at champion
361
+ level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":0.9074},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5013\":{\"id\":5013,\"name\":\"Lesser
362
+ Mark of Armor\",\"description\":\"+0.51 armor\",\"sanitizedDescription\":\"+0.51
363
+ armor\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":0.508},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5207\":{\"id\":5207,\"name\":\"Seal
364
+ of Mana\",\"description\":\"+5.36 mana\",\"sanitizedDescription\":\"+5.36
365
+ mana\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":5.3594},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5012\":{\"id\":5012,\"name\":\"Lesser
366
+ Mark of Scaling Health\",\"description\":\"+0.3 health per level (+5.4 at
367
+ champion level 18)\",\"sanitizedDescription\":\"+0.3 health per level (+5.4
368
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":0.3005},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5309\":{\"id\":5309,\"name\":\"Greater
369
+ Seal of Critical Damage\",\"description\":\"+0.78% critical damage\",\"sanitizedDescription\":\"+0.78%
370
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.00781},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5114\":{\"id\":5114,\"name\":\"Lesser
371
+ Quintessence of Scaling Ability Power\",\"description\":\"+0.24 ability power
372
+ per level (+4.32 at champion level 18)\",\"sanitizedDescription\":\"+0.24
373
+ ability power per level (+4.32 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.2404},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5113\":{\"id\":5113,\"name\":\"Lesser
374
+ Quintessence of Ability Power\",\"description\":\"+2.75 ability power\",\"sanitizedDescription\":\"+2.75
375
+ ability power\",\"tags\":[\"magic\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":2.75},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5307\":{\"id\":5307,\"name\":\"Greater
376
+ Seal of Attack Speed\",\"description\":\"+0.76% attack speed\",\"sanitizedDescription\":\"+0.76%
377
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.007642},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5112\":{\"id\":5112,\"name\":\"Lesser
378
+ Quintessence of Scaling Cooldown Reduction\",\"description\":\"-0.15% cooldowns
379
+ per level (-2.8% at champion level 18)\",\"sanitizedDescription\":\"-0.15%
380
+ cooldowns per level (-2.8% at champion level 18)\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownModPerLevel\":-0.0015556},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5306\":{\"id\":5306,\"name\":\"Greater
381
+ Seal of Scaling Attack Damage\",\"description\":\"+0.06 attack damage per
382
+ level (+1.09 at champion level 18)\",\"sanitizedDescription\":\"+0.06 attack
383
+ damage per level (+1.09 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.0608},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5111\":{\"id\":5111,\"name\":\"Lesser
384
+ Quintessence of Cooldown Reduction\",\"description\":\"-1.4% cooldowns\",\"sanitizedDescription\":\"-1.4%
385
+ cooldowns\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.014},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5305\":{\"id\":5305,\"name\":\"Greater
386
+ Seal of Attack Damage\",\"description\":\"+0.43 attack damage\",\"sanitizedDescription\":\"+0.43
387
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.4254},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5303\":{\"id\":5303,\"name\":\"Greater
388
+ Glyph of Magic Penetration\",\"description\":\"+0.63 magic penetration\",\"sanitizedDescription\":\"+0.63
389
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":0.63},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5302\":{\"id\":5302,\"name\":\"Greater
390
+ Glyph of Scaling Mana Regeneration\",\"description\":\"+0.06 mana regen /
391
+ 5 sec. per level (+1.2 at champion level 18)\",\"sanitizedDescription\":\"+0.06
392
+ mana regen / 5 sec. per level (+1.2 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.01334},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5300\":{\"id\":5300,\"name\":\"Greater
393
+ Glyph of Scaling Mana\",\"description\":\"+1.42 mana per level (+25.56 at
394
+ champion level 18)\",\"sanitizedDescription\":\"+1.42 mana per level (+25.56
395
+ at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":1.4167},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5301\":{\"id\":5301,\"name\":\"Greater
396
+ Glyph of Mana Regeneration\",\"description\":\"+0.33 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.33
397
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.066},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5200\":{\"id\":5200,\"name\":\"Seal
398
+ of Scaling Health Regeneration\",\"description\":\"+0.09 health regen / 5
399
+ sec. per level (+1.62 at champion level 18)\",\"sanitizedDescription\":\"+0.09
400
+ health regen / 5 sec. per level (+1.62 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPRegenModPerLevel\":0.0175},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5002\":{\"id\":5002,\"name\":\"Lesser
401
+ Mark of Scaling Attack Damage\",\"description\":\"+0.08 attack damage per
402
+ level (+1.35 at champion level 18)\",\"sanitizedDescription\":\"+0.08 attack
403
+ damage per level (+1.35 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.075},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5001\":{\"id\":5001,\"name\":\"Lesser
404
+ Mark of Attack Damage\",\"description\":\"+0.53 attack damage\",\"sanitizedDescription\":\"+0.53
405
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.525},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5003\":{\"id\":5003,\"name\":\"Lesser
406
+ Mark of Attack Speed\",\"description\":\"+0.94% attack speed\",\"sanitizedDescription\":\"+0.94%
407
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"mark\"],\"image\":{\"full\":\"r_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.009434},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5101\":{\"id\":5101,\"name\":\"Lesser
408
+ Quintessence of Health\",\"description\":\"+14.5 health\",\"sanitizedDescription\":\"+14.5
409
+ health\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":14.5},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5103\":{\"id\":5103,\"name\":\"Lesser
410
+ Quintessence of Armor\",\"description\":\"+2.37 armor\",\"sanitizedDescription\":\"+2.37
411
+ armor\",\"tags\":[\"defense\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":2.3684},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5102\":{\"id\":5102,\"name\":\"Lesser
412
+ Quintessence of Scaling Health\",\"description\":\"+1.5 health per level (+27
413
+ at champion level 18)\",\"sanitizedDescription\":\"+1.5 health per level (+27
414
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":1.5024},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5168\":{\"id\":5168,\"name\":\"Glyph
415
+ of Scaling Magic Resist\",\"description\":\"+0.13 magic resist per level (+2.34
416
+ at champion level 18)\",\"sanitizedDescription\":\"+0.13 magic resist per
417
+ level (+2.34 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.13},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5169\":{\"id\":5169,\"name\":\"Glyph
418
+ of Health Regeneration\",\"description\":\"+0.21 health regen / 5 sec.\",\"sanitizedDescription\":\"+0.21
419
+ health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.042},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5167\":{\"id\":5167,\"name\":\"Glyph
420
+ of Magic Resist\",\"description\":\"+1.04 magic resist\",\"sanitizedDescription\":\"+1.04
421
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":1.04},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5164\":{\"id\":5164,\"name\":\"Glyph
422
+ of Scaling Health\",\"description\":\"+0.42 health per level (+7.56 at champion
423
+ level 18)\",\"sanitizedDescription\":\"+0.42 health per level (+7.56 at champion
424
+ level 18)\",\"tags\":[\"defense\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":0.4207},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5165\":{\"id\":5165,\"name\":\"Glyph
425
+ of Armor\",\"description\":\"+0.55 armor\",\"sanitizedDescription\":\"+0.55
426
+ armor\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":0.5471},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5163\":{\"id\":5163,\"name\":\"Glyph
427
+ of Health\",\"description\":\"+2.08 health\",\"sanitizedDescription\":\"+2.08
428
+ health\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":2.079},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5021\":{\"id\":5021,\"name\":\"Lesser
429
+ Mark of Cooldown Reduction\",\"description\":\"-0.11% cooldowns\",\"sanitizedDescription\":\"-0.11%
430
+ cooldowns\",\"tags\":[\"mark\"],\"image\":{\"full\":\"r_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.001112},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5025\":{\"id\":5025,\"name\":\"Lesser
431
+ Mark of Mana\",\"description\":\"+3.28 mana\",\"sanitizedDescription\":\"+3.28
432
+ mana\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":3.2813},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5026\":{\"id\":5026,\"name\":\"Lesser
433
+ Mark of Scaling Mana\",\"description\":\"+0.65 mana per level (+11.7 at champion
434
+ level 18)\",\"sanitizedDescription\":\"+0.65 mana per level (+11.7 at champion
435
+ level 18)\",\"tags\":[\"magic\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":0.6481},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5023\":{\"id\":5023,\"name\":\"Lesser
436
+ Mark of Ability Power\",\"description\":\"+0.33 ability power\",\"sanitizedDescription\":\"+0.33
437
+ ability power\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.33},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5024\":{\"id\":5024,\"name\":\"Lesser
438
+ Mark of Scaling Ability Power\",\"description\":\"+0.06 ability power per
439
+ level (+1.08 at champion level 18)\",\"sanitizedDescription\":\"+0.06 ability
440
+ power per level (+1.08 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.0577},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5016\":{\"id\":5016,\"name\":\"Lesser
441
+ Mark of Scaling Magic Resist\",\"description\":\"+0.04 magic resist per level
442
+ (+0.72 at champion level 18)\",\"sanitizedDescription\":\"+0.04 magic resist
443
+ per level (+0.72 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.0412},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5159\":{\"id\":5159,\"name\":\"Glyph
444
+ of Critical Chance\",\"description\":\"+0.22% critical chance\",\"sanitizedDescription\":\"+0.22%
445
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.002165},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5177\":{\"id\":5177,\"name\":\"Glyph
446
+ of Mana\",\"description\":\"+8.75 mana\",\"sanitizedDescription\":\"+8.75
447
+ mana\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":8.75},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5178\":{\"id\":5178,\"name\":\"Glyph
448
+ of Scaling Mana\",\"description\":\"+1.1 mana per level (+19.8 at champion
449
+ level 18)\",\"sanitizedDescription\":\"+1.1 mana per level (+19.8 at champion
450
+ level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":1.1019},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5179\":{\"id\":5179,\"name\":\"Glyph
451
+ of Mana Regeneration\",\"description\":\"+0.26 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.26
452
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.052},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5173\":{\"id\":5173,\"name\":\"Glyph
453
+ of Cooldown Reduction\",\"description\":\"-0.67% cooldowns\",\"sanitizedDescription\":\"-0.67%
454
+ cooldowns\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"b_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.00667},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5174\":{\"id\":5174,\"name\":\"Glyph
455
+ of Scaling Cooldown Reduction\",\"description\":\"-0.07% cooldowns per level
456
+ (-1.3% at champion level 18)\",\"sanitizedDescription\":\"-0.07% cooldowns
457
+ per level (-1.3% at champion level 18)\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"b_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownModPerLevel\":-7.223E-4},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5175\":{\"id\":5175,\"name\":\"Glyph
458
+ of Ability Power\",\"description\":\"+0.92 ability power\",\"sanitizedDescription\":\"+0.92
459
+ ability power\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.92},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5176\":{\"id\":5176,\"name\":\"Glyph
460
+ of Scaling Ability Power\",\"description\":\"+0.13 ability power per level
461
+ (+2.34 at champion level 18)\",\"sanitizedDescription\":\"+0.13 ability power
462
+ per level (+2.34 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.1346},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5031\":{\"id\":5031,\"name\":\"Lesser
463
+ Glyph of Attack Damage\",\"description\":\"+0.16 attack damage\",\"sanitizedDescription\":\"+0.16
464
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.1575},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5032\":{\"id\":5032,\"name\":\"Lesser
465
+ Glyph of Scaling Attack Damage\",\"description\":\"+0.02 attack damage per
466
+ level (+0.36 at champion level 18)\",\"sanitizedDescription\":\"+0.02 attack
467
+ damage per level (+0.36 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.0225},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5033\":{\"id\":5033,\"name\":\"Lesser
468
+ Glyph of Attack Speed\",\"description\":\"+0.35% attack speed\",\"sanitizedDescription\":\"+0.35%
469
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"glyph\"],\"image\":{\"full\":\"b_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.003538},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5035\":{\"id\":5035,\"name\":\"Lesser
470
+ Glyph of Critical Damage\",\"description\":\"+0.31% critical damage\",\"sanitizedDescription\":\"+0.31%
471
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.003099},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5037\":{\"id\":5037,\"name\":\"Lesser
472
+ Glyph of Critical Chance\",\"description\":\"+0.15% critical chance\",\"sanitizedDescription\":\"+0.15%
473
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.001546},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"10001\":{\"id\":10001,\"name\":\"Razer
474
+ Mark of Precision\",\"description\":\"+2.23% critical damage\",\"sanitizedDescription\":\"+2.23%
475
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"10001.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.022314},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5027\":{\"id\":5027,\"name\":\"Lesser
476
+ Mark of Mana Regeneration\",\"description\":\"+0.15 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.15
477
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.02916},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"10002\":{\"id\":10002,\"name\":\"Razer
478
+ Quintessence of Speed\",\"description\":\"+1.5% movement speed\",\"sanitizedDescription\":\"+1.5%
479
+ movement speed\",\"tags\":[\"utility\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"10002.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"PercentMovementSpeedMod\":0.015},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5029\":{\"id\":5029,\"name\":\"Lesser
480
+ Mark of Magic Penetration\",\"description\":\"+0.49 magic penetration\",\"sanitizedDescription\":\"+0.49
481
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":0.49},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5418\":{\"id\":5418,\"name\":\"Greater
482
+ Quintessence of Hybrid Penetration\",\"description\":\"+1.79 Armor Penetration
483
+ / +1.4 Magic Penetration\",\"sanitizedDescription\":\"+1.79 Armor Penetration
484
+ / +1.4 Magic Penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"magic\",\"quintessence\"],\"image\":{\"full\":\"bl_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":1.79,\"rFlatMagicPenetrationMod\":1.4},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5143\":{\"id\":5143,\"name\":\"Mark
485
+ of Cooldown Reduction\",\"description\":\"-0.16% cooldowns\",\"sanitizedDescription\":\"-0.16%
486
+ cooldowns\",\"tags\":[\"mark\"],\"image\":{\"full\":\"r_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.001556},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5416\":{\"id\":5416,\"name\":\"Lesser
487
+ Quintessence of Hybrid Penetration\",\"description\":\"+0.99 Armor Penetration
488
+ / +0.78 Magic Penetration\",\"sanitizedDescription\":\"+0.99 Armor Penetration
489
+ / +0.78 Magic Penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"magic\",\"quintessence\"],\"image\":{\"full\":\"bl_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":0.99,\"rFlatMagicPenetrationMod\":0.78},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5417\":{\"id\":5417,\"name\":\"Quintessence
490
+ of Hybrid Penetration\",\"description\":\"+1.39 Armor Penetration / +1.09
491
+ Magic Penetration\",\"sanitizedDescription\":\"+1.39 Armor Penetration / +1.09
492
+ Magic Penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"magic\",\"quintessence\"],\"image\":{\"full\":\"bl_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":1.39,\"rFlatMagicPenetrationMod\":1.09},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"black\"}},\"5414\":{\"id\":5414,\"name\":\"Seal
493
+ of Percent Health\",\"description\":\"+0.39% Health.\",\"sanitizedDescription\":\"+0.39%
494
+ Health.\",\"tags\":[\"defense\",\"percent\",\"seal\"],\"image\":{\"full\":\"y_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"PercentHPPoolMod\":0.0039},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5146\":{\"id\":5146,\"name\":\"Mark
495
+ of Scaling Ability Power\",\"description\":\"+0.08 ability power per level
496
+ (+1.44 at champion level 18)\",\"sanitizedDescription\":\"+0.08 ability power
497
+ per level (+1.44 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.0808},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5415\":{\"id\":5415,\"name\":\"Greater
498
+ Seal of Percent Health\",\"description\":\"+0.5% Health.\",\"sanitizedDescription\":\"+0.5%
499
+ Health.\",\"tags\":[\"defense\",\"percent\",\"seal\"],\"image\":{\"full\":\"y_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentHPPoolMod\":0.005},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"yellow\"}},\"5147\":{\"id\":5147,\"name\":\"Mark
500
+ of Mana\",\"description\":\"+4.59 mana\",\"sanitizedDescription\":\"+4.59
501
+ mana\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":4.5938},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5412\":{\"id\":5412,\"name\":\"Greater
502
+ Quintessence of Life Steal\",\"description\":\"+1.5% Life Steal.\",\"sanitizedDescription\":\"+1.5%
503
+ Life Steal.\",\"tags\":[\"quintessence\"],\"image\":{\"full\":\"bl_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentLifeStealMod\":0.015},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"black\"}},\"5413\":{\"id\":5413,\"name\":\"Lesser
504
+ Seal of Percent Health\",\"description\":\"+0.28% Health.\",\"sanitizedDescription\":\"+0.28%
505
+ Health.\",\"tags\":[\"defense\",\"percent\",\"seal\"],\"image\":{\"full\":\"y_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentHPPoolMod\":0.0028},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5145\":{\"id\":5145,\"name\":\"Mark
506
+ of Ability Power\",\"description\":\"+0.46 ability power\",\"sanitizedDescription\":\"+0.46
507
+ ability power\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.462},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5047\":{\"id\":5047,\"name\":\"Lesser
508
+ Glyph of Health Regeneration\",\"description\":\"+0.15 health regen / 5 sec.\",\"sanitizedDescription\":\"+0.15
509
+ health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.03},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5045\":{\"id\":5045,\"name\":\"Lesser
510
+ Glyph of Magic Resist\",\"description\":\"+0.74 magic resist\",\"sanitizedDescription\":\"+0.74
511
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":0.74},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5046\":{\"id\":5046,\"name\":\"Lesser
512
+ Glyph of Scaling Magic Resist\",\"description\":\"+0.09 magic resist per level
513
+ (+1.68 at champion level 18)\",\"sanitizedDescription\":\"+0.09 magic resist
514
+ per level (+1.68 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.09333},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5043\":{\"id\":5043,\"name\":\"Lesser
515
+ Glyph of Armor\",\"description\":\"+0.39 armor\",\"sanitizedDescription\":\"+0.39
516
+ armor\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":0.3908},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5041\":{\"id\":5041,\"name\":\"Lesser
517
+ Glyph of Health\",\"description\":\"+1.49 health\",\"sanitizedDescription\":\"+1.49
518
+ health\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":1.485},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5042\":{\"id\":5042,\"name\":\"Lesser
519
+ Glyph of Scaling Health\",\"description\":\"+0.3 health per level (+5.4 at
520
+ champion level 18)\",\"sanitizedDescription\":\"+0.3 health per level (+5.4
521
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":0.3005},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5138\":{\"id\":5138,\"name\":\"Mark
522
+ of Scaling Magic Resist\",\"description\":\"+0.06 magic resist per level (+1.08
523
+ at champion level 18)\",\"sanitizedDescription\":\"+0.06 magic resist per
524
+ level (+1.08 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.0577},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5137\":{\"id\":5137,\"name\":\"Mark
525
+ of Magic Resist\",\"description\":\"+0.6 magic resist\",\"sanitizedDescription\":\"+0.6
526
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":0.6},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5151\":{\"id\":5151,\"name\":\"Mark
527
+ of Magic Penetration\",\"description\":\"+0.68 magic penetration\",\"sanitizedDescription\":\"+0.68
528
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":0.68},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5153\":{\"id\":5153,\"name\":\"Glyph
529
+ of Attack Damage\",\"description\":\"+0.22 attack damage\",\"sanitizedDescription\":\"+0.22
530
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.2205},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5154\":{\"id\":5154,\"name\":\"Glyph
531
+ of Scaling Attack Damage\",\"description\":\"+0.03 attack damage per level
532
+ (+0.57 at champion level 18)\",\"sanitizedDescription\":\"+0.03 attack damage
533
+ per level (+0.57 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.0315},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5051\":{\"id\":5051,\"name\":\"Lesser
534
+ Glyph of Cooldown Reduction\",\"description\":\"-0.47% cooldowns\",\"sanitizedDescription\":\"-0.47%
535
+ cooldowns\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"b_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.0047},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5155\":{\"id\":5155,\"name\":\"Glyph
536
+ of Attack Speed\",\"description\":\"+0.5% attack speed\",\"sanitizedDescription\":\"+0.5%
537
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"glyph\"],\"image\":{\"full\":\"b_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.004953},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5157\":{\"id\":5157,\"name\":\"Glyph
538
+ of Critical Damage\",\"description\":\"+0.43% critical damage\",\"sanitizedDescription\":\"+0.43%
539
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.004339},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5056\":{\"id\":5056,\"name\":\"Lesser
540
+ Glyph of Scaling Mana\",\"description\":\"+0.79 mana per level (+14.22 at
541
+ champion level 18)\",\"sanitizedDescription\":\"+0.79 mana per level (+14.22
542
+ at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":0.787},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5057\":{\"id\":5057,\"name\":\"Lesser
543
+ Glyph of Mana Regeneration\",\"description\":\"+0.19 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.19
544
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.038},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5058\":{\"id\":5058,\"name\":\"Lesser
545
+ Glyph of Scaling Mana Regeneration\",\"description\":\"+0.04 mana regen /
546
+ 5 sec. per level (+0.67 at champion level 18)\",\"sanitizedDescription\":\"+0.04
547
+ mana regen / 5 sec. per level (+0.67 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.007444},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5059\":{\"id\":5059,\"name\":\"Lesser
548
+ Glyph of Magic Penetration\",\"description\":\"+0.35 magic penetration\",\"sanitizedDescription\":\"+0.35
549
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":0.35},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5052\":{\"id\":5052,\"name\":\"Lesser
550
+ Glyph of Scaling Cooldown Reduction\",\"description\":\"-0.05% cooldowns per
551
+ level (-0.93% at champion level 18)\",\"sanitizedDescription\":\"-0.05% cooldowns
552
+ per level (-0.93% at champion level 18)\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"b_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownModPerLevel\":-5.1667E-4},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5053\":{\"id\":5053,\"name\":\"Lesser
553
+ Glyph of Ability Power\",\"description\":\"+0.66 ability power\",\"sanitizedDescription\":\"+0.66
554
+ ability power\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.66},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5054\":{\"id\":5054,\"name\":\"Lesser
555
+ Glyph of Scaling Ability Power\",\"description\":\"+0.1 ability power per
556
+ level (+1.8 at champion level 18)\",\"sanitizedDescription\":\"+0.1 ability
557
+ power per level (+1.8 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.0962},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5055\":{\"id\":5055,\"name\":\"Lesser
558
+ Glyph of Mana\",\"description\":\"+6.25 mana\",\"sanitizedDescription\":\"+6.25
559
+ mana\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":0,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":6.25},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"5149\":{\"id\":5149,\"name\":\"Mark
560
+ of Mana Regeneration\",\"description\":\"+0.2 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.2
561
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.04084},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5148\":{\"id\":5148,\"name\":\"Mark
562
+ of Scaling Mana\",\"description\":\"+0.91 mana per level (+16.38 at champion
563
+ level 18)\",\"sanitizedDescription\":\"+0.91 mana per level (+16.38 at champion
564
+ level 18)\",\"tags\":[\"magic\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":0.9074},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5065\":{\"id\":5065,\"name\":\"Lesser
565
+ Seal of Critical Damage\",\"description\":\"+0.43% critical damage\",\"sanitizedDescription\":\"+0.43%
566
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.004339},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5259\":{\"id\":5259,\"name\":\"Greater
567
+ Mark of Magic Resist\",\"description\":\"+0.77 magic resist\",\"sanitizedDescription\":\"+0.77
568
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":0.77},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5063\":{\"id\":5063,\"name\":\"Lesser
569
+ Seal of Attack Speed\",\"description\":\"+0.42% attack speed\",\"sanitizedDescription\":\"+0.42%
570
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"seal\"],\"image\":{\"full\":\"y_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.004245},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5067\":{\"id\":5067,\"name\":\"Lesser
571
+ Seal of Critical Chance\",\"description\":\"+0.23% critical chance\",\"sanitizedDescription\":\"+0.23%
572
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.00232},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5062\":{\"id\":5062,\"name\":\"Lesser
573
+ Seal of Scaling Attack Damage\",\"description\":\"+0.03 attack damage per
574
+ level (+0.61 at champion level 18)\",\"sanitizedDescription\":\"+0.03 attack
575
+ damage per level (+0.61 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.0338},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5061\":{\"id\":5061,\"name\":\"Lesser
576
+ Seal of Attack Damage\",\"description\":\"+0.24 attack damage\",\"sanitizedDescription\":\"+0.24
577
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.2364},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5260\":{\"id\":5260,\"name\":\"Greater
578
+ Mark of Scaling Magic Resist\",\"description\":\"+0.07 magic resist per level
579
+ (+1.26 at champion level 18)\",\"sanitizedDescription\":\"+0.07 magic resist
580
+ per level (+1.26 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.0742},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5267\":{\"id\":5267,\"name\":\"Greater
581
+ Mark of Ability Power\",\"description\":\"+0.59 ability power\",\"sanitizedDescription\":\"+0.59
582
+ ability power\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.594},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5268\":{\"id\":5268,\"name\":\"Greater
583
+ Mark of Scaling Ability Power\",\"description\":\"+0.1 ability power per level
584
+ (+1.8 at champion level 18)\",\"sanitizedDescription\":\"+0.1 ability power
585
+ per level (+1.8 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.1038},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5265\":{\"id\":5265,\"name\":\"Greater
586
+ Mark of Cooldown Reduction\",\"description\":\"-0.2% cooldowns\",\"sanitizedDescription\":\"-0.2%
587
+ cooldowns\",\"tags\":[\"mark\"],\"image\":{\"full\":\"r_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.002},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5075\":{\"id\":5075,\"name\":\"Lesser
588
+ Seal of Magic Resist\",\"description\":\"+0.41 magic resist\",\"sanitizedDescription\":\"+0.41
589
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":0.4125},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5269\":{\"id\":5269,\"name\":\"Greater
590
+ Mark of Mana\",\"description\":\"+5.91 mana\",\"sanitizedDescription\":\"+5.91
591
+ mana\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":5.9063},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5074\":{\"id\":5074,\"name\":\"Lesser
592
+ Seal of Scaling Armor\",\"description\":\"+0.09 armor per level (+1.68 at
593
+ champion level 18)\",\"sanitizedDescription\":\"+0.09 armor per level (+1.68
594
+ at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorModPerLevel\":0.09333},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5077\":{\"id\":5077,\"name\":\"Lesser
595
+ Seal of Health Regeneration\",\"description\":\"+0.31 health regen / 5 sec.\",\"sanitizedDescription\":\"+0.31
596
+ health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.062},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5076\":{\"id\":5076,\"name\":\"Lesser
597
+ Seal of Scaling Magic Resist\",\"description\":\"+0.05 magic resist per level
598
+ (+0.9 at champion level 18)\",\"sanitizedDescription\":\"+0.05 magic resist
599
+ per level (+0.9 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.0536},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5078\":{\"id\":5078,\"name\":\"Lesser
600
+ Seal of Scaling Health Regeneration\",\"description\":\"+0.06 health regen
601
+ / 5 sec. per level (+1.08 at champion level 18)\",\"sanitizedDescription\":\"+0.06
602
+ health regen / 5 sec. per level (+1.08 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPRegenModPerLevel\":0.0125},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5071\":{\"id\":5071,\"name\":\"Lesser
603
+ Seal of Health\",\"description\":\"+4.48 health\",\"sanitizedDescription\":\"+4.48
604
+ health\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":4.48},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5073\":{\"id\":5073,\"name\":\"Lesser
605
+ Seal of Armor\",\"description\":\"+0.56 armor\",\"sanitizedDescription\":\"+0.56
606
+ armor\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":0.56},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5072\":{\"id\":5072,\"name\":\"Lesser
607
+ Seal of Scaling Health\",\"description\":\"+0.75 health per level (+13.44
608
+ at champion level 18)\",\"sanitizedDescription\":\"+0.75 health per level
609
+ (+13.44 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":0.74667},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5270\":{\"id\":5270,\"name\":\"Greater
610
+ Mark of Scaling Mana\",\"description\":\"+1.17 mana per level (+21.06 at champion
611
+ level 18)\",\"sanitizedDescription\":\"+1.17 mana per level (+21.06 at champion
612
+ level 18)\",\"tags\":[\"magic\",\"perLevel\",\"mark\"],\"image\":{\"full\":\"r_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":1.1667},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5271\":{\"id\":5271,\"name\":\"Greater
613
+ Mark of Mana Regeneration\",\"description\":\"+0.26 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.26
614
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.0525},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5273\":{\"id\":5273,\"name\":\"Greater
615
+ Mark of Magic Penetration\",\"description\":\"+0.87 magic penetration\",\"sanitizedDescription\":\"+0.87
616
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"mark\"],\"image\":{\"full\":\"r_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":0.87},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"red\"}},\"5275\":{\"id\":5275,\"name\":\"Greater
617
+ Glyph of Attack Damage\",\"description\":\"+0.28 attack damage\",\"sanitizedDescription\":\"+0.28
618
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.2835},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5276\":{\"id\":5276,\"name\":\"Greater
619
+ Glyph of Scaling Attack Damage\",\"description\":\"+0.04 attack damage per
620
+ level (+0.73 at champion level 18)\",\"sanitizedDescription\":\"+0.04 attack
621
+ damage per level (+0.73 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.0405},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5277\":{\"id\":5277,\"name\":\"Greater
622
+ Glyph of Attack Speed\",\"description\":\"+0.64% attack speed\",\"sanitizedDescription\":\"+0.64%
623
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"glyph\"],\"image\":{\"full\":\"b_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.006368},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5279\":{\"id\":5279,\"name\":\"Greater
624
+ Glyph of Critical Damage\",\"description\":\"+0.56% critical damage\",\"sanitizedDescription\":\"+0.56%
625
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.005579},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5183\":{\"id\":5183,\"name\":\"Seal
626
+ of Attack Damage\",\"description\":\"+0.33 attack damage\",\"sanitizedDescription\":\"+0.33
627
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":0.3309},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5088\":{\"id\":5088,\"name\":\"Lesser
628
+ Seal of Scaling Mana Regeneration\",\"description\":\"+0.036 mana regen /
629
+ 5 sec. per level (+0.65 at champion level 18)\",\"sanitizedDescription\":\"+0.036
630
+ mana regen / 5 sec. per level (+0.65 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.0072},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5087\":{\"id\":5087,\"name\":\"Lesser
631
+ Seal of Mana Regeneration\",\"description\":\"+0.23 mana regen / 5 sec.\",\"sanitizedDescription\":\"+0.23
632
+ mana regen / 5 sec.\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMPRegenMod\":0.04514},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5181\":{\"id\":5181,\"name\":\"Glyph
633
+ of Magic Penetration\",\"description\":\"+0.49 magic penetration\",\"sanitizedDescription\":\"+0.49
634
+ magic penetration\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicPenetrationMod\":0.49},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5086\":{\"id\":5086,\"name\":\"Lesser
635
+ Seal of Scaling Mana\",\"description\":\"+0.65 mana per level (+11.7 at champion
636
+ level 18)\",\"sanitizedDescription\":\"+0.65 mana per level (+11.7 at champion
637
+ level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPModPerLevel\":0.6481},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5180\":{\"id\":5180,\"name\":\"Glyph
638
+ of Scaling Mana Regeneration\",\"description\":\"+0.05 mana regen / 5 sec.
639
+ per level (+0.94 at champion level 18)\",\"sanitizedDescription\":\"+0.05
640
+ mana regen / 5 sec. per level (+0.94 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatMPRegenModPerLevel\":0.01044},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"5085\":{\"id\":5085,\"name\":\"Lesser
641
+ Seal of Mana\",\"description\":\"+3.83 mana\",\"sanitizedDescription\":\"+3.83
642
+ mana\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":3.8281},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5187\":{\"id\":5187,\"name\":\"Seal
643
+ of Critical Damage\",\"description\":\"+0.61% critical damage\",\"sanitizedDescription\":\"+0.61%
644
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.006074},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5084\":{\"id\":5084,\"name\":\"Lesser
645
+ Seal of Scaling Ability Power\",\"description\":\"+0.06 ability power per
646
+ level (+1.08 at champion level 18)\",\"sanitizedDescription\":\"+0.06 ability
647
+ power per level (+1.08 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.0577},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5083\":{\"id\":5083,\"name\":\"Lesser
648
+ Seal of Ability Power\",\"description\":\"+0.33 ability power\",\"sanitizedDescription\":\"+0.33
649
+ ability power\",\"tags\":[\"magic\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":0.33},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5185\":{\"id\":5185,\"name\":\"Seal
650
+ of Attack Speed\",\"description\":\"+0.59% attack speed\",\"sanitizedDescription\":\"+0.59%
651
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"seal\"],\"image\":{\"full\":\"y_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.005943},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5184\":{\"id\":5184,\"name\":\"Seal
652
+ of Scaling Attack Damage\",\"description\":\"+0.05 attack damage per level
653
+ (+0.85 at champion level 18)\",\"sanitizedDescription\":\"+0.05 attack damage
654
+ per level (+0.85 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.0473},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5081\":{\"id\":5081,\"name\":\"Lesser
655
+ Seal of Cooldown Reduction\",\"description\":\"-0.2% cooldowns\",\"sanitizedDescription\":\"-0.2%
656
+ cooldowns\",\"tags\":[\"seal\"],\"image\":{\"full\":\"y_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.002},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"5189\":{\"id\":5189,\"name\":\"Seal
657
+ of Critical Chance\",\"description\":\"+0.32% critical chance\",\"sanitizedDescription\":\"+0.32%
658
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.003247},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5281\":{\"id\":5281,\"name\":\"Greater
659
+ Glyph of Critical Chance\",\"description\":\"+0.28% critical chance\",\"sanitizedDescription\":\"+0.28%
660
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.002784},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5289\":{\"id\":5289,\"name\":\"Greater
661
+ Glyph of Magic Resist\",\"description\":\"+1.34 magic resist\",\"sanitizedDescription\":\"+1.34
662
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":1.34},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5287\":{\"id\":5287,\"name\":\"Greater
663
+ Glyph of Armor\",\"description\":\"+0.7 armor\",\"sanitizedDescription\":\"+0.7
664
+ armor\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":0.7034},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5285\":{\"id\":5285,\"name\":\"Greater
665
+ Glyph of Health\",\"description\":\"+2.67 health\",\"sanitizedDescription\":\"+2.67
666
+ health\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":2.673},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5286\":{\"id\":5286,\"name\":\"Greater
667
+ Glyph of Scaling Health\",\"description\":\"+0.54 health per level (+9.72
668
+ at champion level 18)\",\"sanitizedDescription\":\"+0.54 health per level
669
+ (+9.72 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":0.5409},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5097\":{\"id\":5097,\"name\":\"Lesser
670
+ Quintessence of Critical Chance\",\"description\":\"+1.03% critical chance\",\"sanitizedDescription\":\"+1.03%
671
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.010309},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5194\":{\"id\":5194,\"name\":\"Seal
672
+ of Scaling Health\",\"description\":\"+1.04 health per level (+18.72 at champion
673
+ level 18)\",\"sanitizedDescription\":\"+1.04 health per level (+18.72 at champion
674
+ level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":1.04},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5099\":{\"id\":5099,\"name\":\"Lesser
675
+ Quintessence of Armor Penetration\",\"description\":\"+1.42 armor penetration\",\"sanitizedDescription\":\"+1.42
676
+ armor penetration\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorPenetrationMod\":1.42},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5193\":{\"id\":5193,\"name\":\"Seal
677
+ of Health\",\"description\":\"+6.24 health\",\"sanitizedDescription\":\"+6.24
678
+ health\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPPoolMod\":6.24},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5196\":{\"id\":5196,\"name\":\"Seal
679
+ of Scaling Armor\",\"description\":\"+0.13 armor per level (+2.34 at champion
680
+ level 18)\",\"sanitizedDescription\":\"+0.13 armor per level (+2.34 at champion
681
+ level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_2_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":336,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatArmorModPerLevel\":0.13},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5093\":{\"id\":5093,\"name\":\"Lesser
682
+ Quintessence of Attack Speed\",\"description\":\"+2.52% attack speed\",\"sanitizedDescription\":\"+2.52%
683
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"quintessence\"],\"image\":{\"full\":\"bl_3_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.0252},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5195\":{\"id\":5195,\"name\":\"Seal
684
+ of Armor\",\"description\":\"+0.78 armor\",\"sanitizedDescription\":\"+0.78
685
+ armor\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatArmorMod\":0.78},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5092\":{\"id\":5092,\"name\":\"Lesser
686
+ Quintessence of Scaling Attack Damage\",\"description\":\"+0.14 attack damage
687
+ per level (+2.52 at champion level 18)\",\"sanitizedDescription\":\"+0.14
688
+ attack damage per level (+2.52 at champion level 18)\",\"tags\":[\"physicalAttack\",\"perLevel\",\"quintessence\"],\"image\":{\"full\":\"bl_2_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"rFlatPhysicalDamageModPerLevel\":0.1389},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5198\":{\"id\":5198,\"name\":\"Seal
689
+ of Scaling Magic Resist\",\"description\":\"+0.08 magic resist per level (+1.44
690
+ at champion level 18)\",\"sanitizedDescription\":\"+0.08 magic resist per
691
+ level (+1.44 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"y_4_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.075},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5095\":{\"id\":5095,\"name\":\"Lesser
692
+ Quintessence of Critical Damage\",\"description\":\"+2.48% critical damage\",\"sanitizedDescription\":\"+2.48%
693
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.024793},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5197\":{\"id\":5197,\"name\":\"Seal
694
+ of Magic Resist\",\"description\":\"+0.58 magic resist\",\"sanitizedDescription\":\"+0.58
695
+ magic resist\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_3_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatSpellBlockMod\":0.5775},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5199\":{\"id\":5199,\"name\":\"Seal
696
+ of Health Regeneration\",\"description\":\"+0.43 health regen / 5 sec.\",\"sanitizedDescription\":\"+0.43
697
+ health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"seal\"],\"image\":{\"full\":\"y_1_2.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":288,\"y\":96,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.086},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"yellow\"}},\"5091\":{\"id\":5091,\"name\":\"Lesser
698
+ Quintessence of Attack Damage\",\"description\":\"+1.25 attack damage\",\"sanitizedDescription\":\"+1.25
699
+ attack damage\",\"tags\":[\"physicalAttack\",\"flat\",\"quintessence\"],\"image\":{\"full\":\"bl_1_1.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":48,\"w\":48,\"h\":48},\"stats\":{\"FlatPhysicalDamageMod\":1.25},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"black\"}},\"5290\":{\"id\":5290,\"name\":\"Greater
700
+ Glyph of Scaling Magic Resist\",\"description\":\"+0.16 magic resist per level
701
+ (+3 at champion level 18)\",\"sanitizedDescription\":\"+0.16 magic resist
702
+ per level (+3 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatSpellBlockModPerLevel\":0.16667},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"8001\":{\"id\":8001,\"name\":\"Mark
703
+ of the Crippling Candy Cane\",\"description\":\"+2% critical damage\",\"sanitizedDescription\":\"+2%
704
+ critical damage\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"8001.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatCritDamageMod\":0.019835},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"red\"}},\"5291\":{\"id\":5291,\"name\":\"Greater
705
+ Glyph of Health Regeneration\",\"description\":\"+0.27 health regen / 5 sec.\",\"sanitizedDescription\":\"+0.27
706
+ health regen / 5 sec.\",\"tags\":[\"defense\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatHPRegenMod\":0.054},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"8002\":{\"id\":8002,\"name\":\"Lesser
707
+ Mark of the Yuletide Tannenbaum \",\"description\":\"+0.62% critical chance\",\"sanitizedDescription\":\"+0.62%
708
+ critical chance\",\"tags\":[\"physicalAttack\",\"flat\",\"mark\"],\"image\":{\"full\":\"8002.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"FlatCritChanceMod\":0.0061855},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"8003\":{\"id\":8003,\"name\":\"Glyph
709
+ of the Special Stocking\",\"description\":\"-0.75% cooldowns\",\"sanitizedDescription\":\"-0.75%
710
+ cooldowns\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"8003.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":96,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.0075},\"rune\":{\"isRune\":true,\"tier\":\"2\",\"type\":\"blue\"}},\"8005\":{\"id\":8005,\"name\":\"Lesser
711
+ Glyph of the Gracious Gift\",\"description\":\"+0.12 ability power per level
712
+ (+2.16 at champion level 18)\",\"sanitizedDescription\":\"+0.12 ability power
713
+ per level (+2.16 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"8005.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":144,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.1154},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"blue\"}},\"8006\":{\"id\":8006,\"name\":\"Lesser
714
+ Seal of the Stout Snowman\",\"description\":\"+0.72 health per level (+12.96
715
+ at champion level 18)\",\"sanitizedDescription\":\"+0.72 health per level
716
+ (+12.96 at champion level 18)\",\"tags\":[\"defense\",\"perLevel\",\"seal\"],\"image\":{\"full\":\"8006.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":192,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"rFlatHPModPerLevel\":0.72115},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"yellow\"}},\"8007\":{\"id\":8007,\"name\":\"Lesser
717
+ Mark of Alpine Attack Speed\",\"description\":\"+1.13% attack speed\",\"sanitizedDescription\":\"+1.13%
718
+ attack speed\",\"tags\":[\"physicalAttack\",\"percent\",\"mark\"],\"image\":{\"full\":\"8007.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":240,\"y\":240,\"w\":48,\"h\":48},\"stats\":{\"PercentAttackSpeedMod\":0.011321},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}},\"5298\":{\"id\":5298,\"name\":\"Greater
719
+ Glyph of Scaling Ability Power\",\"description\":\"+0.17 ability power per
720
+ level (+3.06 at champion level 18)\",\"sanitizedDescription\":\"+0.17 ability
721
+ power per level (+3.06 at champion level 18)\",\"tags\":[\"magic\",\"perLevel\",\"glyph\"],\"image\":{\"full\":\"b_4_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":48,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"rFlatMagicDamageModPerLevel\":0.1731},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5299\":{\"id\":5299,\"name\":\"Greater
722
+ Glyph of Mana\",\"description\":\"+11.25 mana\",\"sanitizedDescription\":\"+11.25
723
+ mana\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"FlatMPPoolMod\":11.25},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5295\":{\"id\":5295,\"name\":\"Greater
724
+ Glyph of Cooldown Reduction\",\"description\":\"-0.83% cooldowns\",\"sanitizedDescription\":\"-0.83%
725
+ cooldowns\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"b_1_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":384,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownMod\":-0.008334},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5296\":{\"id\":5296,\"name\":\"Greater
726
+ Glyph of Scaling Cooldown Reduction\",\"description\":\"-0.09% cooldowns per
727
+ level (-1.67% at champion level 18)\",\"sanitizedDescription\":\"-0.09% cooldowns
728
+ per level (-1.67% at champion level 18)\",\"tags\":[\"glyph\"],\"image\":{\"full\":\"b_2_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":432,\"y\":144,\"w\":48,\"h\":48},\"stats\":{\"rPercentCooldownModPerLevel\":-9.278E-4},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}},\"5297\":{\"id\":5297,\"name\":\"Greater
729
+ Glyph of Ability Power\",\"description\":\"+1.19 ability power\",\"sanitizedDescription\":\"+1.19
730
+ ability power\",\"tags\":[\"magic\",\"flat\",\"glyph\"],\"image\":{\"full\":\"b_3_3.png\",\"sprite\":\"rune0.png\",\"group\":\"rune\",\"x\":0,\"y\":192,\"w\":48,\"h\":48},\"stats\":{\"FlatMagicDamageMod\":1.19},\"rune\":{\"isRune\":true,\"tier\":\"3\",\"type\":\"blue\"}}},\"basic\":{\"id\":0,\"gold\":{\"base\":0,\"total\":0,\"sell\":0,\"purchasable\":false},\"consumed\":false,\"stacks\":1,\"depth\":1,\"consumeOnFull\":false,\"specialRecipe\":0,\"inStore\":true,\"hideFromAll\":false,\"maps\":{\"10\":true,\"1\":true,\"8\":true,\"12\":true},\"stats\":{\"rFlatArmorModPerLevel\":0.0,\"rFlatArmorPenetrationMod\":0.0,\"rFlatArmorPenetrationModPerLevel\":0.0,\"rFlatCritChanceModPerLevel\":0.0,\"rFlatCritDamageModPerLevel\":0.0,\"rFlatEnergyRegenModPerLevel\":0.0,\"rFlatDodgeMod\":0.0,\"rFlatDodgeModPerLevel\":0.0,\"rFlatGoldPer10Mod\":0.0,\"rFlatHPModPerLevel\":0.0,\"rFlatHPRegenModPerLevel\":0.0,\"rFlatMPRegenModPerLevel\":0.0,\"rFlatMagicDamageModPerLevel\":0.0,\"rFlatMagicPenetrationMod\":0.0,\"rFlatMagicPenetrationModPerLevel\":0.0,\"rFlatMPModPerLevel\":0.0,\"rFlatEnergyModPerLevel\":0.0,\"rFlatMovementSpeedModPerLevel\":0.0,\"rFlatPhysicalDamageModPerLevel\":0.0,\"rFlatSpellBlockModPerLevel\":0.0,\"rFlatTimeDeadMod\":0.0,\"rFlatTimeDeadModPerLevel\":0.0,\"rPercentArmorPenetrationMod\":0.0,\"rPercentArmorPenetrationModPerLevel\":0.0,\"rPercentAttackSpeedModPerLevel\":0.0,\"rPercentCooldownMod\":0.0,\"rPercentCooldownModPerLevel\":0.0,\"rPercentMagicPenetrationMod\":0.0,\"rPercentMagicPenetrationModPerLevel\":0.0,\"rPercentMovementSpeedModPerLevel\":0.0,\"rPercentTimeDeadMod\":0.0,\"rPercentTimeDeadModPerLevel\":0.0,\"FlatArmorMod\":0.0,\"FlatAttackSpeedMod\":0.0,\"FlatBlockMod\":0.0,\"FlatCritChanceMod\":0.0,\"FlatCritDamageMod\":0.0,\"FlatEnergyRegenMod\":0.0,\"FlatEnergyPoolMod\":0.0,\"FlatEXPBonus\":0.0,\"FlatHPPoolMod\":0.0,\"FlatHPRegenMod\":0.0,\"FlatMPPoolMod\":0.0,\"FlatMPRegenMod\":0.0,\"FlatMagicDamageMod\":0.0,\"FlatMovementSpeedMod\":0.0,\"FlatPhysicalDamageMod\":0.0,\"FlatSpellBlockMod\":0.0,\"PercentArmorMod\":0.0,\"PercentAttackSpeedMod\":0.0,\"PercentBlockMod\":0.0,\"PercentCritChanceMod\":0.0,\"PercentCritDamageMod\":0.0,\"PercentDodgeMod\":0.0,\"PercentEXPBonus\":0.0,\"PercentHPPoolMod\":0.0,\"PercentHPRegenMod\":0.0,\"PercentMPPoolMod\":0.0,\"PercentMPRegenMod\":0.0,\"PercentMagicDamageMod\":0.0,\"PercentMovementSpeedMod\":0.0,\"PercentPhysicalDamageMod\":0.0,\"PercentSpellBlockMod\":0.0,\"PercentSpellVampMod\":0.0,\"PercentLifeStealMod\":0.0},\"rune\":{\"isRune\":true,\"tier\":\"1\",\"type\":\"red\"}}}"
731
+ http_version:
732
+ recorded_at: Thu, 17 Apr 2014 19:08:46 GMT
733
+ recorded_with: VCR 2.9.0