discordrb 1.4.7 → 1.4.8

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of discordrb might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86cdc8d762e8e04b93959b865ed2edfdd828b5b4
4
- data.tar.gz: 4c5a94198f98bea68dede91ad56eb5440cffa3b4
3
+ metadata.gz: ca25846076f05d2e3363e4f6efb7126d50659d17
4
+ data.tar.gz: c3f210ead11cf9fe48a10de9b9cd719171bdd467
5
5
  SHA512:
6
- metadata.gz: 8674eba850238067f0de5c1841475e225279cda28d6e587bdec1b8aecc1844550078df9279c3ab14c6598e010a22719973a48b8fc6534d4a5b3650384399cc3a
7
- data.tar.gz: 2a715d046b1dc8af3113e0c3c3e6dd0177e4ad18d5162a63b112367bb32986eeeca8c8037e181f01c449bdf31fcb26d3efeaa7408b49eaf3c4f86c9c14942977
6
+ metadata.gz: 156b8249969001de05be16fa0602cef916ae57e4d6ad976d515a7cb7d831d09e73518b86ee894d7d1f4d300cf79d59fbe42e2a4a9bfc86c1f67c4455e5a0eb03
7
+ data.tar.gz: 8c6cb05c57bb799716818d099f6288b31381accb85cfbfd2899bf1179f59ae88f30fb61d7101cd19fe2d67ca9293278acf1c27668354ef6a091c4ccf83cd63f7
data/.rubocop.yml CHANGED
@@ -37,8 +37,3 @@ Style/ConstantName:
37
37
  # Allow 'Pokémon-style' exception handling
38
38
  Lint/RescueException:
39
39
  Enabled: false
40
-
41
- # Exclude the list of games
42
- AllCops:
43
- Exclude:
44
- - '**/games_list.rb'
data/CHANGELOG.md ADDED
@@ -0,0 +1,26 @@
1
+ # Changelog
2
+ ## 1.4.8
3
+ * The `User` class now has the methods `add_role` and `remove_role` which add a role to a user and remove it, respectively.
4
+ * All data classes now have a useful `==` implementation.
5
+ * **The `Game` class and all references to it were removed**. Games are now only identified by their name.
6
+
7
+ ### Bugfixes
8
+ * When a role is deleted, the ID is now obtained correctly. (#30)
9
+
10
+ ## 1.4.7
11
+ * Presence event handling is now divided into two separate events; `PresenceEvent` to handle online/offline/idle statuses and `PlayingEvent` to handle users playing games.
12
+ * The `user` property of `MessageEvent` is now automatically resolved to the cached user, so you can modify roles instantly without having to resolve it yourself.
13
+ * `Message` now has a useful `to_s` method that just returns the content.
14
+
15
+ ### Bugfixes
16
+ * The `TypingEvent` `user` property is now initialized correctly.
17
+
18
+ ## 1.4.6
19
+ *Bugfix-only release.*
20
+
21
+ ### Bugfixes
22
+ * The `user` and `server` properties of `PresenceEvent` are now initialized correctly.
23
+
24
+ ## 1.4.5
25
+ * The `Bot.game` property can now be set to an arbitrary string.
26
+ * Discord mentions are handled in the old way again, after Discord reverted an API change.
data/Rakefile CHANGED
@@ -2,10 +2,3 @@ require 'bundler/gem_tasks'
2
2
 
3
3
  # Make "build" the default task
4
4
  task default: :build
5
-
6
- # Make build depend on update_lists
7
- task build: :update_lists
8
-
9
- task :update_lists do
10
- ruby 'util/update_lists.rb'
11
- end
data/lib/discordrb/bot.rb CHANGED
@@ -18,7 +18,6 @@ require 'discordrb/events/guilds'
18
18
  require 'discordrb/events/await'
19
19
 
20
20
  require 'discordrb/api'
21
- require 'discordrb/games'
22
21
  require 'discordrb/exceptions'
23
22
  require 'discordrb/data'
24
23
  require 'discordrb/await'
@@ -335,22 +334,21 @@ module Discordrb
335
334
  end
336
335
 
337
336
  # Sets the currently playing game to the specified game.
338
- # @param name_or_id [String, Fixnum] The name or the ID of the game to be played.
339
- # @return [Game] The game object that is being played now.
340
- def game=(name_or_id)
341
- game = Discordrb::Games.find_game(name_or_id)
342
- @game = game
337
+ # @param name [String] The name of the game to be played.
338
+ # @return [String] The game that is being played now.
339
+ def game=(name)
340
+ @game = name
343
341
 
344
342
  data = {
345
343
  'op' => 3,
346
344
  'd' => {
347
345
  'idle_since' => nil,
348
- 'game' => game ? { 'name' => game.name } : nil
346
+ 'game' => name ? { 'name' => name } : nil
349
347
  }
350
348
  }
351
349
 
352
350
  @ws.send(data.to_json)
353
- game
351
+ name
354
352
  end
355
353
 
356
354
  # Sets debug mode. If debug mode is on, many things will be outputted to STDOUT.
@@ -568,7 +566,7 @@ module Discordrb
568
566
  end
569
567
  user.status = status
570
568
  if data['game']
571
- user.game = Discordrb::Games.find_game(data['game']['name'])
569
+ user.game = data['game']['name']
572
570
  else
573
571
  user.game = nil
574
572
  end
@@ -712,8 +710,7 @@ module Discordrb
712
710
 
713
711
  # Internal handler for GUILD_ROLE_DELETE
714
712
  def delete_guild_role(data)
715
- role_data = data['role']
716
- role_id = role_data['id'].to_i
713
+ role_id = data['role_id'].to_i
717
714
  server_id = data['guild_id'].to_i
718
715
  server = @servers[server_id]
719
716
  server.delete_role(role_id)
@@ -3,13 +3,17 @@
3
3
  require 'ostruct'
4
4
  require 'discordrb/permissions'
5
5
  require 'discordrb/api'
6
- require 'discordrb/games'
7
6
  require 'discordrb/events/message'
8
7
  require 'time'
9
8
  require 'base64'
10
9
 
11
10
  # Discordrb module
12
11
  module Discordrb
12
+ # Compares two objects based on IDs - either the objects' IDs are equal, or one object is equal to the other's ID.
13
+ def self.id_compare(one_id, other)
14
+ other.respond_to?(:id) ? (one_id == other.id) : (one_id == other)
15
+ end
16
+
13
17
  # User on Discord, including internal data like discriminators
14
18
  class User
15
19
  attr_reader :username, :id, :discriminator, :avatar, :voice_channel, :roles
@@ -33,6 +37,11 @@ module Discordrb
33
37
  @status = :offline
34
38
  end
35
39
 
40
+ # ID based comparison
41
+ def ==(other)
42
+ Discordrb.id_compare(@id, other)
43
+ end
44
+
36
45
  # Utility function to mention users in messages
37
46
  def mention
38
47
  "<@#{@id}>"
@@ -56,6 +65,22 @@ module Discordrb
56
65
  @voice_channel = to_channel
57
66
  end
58
67
 
68
+ def add_role(server, role)
69
+ user_roles = @roles[server.id] || []
70
+ user_roles << role
71
+ ids = user_roles.map(&:id)
72
+ API.update_user_roles(@bot.token, server.id, @id, ids)
73
+ end
74
+
75
+ def remove_role(server, role)
76
+ user_roles = @roles[server.id] || []
77
+
78
+ # If the given role has an ID (i.e. is a Role object), then check whether its ID is equal, otherwise check whether it's equal directly
79
+ user_roles.delete_if { |e| e == role }
80
+ ids = user_roles.map(&:id)
81
+ API.update_user_roles(@bot.token, server.id, @id, ids)
82
+ end
83
+
59
84
  # Set this user's roles
60
85
  def update_roles(server, roles)
61
86
  @roles ||= {}
@@ -207,6 +232,11 @@ module Discordrb
207
232
  @colour = ColourRGB.new(data['color'])
208
233
  end
209
234
 
235
+ # ID based comparison
236
+ def ==(other)
237
+ Discordrb.id_compare(@id, other)
238
+ end
239
+
210
240
  def update_from(other)
211
241
  @permissions = other.permissions
212
242
  @name = other.name
@@ -282,6 +312,10 @@ module Discordrb
282
312
  @code = data['code']
283
313
  end
284
314
 
315
+ def ==(other)
316
+ other.respond_to?(:code) ? (@code == other.code) : (@code == other)
317
+ end
318
+
285
319
  def delete
286
320
  API.delete_invite(@bot.token, @code)
287
321
  end
@@ -329,6 +363,11 @@ module Discordrb
329
363
  end
330
364
  end
331
365
 
366
+ # ID based comparison
367
+ def ==(other)
368
+ Discordrb.id_compare(@id, other)
369
+ end
370
+
332
371
  def send_message(content)
333
372
  @bot.send_message(@id, content)
334
373
  end
@@ -434,6 +473,11 @@ module Discordrb
434
473
  end
435
474
  end
436
475
 
476
+ # ID based comparison
477
+ def ==(other)
478
+ Discordrb.id_compare(@id, other)
479
+ end
480
+
437
481
  def reply(content)
438
482
  @channel.send_message(content)
439
483
  end
@@ -473,6 +517,11 @@ module Discordrb
473
517
  process_voice_states(data['voice_states'])
474
518
  end
475
519
 
520
+ # ID based comparison
521
+ def ==(other)
522
+ Discordrb.id_compare(@id, other)
523
+ end
524
+
476
525
  def process_roles(roles)
477
526
  # Create roles
478
527
  @roles = []
@@ -511,7 +560,7 @@ module Discordrb
511
560
  user = @members_by_id[user_id]
512
561
  if user
513
562
  user.status = element['status'].to_sym
514
- user.game = Discordrb::Games.find_game(element['game_id'])
563
+ user.game = element['game'] ? element['game']['name'] : nil
515
564
  end
516
565
  end
517
566
  end
@@ -544,6 +593,10 @@ module Discordrb
544
593
  end
545
594
  end
546
595
 
596
+ def role(id)
597
+ @roles.find { |e| e.id == id }
598
+ end
599
+
547
600
  def add_role(role)
548
601
  @roles << role
549
602
  end
@@ -1,6 +1,5 @@
1
1
  require 'discordrb/events/generic'
2
2
  require 'discordrb/data'
3
- require 'discordrb/games'
4
3
 
5
4
  module Discordrb::Events
6
5
  # Event raised when a user's presence state updates (idle or online)
@@ -49,7 +48,7 @@ module Discordrb::Events
49
48
  @user = bot.user(data['user']['id'].to_i)
50
49
 
51
50
  if data['game']
52
- @game = Discordrb::Games.find_game(data['game']['name'])
51
+ @game = data['game']['name']
53
52
  else
54
53
  @game = nil
55
54
  end
@@ -1,4 +1,4 @@
1
1
  # Discordrb and all its functionality, in this case only the version.
2
2
  module Discordrb
3
- VERSION = '1.4.7'
3
+ VERSION = '1.4.8'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discordrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.7
4
+ version: 1.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - meew0
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-01-03 00:00:00.000000000 Z
11
+ date: 2016-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faye-websocket
@@ -92,6 +92,7 @@ files:
92
92
  - ".rubocop.yml"
93
93
  - ".travis.yml"
94
94
  - ".yardopts"
95
+ - CHANGELOG.md
95
96
  - Gemfile
96
97
  - LICENSE.txt
97
98
  - README.md
@@ -126,12 +127,9 @@ files:
126
127
  - lib/discordrb/events/typing.rb
127
128
  - lib/discordrb/events/voice_state_update.rb
128
129
  - lib/discordrb/exceptions.rb
129
- - lib/discordrb/games.rb
130
- - lib/discordrb/games_list.rb
131
130
  - lib/discordrb/logger.rb
132
131
  - lib/discordrb/permissions.rb
133
132
  - lib/discordrb/version.rb
134
- - util/update_lists.rb
135
133
  homepage: https://github.com/meew0/discordrb
136
134
  licenses:
137
135
  - MIT
@@ -1,44 +0,0 @@
1
- require 'discordrb/games_list'
2
-
3
- # The "Game" class and a list of games
4
- module Discordrb::Games
5
- # A game Discord uses in the "Playing game" status
6
- class Game
7
- attr_reader :id, :name, :executables
8
-
9
- def initialize(hash)
10
- @id = hash[:id] || hash['id']
11
- @name = hash[:name] || hash['name']
12
- @executables = hash[:executables] || hash['executables']
13
- end
14
- end
15
-
16
- @games = @raw_games.map do |hash|
17
- Game.new(hash)
18
- end
19
-
20
- module_function
21
-
22
- def games
23
- @games
24
- end
25
-
26
- def find_game(name_or_id)
27
- return nil unless name_or_id
28
- return name_or_id if name_or_id.is_a? Game
29
- @games.each do |game|
30
- return game if game.name == name_or_id || game.id == name_or_id || game.id.to_s == name_or_id
31
- end
32
- DummyGame.new(name_or_id)
33
- end
34
-
35
- # A dummy game for when the user isn't playing a registered game
36
- class DummyGame
37
- attr_reader :id, :name, :executables
38
- def initialize(name)
39
- @id = 0
40
- @executables = []
41
- @name = name
42
- end
43
- end
44
- end
@@ -1,3 +0,0 @@
1
- module Discordrb::Games
2
- @raw_games = [{"executables"=>{"win32"=>["pol.exe"]}, "id"=>0, "name"=>"FINAL FANTASY XI"}, {"executables"=>{"win32"=>["ffxiv.exe", "ffxiv_dx11.exe"]}, "id"=>1, "name"=>"FINAL FANTASY XIV"}, {"executables"=>{"win32"=>["Wow.exe", "Wow-64.exe"]}, "id"=>3, "name"=>"World of Warcraft"}, {"executables"=>{"darwin"=>["LoLLauncher.app"], "win32"=>["LolClient.exe", "League of Legends.exe"]}, "id"=>4, "name"=>"League of Legends"}, {"executables"=>{"darwin"=>["Diablo III.app"], "win32"=>["Diablo III.exe"]}, "id"=>5, "name"=>"Diablo 3"}, {"executables"=>{"darwin"=>["dota_osx.app"], "win32"=>["dota2.exe"]}, "id"=>6, "name"=>"DOTA 2"}, {"executables"=>{"darwin"=>["Heroes.app"], "win32"=>["Heroes of the Storm.exe", "HeroesOfTheStorm_x64.exe", "HeroesOfTheStorm.exe"]}, "id"=>7, "name"=>"Heroes of the Storm"}, {"executables"=>{"darwin"=>["Hearthstone.app"], "win32"=>["Hearthstone.exe"]}, "id"=>8, "name"=>"Hearthstone"}, {"executables"=>{"win32"=>["csgo.exe"]}, "id"=>9, "name"=>"Counter-Strike: Global Offensive"}, {"executables"=>{"win32"=>["WorldOfTanks.exe"]}, "id"=>10, "name"=>"World of Tanks"}, {"executables"=>{"darwin"=>["gw2.app"], "win32"=>["Gw2.exe", "Gw2-64.exe"]}, "id"=>11, "name"=>"Guild Wars 2"}, {"executables"=>{"win32"=>["dayz.exe"]}, "id"=>12, "name"=>"Day Z"}, {"executables"=>{"darwin"=>["sc2.app"], "win32"=>["starcraft ii.exe", "SC2_x64.exe", "SC2.exe"]}, "id"=>13, "name"=>"Starcraft II"}, {"executables"=>{"win32"=>["diablo.exe"]}, "id"=>14, "name"=>"Diablo"}, {"executables"=>{"win32"=>["diablo ii.exe"]}, "id"=>15, "name"=>"Diablo 2"}, {"executables"=>{"win32"=>["left4dead.exe"]}, "id"=>17, "name"=>"Left 4 Dead"}, {"cmdline"=>"net.minecraft.client.main.Main", "executables"=>{"darwin"=>[">java"], "win32"=>[">javaw.exe"]}, "id"=>18, "name"=>"Minecraft"}, {"executables"=>{"win32"=>["smite.exe"]}, "id"=>19, "name"=>"Smite"}, {"executables"=>{"win32"=>["bf4.exe"]}, "id"=>20, "name"=>"Battlefield 4"}, {"executables"=>{"win32"=>["AoK HD.exe", "empires2.exe"]}, "id"=>101, "name"=>"Age of Empires II"}, {"executables"=>{"win32"=>["age3y.exe"]}, "id"=>102, "name"=>"Age of Empires III"}, {"executables"=>{"win32"=>["AlanWake.exe"]}, "id"=>104, "name"=>"Alan Wake"}, {"executables"=>{"win32"=>["alan_wakes_american_nightmare.exe"]}, "id"=>105, "name"=>"Alan Wake's American Nightmare"}, {"executables"=>{"win32"=>["AlienBreed2Assault.exe"]}, "id"=>106, "name"=>"Alien Breed 2: Assault"}, {"executables"=>{"win32"=>["Amnesia.exe"]}, "id"=>107, "name"=>"Amnesia: The Dark Descent"}, {"executables"=>{"win32"=>["\\Antichamber\\Binaries\\Win32\\UDK.exe"]}, "id"=>108, "name"=>"Antichamber"}, {"executables"=>{"win32"=>["ArcheAge.exe"]}, "id"=>109, "name"=>"ArcheAge"}, {"executables"=>{"win32"=>["arma3.exe"]}, "id"=>110, "name"=>"Arma III"}, {"executables"=>{"win32"=>["AC3SP.exe"]}, "id"=>111, "name"=>"Assassin's Creed III"}, {"executables"=>{"win32"=>["Bastion.exe"]}, "id"=>112, "name"=>"Bastion"}, {"executables"=>{"win32"=>["BF2.exe"]}, "id"=>113, "name"=>"Battlefield 2"}, {"executables"=>{"win32"=>["bf3.exe"]}, "id"=>114, "name"=>"Battlefield 3"}, {"executables"=>{"win32"=>["Besiege.exe"]}, "id"=>116, "name"=>"Besiege"}, {"executables"=>{"win32"=>["Bioshock.exe"]}, "id"=>117, "name"=>"Bioshock"}, {"executables"=>{"win32"=>["Bioshock2.exe"]}, "id"=>118, "name"=>"BioShock II"}, {"executables"=>{"win32"=>["BioShockInfinite.exe"]}, "id"=>119, "name"=>"BioShock Infinite"}, {"executables"=>{"win32"=>["Borderlands2.exe"]}, "id"=>122, "name"=>"Borderlands 2"}, {"executables"=>{"win32"=>["braid.exe"]}, "id"=>123, "name"=>"Braid"}, {"executables"=>{"win32"=>["ShippingPC-StormGame.exe"]}, "id"=>124, "name"=>"Bulletstorm"}, {"executables"=>{"win32"=>["cabal2main.exe"]}, "id"=>125, "name"=>"Cabal 2"}, {"executables"=>{"win32"=>["CabalMain.exe"]}, "id"=>126, "name"=>"Cabal Online"}, {"executables"=>{"win32"=>["iw4mp.exe", "iw4sp.exe"]}, "id"=>127, "name"=>"Call of Duty: Modern Warfare 2"}, {"executables"=>{"win32"=>["t6sp.exe"]}, "id"=>128, "name"=>"Call of Duty: Black Ops"}, {"executables"=>{"win32"=>["iw5mp.exe"]}, "id"=>129, "name"=>"Call of Duty: Modern Warfare 3"}, {"executables"=>{"win32"=>["RelicCOH.exe"]}, "id"=>132, "name"=>"Company of Heroes"}, {"executables"=>{"win32"=>["Crysis64.exe"]}, "id"=>135, "name"=>"Crysis"}, {"executables"=>{"win32"=>["Crysis2.exe"]}, "id"=>136, "name"=>"Crysis 2"}, {"executables"=>{"win32"=>["Crysis3.exe"]}, "id"=>137, "name"=>"Crysis 3"}, {"executables"=>{"win32"=>["Crysis.exe"]}, "id"=>138, "name"=>"Crysis 4 "}, {"executables"=>{"win32"=>["DATA.exe", "DARKSOULS.exe"]}, "id"=>140, "name"=>"Dark Souls"}, {"executables"=>{"win32"=>["DarkSoulsII.exe"]}, "id"=>141, "name"=>"Dark Souls II"}, {"executables"=>{"win32"=>["dfuw.exe"]}, "id"=>142, "name"=>"Darkfall: Unholy Wars"}, {"executables"=>{"win32"=>["DCGAME.exe"]}, "id"=>144, "name"=>"DC Universe Online"}, {"executables"=>{"win32"=>["DeadIslandGame.exe"]}, "id"=>145, "name"=>"Dead Island"}, {"executables"=>{"win32"=>["deadspace2.exe"]}, "id"=>146, "name"=>"Dead Space 2"}, {"executables"=>{"win32"=>["LOTDGame.exe"]}, "id"=>147, "name"=>"Deadlight"}, {"executables"=>{"win32"=>["dxhr.exe", "DXHRDC.exe"]}, "id"=>148, "name"=>"Deus Ex: Human Revolution"}, {"executables"=>{"win32"=>["DeviMayCry4.exe", "DevilMayCry4_DX9.exe", "DevilMayCry4_DX10.exe", "DevilMayCry4SpecialEdition.exe"]}, "id"=>149, "name"=>"Devil May Cry 4"}, {"executables"=>{"win32"=>["DMC-DevilMayCry.exe"]}, "id"=>150, "name"=>"DmC Devil May Cry"}, {"executables"=>{"win32"=>["dirt2_game.exe"]}, "id"=>154, "name"=>"DiRT 2"}, {"executables"=>{"win32"=>["dirt3_game.exe"]}, "id"=>155, "name"=>"DiRT 3"}, {"executables"=>{"win32"=>["dota.exe"]}, "id"=>156, "name"=>"DOTA"}, {"executables"=>{"win32"=>["DoubleDragon.exe"]}, "id"=>158, "name"=>"Double Dragon Neon"}, {"executables"=>{"win32"=>["DragonAge2.exe"]}, "id"=>159, "name"=>"Dragon Age II"}, {"executables"=>{"win32"=>["DragonAgeInquisition.exe"]}, "id"=>160, "name"=>"Dragon Age: Inquisition"}, {"executables"=>{"win32"=>["daorigins.exe"]}, "id"=>161, "name"=>"Dragon Age: Origins"}, {"executables"=>{"win32"=>["DBXV.exe"]}, "id"=>162, "name"=>"Dragon Ball XenoVerse"}, {"executables"=>{"win32"=>["DukeForever.exe"]}, "id"=>163, "name"=>"Duke Nukem Forever"}, {"executables"=>{"darwin"=>["Dustforce.app"], "win32"=>["dustforce.exe"]}, "id"=>164, "name"=>"Dustforce"}, {"executables"=>{"win32"=>["EliteDangerous32.exe"]}, "id"=>165, "name"=>"Elite: Dangerous"}, {"executables"=>{"win32"=>["exefile.exe"]}, "id"=>166, "name"=>"Eve Online"}, {"executables"=>{"win32"=>["eqgame.exe"]}, "id"=>167, "name"=>"EverQuest"}, {"executables"=>{"win32"=>["EverQuest2.exe"]}, "id"=>168, "name"=>"EverQuest II"}, {"executables"=>{}, "id"=>169, "name"=>"EverQuest Next"}, {"executables"=>{}, "id"=>170, "name"=>"F.E.A.R."}, {"executables"=>{"win32"=>["FEAR2.exe"]}, "id"=>171, "name"=>"F.E.A.R. 2: Project Origin"}, {"executables"=>{"win32"=>["fallout3.exe"]}, "id"=>172, "name"=>"Fallout 3"}, {"executables"=>{"win32"=>["FalloutNV.exe"]}, "id"=>174, "name"=>"Fallout: New Vegas"}, {"executables"=>{"win32"=>["farcry3.exe"]}, "id"=>175, "name"=>"Far Cry 3"}, {"executables"=>{"win32"=>["fifa15.exe"]}, "id"=>176, "name"=>"FIFA 15"}, {"executables"=>{"win32"=>["FTLGame.exe"]}, "id"=>180, "name"=>"FTL: Faster Than Light"}, {"executables"=>{"win32"=>["GTAIV.exe"]}, "id"=>181, "name"=>"Grand Theft Auto 4"}, {"executables"=>{"win32"=>["GTA5.exe"]}, "id"=>182, "name"=>"Grand Theft Auto V"}, {"executables"=>{"win32"=>["Gw.exe"]}, "id"=>183, "name"=>"Guild Wars"}, {"executables"=>{"win32"=>["H1Z1.exe"]}, "id"=>186, "name"=>"H1Z1"}, {"cmdline"=>"-game hl2", "executables"=>{"darwin"=>["hl2_osx"], "win32"=>["HL2HL2.exe", ">hl2.exe"]}, "id"=>188, "name"=>"Half Life 2"}, {"executables"=>{"win32"=>["HOMEFRONT.exe"]}, "id"=>195, "name"=>"Homefront"}, {"executables"=>{"win32"=>["invisibleinc.exe"]}, "id"=>196, "name"=>"Invisible Inc."}, {"executables"=>{"win32"=>["LANoire.exe"]}, "id"=>197, "name"=>"L.A. Noire"}, {"executables"=>{"win32"=>["Landmark64.exe"]}, "id"=>198, "name"=>"Landmark"}, {"executables"=>{"win32"=>["left4dead2.exe"]}, "id"=>201, "name"=>"Left 4 Dead 2"}, {"executables"=>{"win32"=>["lineage.exe"]}, "id"=>203, "name"=>"Lineage"}, {"executables"=>{"win32"=>["Magicka.exe"]}, "id"=>206, "name"=>"Magicka"}, {"executables"=>{"win32"=>["MapleStory.exe"]}, "id"=>208, "name"=>"MapleStory"}, {"executables"=>{"win32"=>["\\mark_of_the_ninja\\bin\\game.exe"]}, "id"=>209, "name"=>"Mark of the Ninja"}, {"executables"=>{"win32"=>["MassEffect.exe"]}, "id"=>210, "name"=>"Mass Effect"}, {"executables"=>{"win32"=>["MassEffect2.exe"]}, "id"=>211, "name"=>"Mass Effect 2"}, {"executables"=>{"win32"=>["MassEffect3Demo.exe", "MassEffect3.exe"]}, "id"=>212, "name"=>"Mass Effect 3"}, {"executables"=>{"win32"=>["METAL GEAR RISING REVENGEANCE.exe"]}, "id"=>214, "name"=>"Metal Gear Rising: Revengeance"}, {"executables"=>{"win32"=>["metro2033.exe"]}, "id"=>215, "name"=>"Metro 2033"}, {"executables"=>{"win32"=>["MetroLL.exe"]}, "id"=>216, "name"=>"Metro Last Light"}, {"executables"=>{"win32"=>["MK10.exe"]}, "id"=>218, "name"=>"Mortal Kombat X"}, {"executables"=>{"win32"=>["speed.exe"]}, "id"=>219, "name"=>"Need For Speed Most Wanted"}, {"executables"=>{}, "id"=>220, "name"=>"Neverwinder"}, {"executables"=>{"darwin"=>["Outlast.app"], "win32"=>["OLGame.exe"]}, "id"=>221, "name"=>"Outlast"}, {"executables"=>{"win32"=>["PapersPlease.exe"]}, "id"=>222, "name"=>"Papers, Please"}, {"executables"=>{"win32"=>["payday_win32_release.exe"]}, "id"=>223, "name"=>"PAYDAY"}, {"executables"=>{"win32"=>["payday2_win32_release.exe"]}, "id"=>224, "name"=>"PAYDAY 2"}, {"executables"=>{"win32"=>["PillarsOfEternity.exe"]}, "id"=>225, "name"=>"Pillars of Eternity"}, {"executables"=>{"win32"=>["PA.exe"]}, "id"=>226, "name"=>"Planetary Annihilation"}, {"executables"=>{"win32"=>["planetside2_x86.exe", "PlanetSide2_x64.exe"]}, "id"=>227, "name"=>"Planetside 2"}, {"executables"=>{"win32"=>["hl2P.exe"]}, "id"=>228, "name"=>"Portal"}, {"executables"=>{"win32"=>["portal2.exe"]}, "id"=>229, "name"=>"Portal 2"}, {"executables"=>{"win32"=>["PrimalCarnageGame.exe"]}, "id"=>231, "name"=>"Primal Cargnage"}, {"executables"=>{"win32"=>["pCARS.exe"]}, "id"=>232, "name"=>"Project Cars"}, {"executables"=>{"win32"=>["RaceTheSun.exe"]}, "id"=>233, "name"=>"Race The Sun"}, {"executables"=>{"win32"=>["Rage.exe"]}, "id"=>234, "name"=>"RAGE"}, {"executables"=>{"win32"=>["ragexe.exe"]}, "id"=>235, "name"=>"Ragnarok Online"}, {"executables"=>{"win32"=>["rift.exe"]}, "id"=>236, "name"=>"Rift"}, {"executables"=>{"win32"=>["Rocksmith2014.exe"]}, "id"=>237, "name"=>"Rocksmith 2014"}, {"executables"=>{"darwin"=>["RuneScape.app"], "win32"=>["SwiftKit-RS.exe", "JagexLauncher.exe", "OSBuddy.exe"]}, "id"=>238, "name"=>"RuneScape"}, {"executables"=>{"win32"=>["Shadowgrounds.exe"]}, "id"=>239, "name"=>"Shadowgrounds"}, {"executables"=>{"win32"=>["survivor.exe"]}, "id"=>240, "name"=>"Shadowgrounds: Survivor"}, {"executables"=>{"win32"=>["ShovelKnight.exe"]}, "id"=>241, "name"=>"Shovel Knight"}, {"executables"=>{"win32"=>["SimCity.exe"]}, "id"=>242, "name"=>"SimCity"}, {"executables"=>{"win32"=>["SporeApp.exe"]}, "id"=>245, "name"=>"Spore"}, {"executables"=>{"win32"=>["StarCitizen.exe"]}, "id"=>246, "name"=>"Star Citizen"}, {"executables"=>{"win32"=>["\\Star Trek Online\\Live\\GameClient.exe"]}, "id"=>247, "name"=>"Star Trek Online"}, {"executables"=>{"win32"=>["battlefront.exe", "starwarsbattlefront.exe"]}, "id"=>248, "name"=>"Star Wars Battlefront"}, {"executables"=>{"win32"=>["swtor.exe"]}, "id"=>249, "name"=>"Star Wars: The Old Republic"}, {"executables"=>{"darwin"=>["Starbound.app"], "win32"=>["starbound.exe", "starbound_opengl.exe"]}, "id"=>250, "name"=>"Starbound"}, {"executables"=>{"win32"=>["starcraft.exe"]}, "id"=>251, "name"=>"Starcraft"}, {"executables"=>{"win32"=>["SSFIV.exe"]}, "id"=>253, "name"=>"Ultra Street Fighter IV"}, {"executables"=>{"win32"=>["superhexagon.exe"]}, "id"=>254, "name"=>"Super Hexagon"}, {"executables"=>{"win32"=>["swordandsworcery_pc.exe"]}, "id"=>255, "name"=>"Superbrothers: Sword & Sworcery EP"}, {"cmdline"=>"-game tf", "executables"=>{"win32"=>["hl2TF.exe", nil]}, "id"=>256, "name"=>"Team Fortress 2"}, {"executables"=>{"win32"=>["TERA.exe"]}, "id"=>258, "name"=>"TERA"}, {"executables"=>{"darwin"=>["Terraria.app"], "win32"=>["Terraria.exe"]}, "id"=>259, "name"=>"Terraria"}, {"executables"=>{"win32"=>["Bethesda.net_Launcher.exe", "eso.exe"]}, "id"=>260, "name"=>"The Elder Scrolls Online"}, {"executables"=>{"win32"=>["TESV.exe", "TESV_original.exe"]}, "id"=>261, "name"=>"The Elder Scrolls V: Skyrim"}, {"executables"=>{"win32"=>["TheSecretWorld.exe"]}, "id"=>262, "name"=>"The Secret World"}, {"executables"=>{"win32"=>["TS3.exe", "ts3w.exe"]}, "id"=>264, "name"=>"The Sims 3"}, {"executables"=>{"win32"=>["WALKINGDEAD101.EXE"]}, "id"=>265, "name"=>"The Walking Dead"}, {"executables"=>{"win32"=>["TheWalkingDead2.exe"]}, "id"=>266, "name"=>"The Walking Dead Season Two"}, {"executables"=>{"win32"=>["witcher3.exe"]}, "id"=>267, "name"=>"The Witcher 3"}, {"executables"=>{"win32"=>["Future Soldier.exe"]}, "id"=>268, "name"=>"Tom Clancy's Ghost Recon: Future Solider"}, {"executables"=>{"win32"=>["TombRaider.exe"]}, "id"=>269, "name"=>"Tomb Raider (2013)"}, {"executables"=>{"win32"=>["Torchlight.exe"]}, "id"=>271, "name"=>"Torchlight"}, {"executables"=>{"win32"=>["Torchlight2.exe"]}, "id"=>272, "name"=>"Torchlight 2"}, {"executables"=>{"win32"=>["Shogun2.exe"]}, "id"=>273, "name"=>"Total War: Shogun 2"}, {"executables"=>{"win32"=>["Transistor.exe"]}, "id"=>274, "name"=>"Transistor"}, {"executables"=>{"darwin"=>["Trine.app"], "win32"=>["trine.exe"]}, "id"=>275, "name"=>"Trine"}, {"executables"=>{"darwin"=>["Trine2.app"], "win32"=>["trine2_32bit.exe"]}, "id"=>276, "name"=>"Trine 2"}, {"executables"=>{"win32"=>["UOKR.exe"]}, "id"=>277, "name"=>"Ultima Online"}, {"executables"=>{"win32"=>["aces.exe"]}, "id"=>279, "name"=>"War Thunder"}, {"executables"=>{"darwin"=>["Warcraft III.app", "Frozen Throne.app"], "win32"=>["Warcraft III.exe", "wc3.exe", "war3.exe"]}, "id"=>281, "name"=>"Warcraft III"}, {"executables"=>{"win32"=>["Warcraft II BNE.exe"]}, "id"=>282, "name"=>"Warcraft II"}, {"executables"=>{"win32"=>["Warframe.x64.exe", "Warframe.exe"]}, "id"=>283, "name"=>"Warframe"}, {"executables"=>{"win32"=>["watch_dogs.exe"]}, "id"=>284, "name"=>"Watch Dogs"}, {"executables"=>{"win32"=>["WildStar64.exe", "Wildstar.exe"]}, "id"=>285, "name"=>"WildStar"}, {"executables"=>{"win32"=>["XComGame.exe", "XcomEW.exe"]}, "id"=>288, "name"=>"XCOM: Enemy Unknown"}, {"executables"=>{"win32"=>["DFO.exe", "dfo.exe"]}, "id"=>289, "name"=>"Dungeon Fighter Online"}, {"executables"=>{"win32"=>["aclauncher.exe", "acclient.exe"]}, "id"=>290, "name"=>"Asheron's Call"}, {"executables"=>{"win32"=>["MapleStory2.exe"]}, "id"=>291, "name"=>"MapleStory 2"}, {"executables"=>{"win32"=>["ksp.exe"]}, "id"=>292, "name"=>"Kerbal Space Program"}, {"executables"=>{"win32"=>["PINBALL.EXE"]}, "id"=>293, "name"=>"3D Pinball: Space Cadet"}, {"executables"=>{"win32"=>["dave.exe"]}, "id"=>294, "name"=>"Dangerous Dave"}, {"executables"=>{"win32"=>["iwbtgbeta(slomo).exe", "iwbtgbeta(fs).exe"]}, "id"=>295, "name"=>"I Wanna Be The Guy"}, {"executables"=>{"win32"=>["MechWarriorOnline.exe ", "mwoclient.exe"]}, "id"=>296, "name"=>"MechWarrior Online"}, {"executables"=>{"win32"=>["dontstarve_steam.exe"]}, "id"=>297, "name"=>"Don't Starve"}, {"executables"=>{"win32"=>["GalCiv3.exe"]}, "id"=>298, "name"=>"Galactic Civilization 3"}, {"executables"=>{"win32"=>["Risk of Rain.exe"]}, "id"=>299, "name"=>"Risk of Rain"}, {"executables"=>{"darwin"=>["Isaac.app"], "win32"=>["Binding_of_Isaac.exe", "Isaac.exe"]}, "id"=>300, "name"=>"The Binding of Isaac"}, {"executables"=>{"win32"=>["RustClient.exe"]}, "id"=>301, "name"=>"Rust"}, {"executables"=>{"win32"=>["Clicker Heroes.exe"]}, "id"=>302, "name"=>"Clicker Heroes"}, {"executables"=>{"win32"=>["Brawlhalla.exe"]}, "id"=>303, "name"=>"Brawlhalla"}, {"executables"=>{"win32"=>["TownOfSalem.exe"]}, "id"=>304, "name"=>"Town of Salem"}, {"executables"=>{"win32"=>["osu!.exe"]}, "id"=>305, "name"=>"osu!"}, {"executables"=>{"win32"=>["PathOfExileSteam.exe", "PathOfExile.exe"]}, "id"=>306, "name"=>"Path of Exile"}, {"executables"=>{"win32"=>["Dolphin.exe"]}, "id"=>307, "name"=>"Dolphin"}, {"executables"=>{"win32"=>["RocketLeague.exe"]}, "id"=>308, "name"=>"Rocket League"}, {"executables"=>{"win32"=>["TJPP.exe"]}, "id"=>309, "name"=>"Jackbox Party Pack"}, {"executables"=>{"win32"=>["KFGame.exe"]}, "id"=>310, "name"=>"Killing Floor 2"}, {"executables"=>{"win32"=>["ShooterGame.exe"]}, "id"=>311, "name"=>"Ark: Survival Evolved"}, {"executables"=>{"win32"=>["LifeIsStrange.exe"]}, "id"=>312, "name"=>"Life Is Strange"}, {"executables"=>{"win32"=>["Client_tos.exe"]}, "id"=>313, "name"=>"Tree of Savior"}, {"executables"=>{"win32"=>["olliolli2.exe"]}, "id"=>314, "name"=>"OlliOlli2"}, {"executables"=>{"win32"=>["cw.exe"]}, "id"=>315, "name"=>"Closers Dimension Conflict"}, {"executables"=>{"win32"=>["ESSTEAM.exe", "elsword.exe", "x2.exe"]}, "id"=>316, "name"=>"Elsword"}, {"executables"=>{"win32"=>["ori.exe"]}, "id"=>317, "name"=>"Ori and the Blind Forest"}, {"executables"=>{"win32"=>["Skyforge.exe"]}, "id"=>318, "name"=>"Skyforge"}, {"executables"=>{"win32"=>["projectzomboid64.exe", "projectzomboid32.exe"]}, "id"=>319, "name"=>"Project Zomboid"}, {"executables"=>{"win32"=>["From_The_Depths.exe"]}, "id"=>320, "name"=>"From The Depths"}, {"executables"=>{"win32"=>["TheCrew.exe"]}, "id"=>321, "name"=>"The Crew"}, {"executables"=>{"win32"=>["MarvelHeroes2015.exe"]}, "id"=>322, "name"=>"Marvel Heroes 2015"}, {"executables"=>{"win32"=>["timeclickers.exe"]}, "id"=>324, "name"=>"Time Clickers"}, {"executables"=>{"win32"=>["eurotrucks2.exe"]}, "id"=>325, "name"=>"Euro Truck Simulator 2"}, {"executables"=>{"win32"=>["FarmingSimulator2015Game.exe"]}, "id"=>326, "name"=>"Farming Simulator 15"}, {"executables"=>{"win32"=>["strife.exe"]}, "id"=>327, "name"=>"Strife"}, {"executables"=>{"win32"=>["Awesomenauts.exe"]}, "id"=>328, "name"=>"Awesomenauts"}, {"executables"=>{"win32"=>["Dofus.exe"]}, "id"=>329, "name"=>"Dofus"}, {"executables"=>{"win32"=>["Boid.exe"]}, "id"=>330, "name"=>"Boid"}, {"executables"=>{"win32"=>["adventure-capitalist.exe"]}, "id"=>331, "name"=>"AdVenture Capitalist"}, {"executables"=>{"win32"=>["OrcsMustDie2.exe"]}, "id"=>332, "name"=>"Orcs Must Die! 2"}, {"executables"=>{"win32"=>["Mountain.exe"]}, "id"=>333, "name"=>"Mountain"}, {"executables"=>{"win32"=>["Valkyria.exe"]}, "id"=>335, "name"=>"Valkyria Chronicles"}, {"executables"=>{"win32"=>["ffxiiiimg.exe"]}, "id"=>336, "name"=>"Final Fantasy XIII"}, {"executables"=>{"win32"=>["TLR.exe"]}, "id"=>337, "name"=>"The Last Remnant"}, {"executables"=>{"win32"=>["Cities.exe"]}, "id"=>339, "name"=>"Cities Skylines"}, {"executables"=>{"win32"=>["worldofwarships.exe", "WoWSLauncher.exe"]}, "id"=>341, "name"=>"World of Warships"}, {"executables"=>{"win32"=>["spacegame-Win64-shipping.exe"]}, "id"=>342, "name"=>"Fractured Space"}, {"executables"=>{"win32"=>["thespacegame.exe"]}, "id"=>343, "name"=>"Ascent - The Space Game"}, {"executables"=>{"win32"=>["DuckGame.exe"]}, "id"=>344, "name"=>"Duck Game"}, {"executables"=>{"win32"=>["PPSSPPWindows.exe", "PPSSPPWindows64.exe"]}, "id"=>345, "name"=>"PPSSPP"}, {"executables"=>{"win32"=>["MBAA.exe"]}, "id"=>346, "name"=>"Melty Blood Actress Again: Current Code"}, {"executables"=>{"win32"=>["TheWolfAmongUs.exe"]}, "id"=>347, "name"=>"The Wolf Among Us"}, {"executables"=>{"win32"=>["SpaceEngineers.exe"]}, "id"=>348, "name"=>"Space Engineers"}, {"executables"=>{"win32"=>["Borderlands.exe"]}, "id"=>349, "name"=>"Borderlands"}, {"executables"=>{"win32"=>["100orange.exe"]}, "id"=>351, "name"=>"100% Orange Juice"}, {"executables"=>{"win32"=>["reflex.exe"]}, "id"=>354, "name"=>"Reflex"}, {"executables"=>{"win32"=>["pso2.exe"]}, "id"=>355, "name"=>"Phantasy Star Online 2"}, {"executables"=>{"win32"=>["AssettoCorsa.exe"]}, "id"=>356, "name"=>"Assetto Corsa"}, {"executables"=>{"win32"=>["iw3mp.exe", "iw3sp.exe"]}, "id"=>357, "name"=>"Call of Duty 4: Modern Warfare"}, {"executables"=>{"win32"=>["WolfOldBlood_x64.exe"]}, "id"=>358, "name"=>"Wolfenstein: The Old Blood"}, {"executables"=>{"win32"=>["castle.exe"]}, "id"=>359, "name"=>"Castle Crashers"}, {"executables"=>{"win32"=>["vindictus.exe"]}, "id"=>360, "name"=>"Vindictus"}, {"executables"=>{"win32"=>["ShooterGame-Win32-Shipping.exe"]}, "id"=>361, "name"=>"Dirty Bomb"}, {"executables"=>{"win32"=>["BatmanAK.exe"]}, "id"=>362, "name"=>"Batman Arkham Knight"}, {"executables"=>{"win32"=>["drt.exe"]}, "id"=>363, "name"=>"Dirt Rally"}, {"executables"=>{"win32"=>["rFactor.exe"]}, "id"=>364, "name"=>"rFactor"}, {"executables"=>{"win32"=>["clonk.exe"]}, "id"=>365, "name"=>"Clonk Rage"}, {"executables"=>{"win32"=>["SRHK.exe"]}, "id"=>366, "name"=>"Shadowrun: Hong Kong"}, {"executables"=>{"win32"=>["Insurgency.exe"]}, "id"=>367, "name"=>"Insurgency"}, {"executables"=>{"win32"=>["StepMania.exe"]}, "id"=>368, "name"=>"Step Mania"}, {"executables"=>{"win32"=>["FirefallCLient.exe"]}, "id"=>369, "name"=>"Firefall"}, {"executables"=>{"win32"=>["mirrorsedge.exe"]}, "id"=>370, "name"=>"Mirrors Edge"}, {"executables"=>{"win32"=>["MgsGroundZeroes.exe"]}, "id"=>371, "name"=>"Metal Gear Solid V: Ground Zeroes"}, {"executables"=>{"win32"=>["mgsvtpp.exe"]}, "id"=>372, "name"=>"Metal Gear Solid V: The Phantom Pain"}, {"executables"=>{"win32"=>["tld.exe"]}, "id"=>373, "name"=>"The Long Dark"}, {"executables"=>{"win32"=>["TKOM.exe"]}, "id"=>374, "name"=>"Take On Mars"}, {"executables"=>{"win32"=>["robloxplayerlauncher.exe", "Roblox.exe", "RobloxPlayerBeta.exe"]}, "id"=>375, "name"=>"ROBLOX"}, {"executables"=>{"darwin"=>["eu4.app"], "win32"=>["eu4.exe"]}, "id"=>376, "name"=>"Europa Universalis 4"}, {"executables"=>{"win32"=>["APB.exe"]}, "id"=>377, "name"=>"APB Reloaded"}, {"executables"=>{"win32"=>["Robocraft.exe", "RobocraftClient.exe"]}, "id"=>378, "name"=>"Robocraft"}, {"executables"=>{"win32"=>["Unity.exe"]}, "id"=>379, "name"=>"Unity"}, {"executables"=>{"win32"=>["Simpsons.exe"]}, "id"=>380, "name"=>"The Simpsons: Hit & Run"}, {"executables"=>{"win32"=>["Dnlauncher.exe", "DragonNest.exe"]}, "id"=>381, "name"=>"Dragon Nest"}, {"executables"=>{"win32"=>["Trove.exe"]}, "id"=>382, "name"=>"Trove"}, {"executables"=>{"win32"=>["EndlessLegend.exe"]}, "id"=>383, "name"=>"Endless Legend"}, {"executables"=>{"win32"=>["TurbineLauncher.exe", "dndclient.exe"]}, "id"=>384, "name"=>"Dungeons & Dragons Online"}, {"executables"=>{"win32"=>["quakelive.exe", "quakelive_steam.exe"]}, "id"=>385, "name"=>"Quake Live"}, {"executables"=>{"win32"=>["7DaysToDie.exe"]}, "id"=>386, "name"=>"7DaysToDie"}, {"executables"=>{"win32"=>["SpeedRunners.exe"]}, "id"=>387, "name"=>"SpeedRunners"}, {"executables"=>{"win32"=>["gamemd.exe"]}, "id"=>388, "name"=>"Command & Conquer: Red Alert 2"}, {"executables"=>{"win32"=>["generals.exe"]}, "id"=>389, "name"=>"Command & Conquer Generals: Zero Hour"}, {"executables"=>{"win32"=>["Oblivion.exe"]}, "id"=>390, "name"=>"The Elder Scrolls 4: Oblivion"}, {"executables"=>{"win32"=>["mgsi.exe"]}, "id"=>391, "name"=>"Metal Gear Solid"}, {"executables"=>{"win32"=>["EoCApp.exe"]}, "id"=>392, "name"=>"Divinity - Original Sin"}, {"executables"=>{"win32"=>["Torment.exe"]}, "id"=>393, "name"=>"Planescape: Torment"}, {"executables"=>{"win32"=>["HexPatch.exe", "Hex.exe"]}, "id"=>394, "name"=>"Hex: Shards of Fate"}, {"executables"=>{"win32"=>["NS3FB.exe"]}, "id"=>395, "name"=>"Naruto Shippuden Ultimate Ninja Storm 3 Full Burst"}, {"executables"=>{"win32"=>["NSUNSR.exe"]}, "id"=>396, "name"=>"Naruto Shippuden Ultimate Ninja Storm Revolution"}, {"executables"=>{"win32"=>["SaintsRowIV.exe"]}, "id"=>397, "name"=>"Saints Row IV"}, {"executables"=>{"win32"=>["Shadowrun.exe"]}, "id"=>398, "name"=>"Shadowrun"}, {"executables"=>{"win32"=>["DungeonoftheEndless.exe"]}, "id"=>399, "name"=>"Dungeon of the Endless"}, {"executables"=>{"win32"=>["Hon.exe"]}, "id"=>400, "name"=>"Heroes of Newerth"}, {"executables"=>{"win32"=>["Mabinogi.exe"]}, "id"=>401, "name"=>"Mabinogi"}, {"executables"=>{"win32"=>["CoD2MP_s.exe", "CoD2SP_s.exe"]}, "id"=>402, "name"=>"Call of Duty 2:"}, {"executables"=>{"win32"=>["CoDWaWmp.exe", "CoDWaw.exe"]}, "id"=>403, "name"=>"Call of Duty: World at War"}, {"executables"=>{"win32"=>["heroes.exe"]}, "id"=>404, "name"=>"Mabinogi Heroes (Vindictus) "}, {"executables"=>{"win32"=>["KanColleViewer.exe", "ElectronicObserver.exe"]}, "id"=>405, "name"=>"Kantai Collection"}, {"executables"=>{"win32"=>["cyphers.exe"]}, "id"=>406, "name"=>"Cyphers"}, {"executables"=>{"win32"=>["RelicCoH2.exe"]}, "id"=>407, "name"=>"Company of Heroes 2"}, {"executables"=>{"win32"=>["MJ.exe"]}, "id"=>408, "name"=>"セガNET麻雀MJ"}, {"executables"=>{"win32"=>["ge.exe"]}, "id"=>409, "name"=>"Granado Espada"}, {"executables"=>{"win32"=>["NovaRO.exe"]}, "id"=>410, "name"=>"Nova Ragnarok Online"}, {"executables"=>{"win32"=>["RivalsofAether.exe"]}, "id"=>411, "name"=>"Rivals of Aether"}, {"executables"=>{"win32"=>["bfh.exe"]}, "id"=>412, "name"=>"Battlefield Hardline"}, {"executables"=>{"win32"=>["GrowHome.exe"]}, "id"=>413, "name"=>"Grow Home"}, {"executables"=>{"win32"=>["patriots.exe"]}, "id"=>414, "name"=>"Rise of Nations Extended"}, {"executables"=>{"win32"=>["Railroads.exe"]}, "id"=>415, "name"=>"Sid Meier's Railroads!"}, {"executables"=>{"win32"=>["Empire.exe"]}, "id"=>416, "name"=>"Empire: Total War"}, {"executables"=>{"win32"=>["Napoleon.exe"]}, "id"=>417, "name"=>"Napoleon: Total War"}, {"executables"=>{"win32"=>["gta_sa.exe", "gta-sa.exe"]}, "id"=>418, "name"=>"Grand Theft Auto: San Andreas"}, {"executables"=>{"win32"=>["MadMax.exe"]}, "id"=>419, "name"=>"Mad Max"}, {"executables"=>{"win32"=>["Titanfall.exe"]}, "id"=>420, "name"=>"Titanfall"}, {"executables"=>{"win32"=>["age2_x1.exe"]}, "id"=>421, "name"=>"Age of Empires II: The Conquerors"}, {"executables"=>{"win32"=>["Rome2.exe"]}, "id"=>422, "name"=>"Total War: ROME 2"}, {"executables"=>{"win32"=>["ShadowOfMordor.exe"]}, "id"=>423, "name"=>"Middle-earth: Shadow of Mordor"}, {"executables"=>{"win32"=>["Subnautica.exe"]}, "id"=>424, "name"=>"Subnautica"}, {"executables"=>{"win32"=>["anno5.exe"]}, "id"=>425, "name"=>"Anno 2070"}, {"executables"=>{"win32"=>["carrier.exe"]}, "id"=>426, "name"=>"Carrier Command Gaea Mission"}, {"executables"=>{"win32"=>["DarksidersPC.exe"]}, "id"=>427, "name"=>"Darksiders"}, {"executables"=>{"win32"=>["Darksiders2.exe"]}, "id"=>428, "name"=>"Darksiders 2"}, {"executables"=>{"win32"=>["mudlet.exe"]}, "id"=>429, "name"=>"Mudlet"}, {"executables"=>{"win32"=>["DunDefLauncher.exe", "DunDefGame.exe"]}, "id"=>430, "name"=>"Dungeon Defenders II"}, {"executables"=>{"win32"=>["hng.exe"]}, "id"=>431, "name"=>"Heroes and Generals"}, {"executables"=>{"win32"=>["WFTOGame.exe"]}, "id"=>432, "name"=>"War For the Overworld"}, {"executables"=>{"win32"=>["Talisman.exe"]}, "id"=>433, "name"=>"Talisman: Digital Edition"}, {"executables"=>{"win32"=>["limbo.exe"]}, "id"=>434, "name"=>"Limbo"}, {"executables"=>{"win32"=>["ibbobb.exe"]}, "id"=>435, "name"=>"ibb & obb"}, {"executables"=>{"win32"=>["BattleBlockTheater.exe"]}, "id"=>436, "name"=>"BattleBlock Theater"}, {"executables"=>{"win32"=>["iracinglauncher.exe", "iracingsim.exe", "iracingsim64.exe"]}, "id"=>437, "name"=>"iRacing"}, {"executables"=>{"win32"=>["CivilizationV_DX11.exe"]}, "id"=>438, "name"=>"Civilization V"}, {"executables"=>{"win32"=>["lostsaga.exe", "LoginLauncherN.exe"]}, "id"=>439, "name"=>"Lost Saga"}, {"executables"=>{"win32"=>["nuclearthrone.exe"]}, "id"=>440, "name"=>"Nuclear Throne"}, {"executables"=>{"win32"=>["SwordCoast.exe"]}, "id"=>441, "name"=>"Sword Coast Legends"}, {"executables"=>{"win32"=>["FF3_Launcher.exe"]}, "id"=>442, "name"=>"Final Fantasy III"}, {"executables"=>{"darwin"=>["UNDERTALE.app"], "win32"=>["UNDERTALE.exe"]}, "id"=>443, "name"=>"Undertale"}, {"executables"=>{"win32"=>["Blockland.exe"]}, "id"=>444, "name"=>"Blockland"}, {"executables"=>{"win32"=>["DNF.exe"]}, "id"=>445, "name"=>"Dungeon & Fighter"}, {"executables"=>{"win32"=>["Bugs.exe"]}, "id"=>446, "name"=>"BBLiT"}, {"executables"=>{"win32"=>["grid2.exe"]}, "id"=>447, "name"=>"Grid 2"}, {"executables"=>{"win32"=>["RainbowSix.exe"]}, "id"=>448, "name"=>"Rainbow Six Siege"}, {"executables"=>{"win32"=>["rotaku.exe"]}, "id"=>449, "name"=>"Rotaku Society"}, {"executables"=>{"win32"=>["Cube.exe"]}, "id"=>450, "name"=>"Cube World"}, {"executables"=>{"win32"=>["TS4.exe"]}, "id"=>451, "name"=>"The Sims 4"}, {"executables"=>{"win32"=>["nekopara_vol1.exe"]}, "id"=>452, "name"=>"Nekopara Vol. 1"}, {"executables"=>{"win32"=>["nekopara_vol0.exe"]}, "id"=>453, "name"=>"Nekopara Vol. 0"}, {"executables"=>{"win32"=>["FreeStyle2.exe"]}, "id"=>454, "name"=>"Freestyle Basketball 2"}, {"executables"=>{"win32"=>["HMA.exe"]}, "id"=>455, "name"=>"Hitman: Absolution"}, {"executables"=>{"win32"=>["SaintsRowTheThird_DX11.exe", "SaintsRowTheThird.exe"]}, "id"=>456, "name"=>"Saints Row 3"}, {"executables"=>{"win32"=>["JustCause.exe"]}, "id"=>457, "name"=>"Just Cause"}, {"executables"=>{"win32"=>["KillingFloor.exe"]}, "id"=>458, "name"=>"Killing Floor"}, {"executables"=>{"win32"=>["DeadIslandGame_x86_rwdi.exe"]}, "id"=>459, "name"=>"Dead Island Riptide"}, {"executables"=>{"win32"=>["JustCause2.exe"]}, "id"=>460, "name"=>"Just Cause 2"}, {"executables"=>{"win32"=>["altitude.exe"]}, "id"=>461, "name"=>"Altitude"}, {"executables"=>{"darwin"=>["ygopro.app"], "win32"=>["ygopro_vs.exe"]}, "id"=>462, "name"=>"Yu-gi-oh Pro"}, {"executables"=>{"win32"=>["bejeweled3.exe"]}, "id"=>463, "name"=>"Bejeweled 3"}, {"executables"=>{"win32"=>["fable.exe"]}, "id"=>464, "name"=>"Fable: The Lost Chapters"}, {"executables"=>{"win32"=>["lyne.exe"]}, "id"=>465, "name"=>"LYNE"}, {"executables"=>{"win32"=>["Tabletop Simulator.exe"]}, "id"=>466, "name"=>"Tabletop Simulator"}, {"executables"=>{"win32"=>["screencheat.exe"]}, "id"=>467, "name"=>"Screencheat"}, {"executables"=>{"win32"=>["cataclysm-tiles.exe"]}, "id"=>468, "name"=>"Cataclysm: Dark Days Ahead"}, {"executables"=>{"win32"=>["Prison Architect.exe"]}, "id"=>469, "name"=>"Prison Architect"}, {"executables"=>{"win32"=>["armoredwarfare.exe"]}, "id"=>470, "name"=>"Armored Warfare"}, {"executables"=>{"win32"=>["Devilian.exe"]}, "id"=>471, "name"=>"Devilian"}, {"executables"=>{"win32"=>["aion.bin"]}, "id"=>472, "name"=>"Aion"}, {"executables"=>{"win32"=>["Allegiance.exe"]}, "id"=>473, "name"=>"Allegiance"}, {"executables"=>{"win32"=>["infantry.exe"]}, "id"=>474, "name"=>"Infantry"}, {"executables"=>{"win32"=>["audiosurf.exe", "Questviewer.exe"]}, "id"=>475, "name"=>"Audiosurf"}, {"executables"=>{"win32"=>["audiosurf2.exe"]}, "id"=>476, "name"=>"Audiosurf 2"}, {"executables"=>{"win32"=>["morrowind.exe"]}, "id"=>477, "name"=>"Morrowind"}, {"executables"=>{"win32"=>["GoatGame-Win32-Shipping.exe"]}, "id"=>478, "name"=>"Goat Simulator"}, {"executables"=>{"win32"=>["th123.exe", "th123e.exe"]}, "id"=>479, "name"=>"Touhou 12.3: Hisoutensoku"}, {"executables"=>{"win32"=>["th135.exe", "th135e.exe"]}, "id"=>480, "name"=>"Touhou 13.5 Hopeless Mascarade"}, {"executables"=>{"win32"=>["th145.exe", "th145e.exe"]}, "id"=>481, "name"=>"Touhou 14.5: Urban Legend in Limbo"}, {"executables"=>{"win32"=>["quake1.exe"]}, "id"=>482, "name"=>"Quake I"}, {"executables"=>{"win32"=>["quake2.exe"]}, "id"=>483, "name"=>"Quake II"}, {"executables"=>{"win32"=>["quake3.exe"]}, "id"=>484, "name"=>"Quake III"}, {"executables"=>{"win32"=>["MONACO.exe"]}, "id"=>485, "name"=>"Monaco: What's Yours Is Mine"}, {"executables"=>{"win32"=>["ToothAndTail.exe"]}, "id"=>486, "name"=>"Tooth & Tail"}, {"executables"=>{"win32"=>["Pixel_Dungeons.exe"]}, "id"=>487, "name"=>"Pixel Dungeon"}, {"executables"=>{"win32"=>["BlackDesert32.exe", "BlackDesert64.exe"]}, "id"=>488, "name"=>"Black Desert Online"}, {"executables"=>{"win32"=>["LovelyPlanet.exe"]}, "id"=>489, "name"=>"Lovely Planet"}, {"executables"=>{"win32"=>["DeadCore.exe"]}, "id"=>490, "name"=>"DeadCore"}, {"executables"=>{"win32"=>["fifa16.exe"]}, "id"=>491, "name"=>"FIFA 16"}, {"executables"=>{"win32"=>["KAG.exe"]}, "id"=>492, "name"=>"King Arthur's Gold"}, {"executables"=>{"win32"=>["TR.exe"]}, "id"=>493, "name"=>"Trench Run"}, {"executables"=>{"win32"=>["fm.exe"]}, "id"=>494, "name"=>"Football Manager 2014"}, {"executables"=>{"win32"=>["NecroDancer.exe"]}, "id"=>495, "name"=>"Crypt of the NecroDancer"}, {"executables"=>{"win32"=>["EthanCarter-Win64-Shipping.exe"]}, "id"=>496, "name"=>"The Vanishing of Ethan Carter Redux"}, {"executables"=>{"win32"=>["AstronautsGame-Win64-Shipping.exe"]}, "id"=>497, "name"=>"The Vanishing of Ethan Carter"}, {"executables"=>{"win32"=>["fsx.exe"]}, "id"=>498, "name"=>"Microsoft Flight Simulator X"}, {"executables"=>{"win32"=>["Prepar3D.exe"]}, "id"=>499, "name"=>"Prepar3D"}, {"executables"=>{"win32"=>["lumini_Win64.exe"]}, "id"=>500, "name"=>"Lumini"}, {"executables"=>{"win32"=>["BeatHazard.exe"]}, "id"=>501, "name"=>"Beat Hazard"}, {"executables"=>{"win32"=>["TribesAscend.exe"]}, "id"=>502, "name"=>"Tribes Ascend"}, {"executables"=>{"win32"=>["Supernova.exe"]}, "id"=>503, "name"=>"Supernova"}, {"executables"=>{"win32"=>["NitronicRush.exe"]}, "id"=>504, "name"=>"Nitronic Rush"}, {"executables"=>{"win32"=>["Might & Magic Heroes VI.exe"]}, "id"=>505, "name"=>"Might & Magic Heroes VI"}, {"executables"=>{"win32"=>["AdvHD.exe"]}, "id"=>506, "name"=>"If My Heart Had Wings"}, {"executables"=>{"win32"=>["hatoful.exe"]}, "id"=>507, "name"=>"Hatoful Boyfriend"}, {"executables"=>{"darwin"=>["Huniepop.app"], "win32"=>["HuniePop.exe"]}, "id"=>508, "name"=>"HuniePop"}, {"executables"=>{"win32"=>["SC2VN.exe"]}, "id"=>509, "name"=>"SC2VN: The e-sport Visual Novel"}, {"executables"=>{"win32"=>["Pyrite Heart.exe"]}, "id"=>510, "name"=>"Pyrite Heart"}, {"executables"=>{"win32"=>["Sakura Angels.exe"]}, "id"=>511, "name"=>"Sakura Angels"}, {"executables"=>{"win32"=>["BGI.exe"]}, "id"=>512, "name"=>"Go! Go! Nippon! ~My First Trip to Japan~"}, {"executables"=>{"win32"=>["Sword of Asumi.exe"]}, "id"=>513, "name"=>"Sword of Asumi"}, {"executables"=>{"win32"=>["Sakura Clicker.exe"]}, "id"=>514, "name"=>"Sakura Clicker"}, {"executables"=>{"win32"=>["Sakura Spirit.exe"]}, "id"=>515, "name"=>"Sakura Spirit"}, {"executables"=>{"win32"=>["NeoAquarium.exe"]}, "id"=>516, "name"=>"NEO AQUARIUM - The King of Crustaceans"}, {"executables"=>{"win32"=>["Nicole.exe"]}, "id"=>517, "name"=>"Nicole (Otome Version)"}, {"executables"=>{"win32"=>["LongLiveTheQueen.exe"]}, "id"=>518, "name"=>"Long Live The Queen"}, {"executables"=>{"win32"=>["The Sacred Tears TRUE.exe"]}, "id"=>519, "name"=>"The Sacred Tears TRUE"}, {"executables"=>{"win32"=>["trgame.exe"]}, "id"=>520, "name"=>"Tales Runner"}, {"executables"=>{"win32"=>["CelebrityPoker.exe"]}, "id"=>521, "name"=>"Poker Night at the Inventory"}, {"executables"=>{"win32"=>["PokerNight2.exe"]}, "id"=>522, "name"=>"Poker Night 2"}, {"executables"=>{"win32"=>["PokeMMO.exe"]}, "id"=>523, "name"=>"PokeMMO"}, {"executables"=>{"win32"=>["LoversInADangerousSpacetime.exe"]}, "id"=>524, "name"=>"Lovers in a Dangerous Spacetime"}, {"executables"=>{"win32"=>["tis100.exe"]}, "id"=>525, "name"=>"TIS-100"}, {"executables"=>{"win32"=>["TTREngine.exe"]}, "id"=>526, "name"=>"Toontown"}, {"executables"=>{"win32"=>["mgs2_sse.exe"]}, "id"=>527, "name"=>"Metal Gear Solid 2: Substance"}, {"executables"=>{"win32"=>["hl.exe"]}, "id"=>528, "name"=>"Half Life"}, {"executables"=>{"win32"=>["Cloudbuilt.exe"]}, "id"=>529, "name"=>"Cloudbuilt"}, {"executables"=>{"win32"=>["ACBSP.exe", "ACBMP.exe"]}, "id"=>530, "name"=>"Assassin's Creed: Brotherhood"}, {"executables"=>{"win32"=>["mm.exe"]}, "id"=>531, "name"=>"Dark Messiah of Might & Magic"}, {"executables"=>{"win32"=>["Stalker-COP.exe", "xrEngine.exe"]}, "id"=>532, "name"=>"S.T.A.L.K.E.R.: Call of Pripyat"}, {"executables"=>{"win32"=>["ROGame.exe"]}, "id"=>533, "name"=>"Rising Storm/Red Orchestra 2"}, {"executables"=>{"win32"=>["strife-ve.exe"]}, "id"=>534, "name"=>"Strife: Veteran Edition"}, {"executables"=>{"win32"=>["BFBC2Game.exe"]}, "id"=>535, "name"=>"Battlefield: Bad Company 2"}, {"executables"=>{"win32"=>["FarCry2.exe"]}, "id"=>536, "name"=>"Far Cry 2"}, {"executables"=>{"win32"=>["Nidhogg.exe"]}, "id"=>537, "name"=>"Nidhogg"}, {"executables"=>{"win32"=>["pbbg_win32.exe"]}, "id"=>538, "name"=>"Phantom Break: Baggle Grounds"}, {"executables"=>{"darwin"=>["Wakfu.app"], "win32"=>["Wakfu.exe"]}, "id"=>539, "name"=>"Wakfu"}, {"executables"=>{"win32"=>["wizard101.exe", "WizardGraphicalClient.exe"]}, "id"=>540, "name"=>"Wzard101"}, {"executables"=>{"win32"=>["BarkleyV120.exe"]}, "id"=>541, "name"=>"Charles Barkley: Shut Up and Jam Gaiden"}, {"executables"=>{"win32"=>["RimWorld914Win.exe"]}, "id"=>542, "name"=>"RimWorld"}, {"executables"=>{"win32"=>["Order of Battle - Pacific.exe"]}, "id"=>543, "name"=>"Order of Battle"}, {"executables"=>{"win32"=>["gh3.exe"]}, "id"=>544, "name"=>"Guitar Hero III: Legends of Rock"}, {"executables"=>{"win32"=>["phase_shift.exe"]}, "id"=>545, "name"=>"Phase Shift"}, {"executables"=>{"win32"=>["GHWT.exe"]}, "id"=>546, "name"=>"Guitar Hero World Tour"}, {"executables"=>{"win32"=>["THEMOD 1.3.exe", "THUG2.exe"]}, "id"=>547, "name"=>"Tony Hawk's Underground 2"}, {"executables"=>{"win32"=>["THUGPro.exe"]}, "id"=>548, "name"=>"THUG Pro"}, {"executables"=>{"win32"=>["THUG.exe "]}, "id"=>549, "name"=>"Tony Hawk's Underground"}, {"executables"=>{"darwin"=>["The Binding of Isaac Rebirth.app"], "win32"=>["isaac-ng.exe"]}, "id"=>550, "name"=>"The Binding of Isaac: Rebirth"}, {"executables"=>{"win32"=>["ProjectG.exe"]}, "id"=>551, "name"=>"PangYa!"}, {"executables"=>{"win32"=>["Overwatch.exe", "GameClientApp.exe", "Overwatch Launcher.exe"]}, "id"=>552, "name"=>"Overwatch"}, {"executables"=>{"win32"=>["CivilizationBE_DX11.exe", "CivilizationBE_Mantle.exe"]}, "id"=>553, "name"=>"Civilization Beyond Earth"}, {"executables"=>{"win32"=>["SecretPonchosD3D11.exe"]}, "id"=>554, "name"=>"Secret Ponchos"}, {"executables"=>{"win32"=>["Duelyst.exe"]}, "id"=>555, "name"=>"Duelyst"}, {"executables"=>{"win32"=>["vermintide.exe"]}, "id"=>556, "name"=>"Warhammer: End Times - Vermintide"}, {"executables"=>{"darwin"=>["Reus.app"], "win32"=>["reus.exe"]}, "id"=>558, "name"=>"Reus"}, {"executables"=>{"darwin"=>["Everlasting Summer.app"]}, "id"=>559, "name"=>"Everlasting Summer"}, {"executables"=>{"darwin"=>["GunsofIcarusOnline.app"], "win32"=>["GunsOfIcarusOnline.exe"]}, "id"=>560, "name"=>"Guns of Icarus - Online"}, {"executables"=>{"darwin"=>["Rising Angels - Reborn.app"]}, "id"=>561, "name"=>"Rising Angels - Reborn"}, {"executables"=>{"darwin"=>["Hate Plus.app"]}, "id"=>562, "name"=>"Hate Plus"}, {"executables"=>{"win32"=>["dcs.exe"]}, "id"=>563, "name"=>"DCS World"}, {"executables"=>{"win32"=>["arena.exe"]}, "id"=>564, "name"=>"Total War: Arena"}, {"executables"=>{"win32"=>["Pokemon Trading Card Game Online.exe"]}, "id"=>565, "name"=>"Pokemon Trading Card Game Online"}, {"executables"=>{"win32"=>["Tales of Zestiria.exe"]}, "id"=>566, "name"=>"Tales of Zestiria"}, {"executables"=>{"win32"=>["ns2.exe"]}, "id"=>567, "name"=>"Natural Selection 2"}, {"executables"=>{"win32"=>["Rayman Legends.exe"]}, "id"=>568, "name"=>"Rayman Legends"}, {"executables"=>{"darwin"=>["avalonlords.app"], "win32"=>["avalonlords.exe"]}, "id"=>569, "name"=>"Avalon Lords"}, {"executables"=>{"win32"=>["th06.exe", "th06e.exe"]}, "id"=>570, "name"=>"Touhou 6: Embodiment of Scarlet Devil"}, {"executables"=>{"win32"=>["th07.exe", "th07e.exe"]}, "id"=>571, "name"=>"Touhou 7: Perfect Cherry Blossom"}, {"executables"=>{"win32"=>["th08.exe", "th08e.exe"]}, "id"=>572, "name"=>"Touhou 8: Imperishable Night"}, {"executables"=>{"win32"=>["th09.exe", "th09e.exe"]}, "id"=>573, "name"=>"Touhou 9: Phantasmagoria Of Flower View"}, {"executables"=>{"win32"=>["th095.exe", "th095e.exe"]}, "id"=>574, "name"=>"Touhou 9.5: Shoot the Bullet"}, {"executables"=>{"win32"=>["th10.exe", "th10e.exe"]}, "id"=>575, "name"=>"Touhou 10: Mountain of Faith"}, {"executables"=>{"win32"=>["th105.exe", "th105e.exe"]}, "id"=>576, "name"=>"Touhou 10.5: Scarlet Weather Rhapsody"}, {"executables"=>{"win32"=>["th11.exe", "th11e.exe"]}, "id"=>577, "name"=>"Touhou 11: Subterranean Animism"}, {"executables"=>{"win32"=>["th12.exe", "th12e.exe"]}, "id"=>578, "name"=>"Touhou 12: Undefined Fantastic Object"}, {"executables"=>{"win32"=>["th125.exe", "th125e.exe"]}, "id"=>579, "name"=>"Touhou 12.5: Double Spoiler"}, {"executables"=>{"win32"=>["th128.exe", "th128e.exe"]}, "id"=>580, "name"=>"Touhou 12.8: Great Fairy Wars"}, {"executables"=>{"win32"=>["th13.exe", "th13e.exe"]}, "id"=>581, "name"=>"Touhou 13: Ten Desires"}, {"executables"=>{"win32"=>["th14.exe", "th14e.exe"]}, "id"=>582, "name"=>"Touhou 14: Double Dealing Character"}, {"executables"=>{"win32"=>["th143.exe", "th143e.exe"]}, "id"=>583, "name"=>"Touhou 14.3: Impossible Spell Card"}, {"executables"=>{"win32"=>["th15.exe", "th15e.exe"]}, "id"=>584, "name"=>"Touhou 15: Legacy of Lunatic Kingdom"}, {"executables"=>{"win32"=>["grandia2.exe"]}, "id"=>585, "name"=>"Grandia 2"}, {"executables"=>{"win32"=>["Albion-Online.exe"]}, "id"=>586, "name"=>"Albion Online"}, {"executables"=>{"win32"=>["ThereWasACaveman.exe"]}, "id"=>587, "name"=>"There Was A Caveman"}, {"executables"=>{"win32"=>["ASN_App_PcDx9_Final.exe"]}, "id"=>588, "name"=>"Sonic & All Stars Racing Transformed"}, {"executables"=>{"win32"=>["Cryptark.exe"]}, "id"=>589, "name"=>"CRYPTARK"}, {"executables"=>{"win32"=>["Entropia.exe"]}, "id"=>590, "name"=>"Entropia Universe"}, {"executables"=>{"win32"=>["DepthGame.exe"]}, "id"=>591, "name"=>"Depth"}, {"executables"=>{"win32"=>["Factorio.exe"]}, "id"=>592, "name"=>"Factorio"}, {"executables"=>{"win32"=>["ChildofLight.exe"]}, "id"=>593, "name"=>"Child of Light"}, {"executables"=>{"win32"=>["TransformersDevatstation.exe"]}, "id"=>594, "name"=>"Transformers: Devastation"}, {"executables"=>{"win32"=>["oppw3.exe"]}, "id"=>595, "name"=>"One Piece Pirate Warriors 3"}, {"executables"=>{"win32"=>["Astebreed.exe"]}, "id"=>596, "name"=>"Astebreed"}, {"executables"=>{"win32"=>["ktane.exe"]}, "id"=>597, "name"=>"Keep Talking and Nobody Explodes"}, {"executables"=>{"win32"=>["Steredenn.exe"]}, "id"=>598, "name"=>"Steredenn"}, {"executables"=>{"win32"=>["CK2game.exe"]}, "id"=>599, "name"=>"Crusader Kings II"}, {"executables"=>{"win32"=>["jamp.exe", "openjk.x86.exe", "jasp.exe"]}, "id"=>600, "name"=>"Star Wars Jedi Knight"}, {"executables"=>{"win32"=>["jk2mp.exe", "jk2mvmp_x86.exe", "jk2mvmp_x64.exe"]}, "id"=>601, "name"=>"Star Wars Jedi Knight II"}, {"executables"=>{"win32"=>["FightCade.exe"]}, "id"=>602, "name"=>"FightCade"}, {"executables"=>{"win32"=>["Downwell.exe"]}, "id"=>603, "name"=>"Downwell"}, {"executables"=>{"win32"=>["flamebreak.exe"]}, "id"=>604, "name"=>"Flamebreak"}, {"executables"=>{"win32"=>["Disco Dodgeball.exe"]}, "id"=>605, "name"=>"Robot Roller-Derby Disco Dodgeball"}, {"executables"=>{"win32"=>["DarkStarOne.exe"]}, "id"=>606, "name"=>"DarkStar One"}, {"executables"=>{"win32"=>["20XX.exe"]}, "id"=>607, "name"=>"20XX"}, {"executables"=>{"win32"=>["wesnoth.exe"]}, "id"=>608, "name"=>"Battle for Wesnoth"}, {"executables"=>{"win32"=>["Creativerse.exe"]}, "id"=>609, "name"=>"Creativerse"}, {"executables"=>{"win32"=>["BlockNLoad.exe"]}, "id"=>610, "name"=>"Block n Load"}, {"executables"=>{"win32"=>["rwr_game.exe"]}, "id"=>611, "name"=>"Running with Rifles"}, {"executables"=>{"win32"=>["Evolve.exe"]}, "id"=>612, "name"=>"Evolve"}, {"executables"=>{"win32"=>["et.exe"]}, "id"=>613, "name"=>"Wolfenstein: Enemy Territory"}, {"executables"=>{"win32"=>["C9.exe"]}, "id"=>614, "name"=>"C9"}, {"executables"=>{"win32"=>["Multi Theft Auto.exe"]}, "id"=>615, "name"=>"Multi Theft Auto San Andreas"}, {"executables"=>{"win32"=>["SpecOpsTheLine.exe"]}, "id"=>616, "name"=>"Spec Ops: The Line"}, {"executables"=>{"win32"=>["stanley.exe"]}, "id"=>617, "name"=>"The Stanley Parable"}, {"executables"=>{"win32"=>["Secrets Of Grindea.exe"]}, "id"=>618, "name"=>"Secrets of Grindea"}, {"executables"=>{"win32"=>["MugenSouls.exe"]}, "id"=>619, "name"=>"Mugen Souls "}, {"executables"=>{"win32"=>["RebelGalaxyGOG.exe", "RebelGalaxySteam.exe"]}, "id"=>620, "name"=>"Rebel Galaxy"}, {"executables"=>{"win32"=>["rerev.exe"]}, "id"=>621, "name"=>"Resident Evil Revelations"}, {"executables"=>{"win32"=>["rerev2.exe"]}, "id"=>622, "name"=>"Resident Evil Revelations 2"}, {"executables"=>{"win32"=>["re5dx9.exe"]}, "id"=>623, "name"=>"Resident Evil 5"}, {"executables"=>{"win32"=>["bio4.exe"]}, "id"=>624, "name"=>"Resident Evil 4 HD"}, {"executables"=>{"win32"=>["bhd.exe"]}, "id"=>625, "name"=>"Resident Evil 4HD Remaster"}, {"executables"=>{"win32"=>["SSF2.exe"]}, "id"=>626, "name"=>"Super Smash Flash 2 "}, {"executables"=>{"win32"=>["AI.exe"]}, "id"=>627, "name"=>"Alien: Isolation"}, {"executables"=>{"win32"=>["dungeonland.exe"]}, "id"=>628, "name"=>"Dungeonland"}, {"executables"=>{"win32"=>["TerraTechWin32.exe"]}, "id"=>629, "name"=>"TerraTech"}, {"executables"=>{"win32"=>["beginnersguide.exe"]}, "id"=>630, "name"=>"The Beginner's Guide"}, {"executables"=>{"win32"=>["StreetFighterVBeta-Win64-Shipping.exe"]}, "id"=>631, "name"=>"Street Fighter V"}, {"executables"=>{"win32"=>["bf4cte.exe"]}, "id"=>632, "name"=>"Battlefiled 4 CTE"}, {"executables"=>{"win32"=>["Suguri.exe"]}, "id"=>633, "name"=>"Suguri"}, {"executables"=>{"win32"=>["UT3.exe"]}, "id"=>634, "name"=>"Unreal Tournament 3"}, {"executables"=>{"win32"=>["Unreal.exe"]}, "id"=>635, "name"=>"Unreal"}, {"executables"=>{"win32"=>["AVA.exe"]}, "id"=>636, "name"=>"Alliance of Valiant Arms"}, {"executables"=>{"win32"=>["ShooterUltimate.exe"]}, "id"=>637, "name"=>"PixelJunk Shooter Ultimate"}, {"executables"=>{"win32"=>["pokemonshowdown.exe"]}, "id"=>638, "name"=>"Pokemon Showdown"}, {"executables"=>{"win32"=>["SuperMeatBoy.exe"]}, "id"=>639, "name"=>"Super Meat Boy"}, {"executables"=>{"win32"=>["Kara no Shojo 2.exe"]}, "id"=>640, "name"=>"Kara no Shoujo 2"}, {"executables"=>{"win32"=>["Intruder.exe"]}, "id"=>641, "name"=>"Intruder"}, {"executables"=>{"win32"=>["Aeon Rivals.exe"]}, "id"=>642, "name"=>"Aeon Rivals"}, {"executables"=>{"win32"=>["Rats.exe"]}, "id"=>643, "name"=>"Bad Rats"}, {"executables"=>{"win32"=>["BH6.exe"]}, "id"=>644, "name"=>"Resident Evil 6"}, {"executables"=>{"win32"=>["ZOMBI.exe"]}, "id"=>645, "name"=>"Zombi"}, {"executables"=>{"win32"=>["Xenonauts.exe"]}, "id"=>646, "name"=>"Xenonauts"}, {"executables"=>{"win32"=>["OrganTrail.exe"]}, "id"=>647, "name"=>"Organ Trail"}, {"executables"=>{"darwin"=>["LethalLeague.app"], "win32"=>["LethalLeague.exe"]}, "id"=>648, "name"=>"Lethal League"}, {"executables"=>{"win32"=>["blobby.exe"]}, "id"=>649, "name"=>"Blobby Volley 2"}, {"executables"=>{"win32"=>["DQXGame.exe"]}, "id"=>650, "name"=>"Dragon Quest X: Mezameshi Itsutsu no Shuzoku Online"}, {"executables"=>{"win32"=>["Dishonored.exe"]}, "id"=>651, "name"=>"Dishonored"}, {"executables"=>{"win32"=>["TheForest.exe"]}, "id"=>652, "name"=>"The Forest"}, {"executables"=>{"win32"=>["ThePark.exe"]}, "id"=>653, "name"=>"The Park"}, {"executables"=>{"win32"=>["FishingPlanet.exe"]}, "id"=>654, "name"=>"Fishing Planet"}, {"executables"=>{"win32"=>["pso.exe"]}, "id"=>655, "name"=>"Phantasy Star Online"}, {"executables"=>{}, "id"=>656, "name"=>"Our Darker Purpose"}, {"executables"=>{"win32"=>["Darkest.exe"]}, "id"=>657, "name"=>"Darkest Dungeon"}, {"executables"=>{"win32"=>["UE4-Win64-Test.exe"]}, "id"=>658, "name"=>"Unreal Tournament 4"}, {"executables"=>{"win32"=>["ed6_win2.exe"]}, "id"=>659, "name"=>"Trails in the Sky SC"}, {"executables"=>{"win32"=>["ed6_win.exe"]}, "id"=>660, "name"=>"Trails in the Sky FC"}, {"executables"=>{"win32"=>["kshootmania.exe"]}, "id"=>661, "name"=>"K-Shoot Mania"}, {"executables"=>{"win32"=>["df.exe"]}, "id"=>662, "name"=>"Delta Force 1"}, {"executables"=>{"win32"=>["BloodlineChampions.exe"]}, "id"=>663, "name"=>"Bloodline Champions"}, {"executables"=>{"win32"=>["TmForever.exe"]}, "id"=>664, "name"=>"Trackmania Nations Forever"}, {"executables"=>{"win32"=>["DragonFinSoup.exe"]}, "id"=>666, "name"=>"Dragon Fin Soup"}, {"executables"=>{"win32"=>["Anno2205.exe"]}, "id"=>667, "name"=>"Anno 2205"}, {"executables"=>{"darwin"=>["KatawaShoujo.app"]}, "id"=>668, "name"=>"Katawa Shoujo"}, {"executables"=>{"win32"=>["NeptuniaReBirth1.exe"]}, "id"=>669, "name"=>"Hyperdimension Neptunia Re;Birth1"}, {"executables"=>{"win32"=>["NeptuniaReBirth2.exe"]}, "id"=>670, "name"=>"Hyperdimension Neptunia Re;Birth2"}, {"executables"=>{"win32"=>["NeptuniaReBirth3.exe"]}, "id"=>671, "name"=>"Hyperdimension Neptunia Re;Birth3"}, {"executables"=>{"win32"=>["HatinTimeGame.exe"]}, "id"=>672, "name"=>"A Hat in Time"}, {"executables"=>{"win32"=>["AxiomVerge.exe"]}, "id"=>673, "name"=>"Axiom Verge"}, {"executables"=>{"win32"=>["CoJGunslinger.exe"]}, "id"=>674, "name"=>"Call of Juarez: Gunslinger"}, {"executables"=>{"darwin"=>["CardHunter.app"], "win32"=>["CardHunter.exe"]}, "id"=>675, "name"=>"Card Hunter"}, {"executables"=>{"darwin"=>["CargoCommander.app"], "win32"=>["CargoCommander.exe"]}, "id"=>676, "name"=>"Cargo Commander"}, {"executables"=>{"win32"=>["DDO.exe"]}, "id"=>677, "name"=>"Dragon's Dogma Online"}, {"executables"=>{"win32"=>["falloutw.exe"]}, "id"=>678, "name"=>"Fallout"}, {"executables"=>{"win32"=>["FALLOUT2.EXE", "Fallout2HR.exe"]}, "id"=>679, "name"=>"Fallout 2"}, {"executables"=>{"win32"=>["Fallout4.exe", "Fallout4Launcher.exe "]}, "id"=>680, "name"=>"Fallout 4"}, {"executables"=>{"win32"=>["FarCry4.exe"]}, "id"=>681, "name"=>"Far Cry 4"}, {"executables"=>{"win32"=>["OpenITG-PC.exe"]}, "id"=>682, "name"=>"In The Groove 2"}, {"executables"=>{"win32"=>["L2.bin"]}, "id"=>683, "name"=>"Lineage II"}, {"executables"=>{"win32"=>["LordsOfTheFallen.exe"]}, "id"=>684, "name"=>"Lords of the Fallen"}, {"executables"=>{"win32"=>["LR2.exe"]}, "id"=>685, "name"=>"Lunatic Rave 2"}, {"executables"=>{"win32"=>["MBA.exe"]}, "id"=>686, "name"=>"Magical Battle Arena"}, {"executables"=>{"win32"=>["MBAN_M.exe", "MBAN_F.exe"]}, "id"=>687, "name"=>"Magical Battle Arena NEXT"}, {"executables"=>{"win32"=>["ManiaPlanet.exe"]}, "id"=>688, "name"=>"ManiaPlanet"}, {"executables"=>{"win32"=>["mhf.exe"]}, "id"=>689, "name"=>"Monster Hunter Frontier"}, {"executables"=>{"win32"=>["6kinoko.exe"]}, "id"=>690, "name"=>"New Super Marisa Land"}, {"executables"=>{"win32"=>["Nosgoth.exe"]}, "id"=>691, "name"=>"Nosgoth"}, {"executables"=>{"win32"=>["Poi.exe"]}, "id"=>692, "name"=>"Poi"}, {"executables"=>{"win32"=>["RogueSystemSim.exe"]}, "id"=>693, "name"=>"Rogue System"}, {"executables"=>{"darwin"=>["SinaRun.app"], "win32"=>["SinaRun.exe"]}, "id"=>694, "name"=>"SinaRun"}, {"executables"=>{"win32"=>["SkullGirls.exe"]}, "id"=>695, "name"=>"Skullgirls"}, {"executables"=>{"win32"=>["Soma.exe"]}, "id"=>696, "name"=>"SOMA"}, {"executables"=>{"win32"=>["sonic2app.exe", "Sonic Adventure DX.exe"]}, "id"=>697, "name"=>"Sonic Adventure 2"}, {"executables"=>{"win32"=>["SonicGenerations.exe"]}, "id"=>698, "name"=>"Sonic Generations"}, {"executables"=>{"win32"=>["SpaceChem.exe"]}, "id"=>699, "name"=>"SpaceChem"}, {"executables"=>{"win32"=>["SSFexe.exe"]}, "id"=>700, "name"=>"Super Smash Flash 1"}, {"executables"=>{"win32"=>["System Shock2.exe", "shock2.exe"]}, "id"=>701, "name"=>"System Shock 2"}, {"executables"=>{"win32"=>["Blacklist_launcher.exe", "Blacklist_DX11_game.exe"]}, "id"=>702, "name"=>"Tom Clancy's Splinter Cell: Blacklist"}, {"executables"=>{"win32"=>["gn_enbu.exe"]}, "id"=>703, "name"=>"Touhou Puppet Dance Performance"}, {"executables"=>{"win32"=>["TSA.exe"]}, "id"=>704, "name"=>"Touhou Sky Arena"}, {"executables"=>{"win32"=>["Verdun.exe"]}, "id"=>705, "name"=>"Verdun"}, {"executables"=>{"darwin"=>["wz2100.app"], "win32"=>["wz2100.exe"]}, "id"=>706, "name"=>"Warzone 2100"}, {"executables"=>{"win32"=>["WowT-64.exe"]}, "id"=>707, "name"=>"World of Warcraft PTR"}, {"executables"=>{"win32"=>["Chronicon.exe"]}, "id"=>708, "name"=>"Chronicon"}, {"executables"=>{"win32"=>["MagicDuels.exe"]}, "id"=>709, "name"=>"Magic Duels"}, {"executables"=>{"win32"=>["BorderlandsPreSequel.exe"]}, "id"=>710, "name"=>"Borderlands: the Pre-Sequel"}, {"executables"=>{"win32"=>["AoD.exe"]}, "id"=>711, "name"=>"The Age of Decadence"}, {"executables"=>{"win32"=>["Doom.exe"]}, "id"=>712, "name"=>"Doom 3"}, {"executables"=>{"win32"=>["Dead Space.exe"]}, "id"=>713, "name"=>"Dead Space"}, {"executables"=>{"win32"=>["AvP3.exe", "AvP_Launcher.exe"]}, "id"=>714, "name"=>"Alien Vs Predator"}, {"executables"=>{"win32"=>["BlackOps3.exe"]}, "id"=>715, "name"=>"Call of Duty: Black Ops III"}, {"executables"=>{"win32"=>["halo_online.exe"]}, "id"=>716, "name"=>"Halo Online"}, {"executables"=>{"win32"=>["Krosmaster Arena.exe"]}, "id"=>717, "name"=>"Krosmaster Arena"}, {"executables"=>{"win32"=>["MapleRoyals.exe"]}, "id"=>718, "name"=>"MapleRoyals"}, {"executables"=>{"win32"=>["clragexe.exe"]}, "id"=>719, "name"=>"Ragnarok Online Classic"}, {"executables"=>{"win32"=>["RememberingHowWeMet.exe"]}, "id"=>720, "name"=>"A Kiss For The Petals - Remembering How We Met"}, {"executables"=>{"win32"=>["Command.exe"]}, "id"=>721, "name"=>"Command: Modern Air/Naval Operations "}, {"executables"=>{"win32"=>["CM Black Sea.exe"]}, "id"=>722, "name"=>"Combat Mission: Black Sea"}, {"executables"=>{"win32"=>["CM Shock Force.exe"]}, "id"=>723, "name"=>"Combat Mission: Shock Force"}, {"executables"=>{"win32"=>["KingOfFighters2002UM.exe"]}, "id"=>724, "name"=>"The King Of Fighters 2002 Unlimited Match"}, {"executables"=>{"win32"=>["NFSC.exe"]}, "id"=>725, "name"=>"Need for Speed: Carbon"}, {"executables"=>{"win32"=>["th075.exe", "th075e.exe"]}, "id"=>726, "name"=>"Touhou 7.5: Immaterial and Missing Power"}, {"executables"=>{"win32"=>["Demul.exe"]}, "id"=>727, "name"=>"Demul"}, {"executables"=>{"win32"=>["DeSmuMe_0.9.11_x86.exe", "DeSmuME_0.9.11_x64.exe"]}, "id"=>728, "name"=>"DeSmuME"}, {"executables"=>{"win32"=>["Fusion.exe"]}, "id"=>729, "name"=>"Kega Fusion"}, {"executables"=>{"win32"=>["nullDC_Win32_Release-NoTrace.exe"]}, "id"=>730, "name"=>"nullDC"}, {"executables"=>{"win32"=>["pcsx2-r5875.exe"]}, "id"=>731, "name"=>"PCSX2"}, {"executables"=>{"win32"=>["Project64.exe"]}, "id"=>732, "name"=>"Project64"}, {"executables"=>{"win32"=>["Snes9x.exe"]}, "id"=>733, "name"=>"Snes9x"}, {"executables"=>{"win32"=>["VisualBoyAdvance.exe"]}, "id"=>734, "name"=>"VisualBoyAdvance"}, {"executables"=>{"win32"=>["zsnesw.exe"]}, "id"=>735, "name"=>"ZSNES"}, {"executables"=>{"win32"=>["Uplink.exe"]}, "id"=>736, "name"=>"Uplink"}, {"executables"=>{"win32"=>["RIK.exe"]}, "id"=>737, "name"=>"ProjectRIK"}, {"executables"=>{"win32"=>["warsow_x64.exe", "warsow_x86.exe"]}, "id"=>738, "name"=>"Warsow"}, {"executables"=>{"win32"=>["cactus.exe"]}, "id"=>739, "name"=>"Assault Android Cactus"}, {"executables"=>{"win32"=>["PlantsVsZombies.exe"]}, "id"=>740, "name"=>"Plants vs. Zombies"}, {"executables"=>{"win32"=>["HeavyWeapon.exe"]}, "id"=>741, "name"=>"Heavy Weapon"}, {"executables"=>{"win32"=>["BejBlitz.exe"]}, "id"=>742, "name"=>"Bejeweled Blitz"}, {"executables"=>{"win32"=>["slw.exe"]}, "id"=>743, "name"=>"Sonic Lost World"}, {"executables"=>{"win32"=>["age.exe"]}, "id"=>744, "name"=>"Kamidori Alchemy Meister"}, {"executables"=>{"win32"=>["psobb.exe"]}, "id"=>745, "name"=>"Phantasy Star Online Blue Burst"}, {"executables"=>{"win32"=>["Evoland2.exe"]}, "id"=>746, "name"=>"Evoland 2"}, {"executables"=>{"win32"=>["FFV_Game.exe"]}, "id"=>747, "name"=>"Final Fantasy V"}, {"executables"=>{"win32"=>["TITAN.exe"]}, "id"=>748, "name"=>"Titan Souls"}, {"executables"=>{"win32"=>["FTP.exe"]}, "id"=>749, "name"=>"Free To Play"}, {"executables"=>{"win32"=>["Hero_Siege.exe"]}, "id"=>750, "name"=>"Hero Siege"}, {"executables"=>{"win32"=>["ActionHenk"]}, "id"=>751, "name"=>"Action Henk"}, {"executables"=>{"win32"=>["armello.exe"]}, "id"=>752, "name"=>"Armello"}, {"executables"=>{"win32"=>["AC4BFSP.exe", "AC4BFMP.exe"]}, "id"=>753, "name"=>"Assassin's Creed IV: Black Flag"}, {"executables"=>{"win32"=>["ACU.exe"]}, "id"=>754, "name"=>"Assassin's Creed Unity"}, {"executables"=>{"win32"=>["ACS.exe"]}, "id"=>755, "name"=>"Assassin's Creed: Syndicate"}, {"executables"=>{"win32"=>["BatmanAC.exe"]}, "id"=>756, "name"=>"Batman: Arkham City"}, {"executables"=>{"win32"=>["Bitwig Studio.exe"]}, "id"=>757, "name"=>"Bitwig Studio"}, {"executables"=>{"win32"=>["PlayBNS.exe"]}, "id"=>758, "name"=>"Blade of Sould"}, {"executables"=>{"win32"=>["BBCSE.exe"]}, "id"=>759, "name"=>"BlazBlue Continuum Shift Extend"}, {"executables"=>{"win32"=>["CoJ.exe"]}, "id"=>760, "name"=>"Call of Juarez"}, {"executables"=>{"win32"=>["CaveStory+.exe"]}, "id"=>761, "name"=>"Cave Story+"}, {"executables"=>{"win32"=>["RealLiveEn.exe"]}, "id"=>762, "name"=>"CLANNAD"}, {"executables"=>{"win32"=>["Undying.exe"]}, "id"=>763, "name"=>"Clive Barker's Undying"}, {"executables"=>{"win32"=>["CSDSteamBuild.exe"]}, "id"=>764, "name"=>"Cook, Serve, Delicious!"}, {"executables"=>{"win32"=>["cosmicbreak2.exe"]}, "id"=>765, "name"=>"Cosmic Break 2"}, {"executables"=>{"win32"=>["cosmicleague.exe"]}, "id"=>766, "name"=>"Cosmic League"}, {"executables"=>{"win32"=>["Crawl.exe"]}, "id"=>767, "name"=>"Crawl"}, {"executables"=>{"win32"=>["Creeper World 2.exe"]}, "id"=>768, "name"=>"Creeper World 2: Redemption"}, {"executables"=>{"win32"=>["CW3.exe"]}, "id"=>769, "name"=>"Creeper World 3: Arc Eternal"}, {"executables"=>{"win32"=>["DefenseGrid2_Release.exe"]}, "id"=>770, "name"=>"Defense Grid 2"}, {"executables"=>{"win32"=>["Defiance.exe"]}, "id"=>771, "name"=>"Defiance"}, {"executables"=>{"win32"=>["DepressionQuest.exe"]}, "id"=>772, "name"=>"Depression Quest"}, {"executables"=>{"win32"=>["DeusEx.exe"]}, "id"=>773, "name"=>"Deus Ex"}, {"executables"=>{"win32"=>["DisneyInfinity2.exe", "DisneyInfinity3.exe"]}, "id"=>774, "name"=>"Disney Infinity"}, {"executables"=>{"win32"=>["Distance.exe"]}, "id"=>775, "name"=>"Distance"}, {"executables"=>{"win32"=>["DustAET.exe"]}, "id"=>776, "name"=>"Dust: An Elysian Tail"}, {"executables"=>{"win32"=>["Dwarf Fortress.exe"]}, "id"=>777, "name"=>"Dwarf Fortress"}, {"executables"=>{"win32"=>["EYE.exe"]}, "id"=>778, "name"=>"E.Y.E.: Divine Cybermancy"}, {"executables"=>{"win32"=>["ezquake-gl.exe"]}, "id"=>779, "name"=>"EZ Quake"}, {"executables"=>{"win32"=>["FairyFencer.exe"]}, "id"=>780, "name"=>"Fairy Fencer F"}, {"executables"=>{"win32"=>["thmhj.exe"]}, "id"=>781, "name"=>"Fantastic Danmaku Festival"}, {"executables"=>{"win32"=>["FP.exe"]}, "id"=>782, "name"=>"Freedom Planet"}, {"executables"=>{"win32"=>["Thrones.exe"]}, "id"=>783, "name"=>"Game of Thrones"}, {"executables"=>{"win32"=>["gta--vc.exe"]}, "id"=>784, "name"=>"Grand Theft Auto: Vice City"}, {"executables"=>{"win32"=>["CAGGameServer.exe"]}, "id"=>785, "name"=>"Grav"}, {"executables"=>{"win32"=>["Grisaia.exe"]}, "id"=>786, "name"=>"Grisaia no Kajitsu"}, {"executables"=>{"win32"=>["GGXXACPR_Win.exe"]}, "id"=>787, "name"=>"Guilty Gear XX Accent Core Plus R"}, {"executables"=>{"win32"=>["HawkenGame-Win32-Shipping.exe"]}, "id"=>789, "name"=>"Hawken"}, {"executables"=>{"win32"=>["I Wanna Be the Calamity Fortune.exe"]}, "id"=>790, "name"=>"I Wanna Be the Calamity Fortune"}, {"executables"=>{"win32"=>["JurassicPark100.exe"]}, "id"=>791, "name"=>"Jurassic Park The Game"}, {"executables"=>{"win32"=>["lcgol.exe"]}, "id"=>792, "name"=>"Lara Croft and the Guardian of Light"}, {"executables"=>{"win32"=>["yo_cm_client.exe"]}, "id"=>793, "name"=>"Life is Feudal"}, {"executables"=>{"win32"=>["magicite.exe"]}, "id"=>794, "name"=>"Magicite"}, {"executables"=>{"win32"=>["MasterReboot.exe"]}, "id"=>795, "name"=>"Master Reboot"}, {"executables"=>{"win32"=>["MaxPayne3.exe"]}, "id"=>796, "name"=>"Max Payne 3"}, {"executables"=>{"win32"=>["Fceux.exe"]}, "id"=>797, "name"=>"Nintendo Emulator"}, {"executables"=>{"win32"=>["Oni.exe"]}, "id"=>798, "name"=>"Oni"}, {"executables"=>{"win32"=>["Paladins.exe"]}, "id"=>799, "name"=>"Paladins: Champions of the Realm"}, {"executables"=>{"win32"=>["PuyoVS.exe"]}, "id"=>800, "name"=>"Puyo Puyo VS 2"}, {"executables"=>{"win32"=>["QUBEGame.exe"]}, "id"=>801, "name"=>"QUBE"}, {"executables"=>{"win32"=>["ReassemblyRelease.exe"]}, "id"=>802, "name"=>"Reassembly"}, {"executables"=>{"win32"=>["retrocityrampage.exe"]}, "id"=>803, "name"=>"Retro City Rampage"}, {"executables"=>{"win32"=>["WolfSP.exe", "WolfMP.exe"]}, "id"=>804, "name"=>"Return to Castle Wolfenstein"}, {"executables"=>{"win32"=>["RogueLegacy.exe"]}, "id"=>805, "name"=>"Rogue Legacy"}, {"executables"=>{"win32"=>["rks.exe", "rks_e.exe"]}, "id"=>806, "name"=>"Rosenkreuzstilette Grollschwert"}, {"executables"=>{"win32"=>["Epsxe.exe"]}, "id"=>807, "name"=>"Sony Playstation Emulator"}, {"executables"=>{"win32"=>["SoulAxiom.exe"]}, "id"=>808, "name"=>"Soul Axiom"}, {"executables"=>{"win32"=>["SpazGame.exe"]}, "id"=>809, "name"=>"Space Pirates and Zombies"}, {"executables"=>{"win32"=>["Spelunky.exe"]}, "id"=>810, "name"=>"Spelunky"}, {"executables"=>{"win32"=>["swkotor.exe"]}, "id"=>811, "name"=>"Star Wars Knights Of The Old Republic"}, {"executables"=>{"win32"=>["swkotor2.exe"]}, "id"=>812, "name"=>"Star Wars Knights Of The Old Republic II: The Sith Lords"}, {"executables"=>{"win32"=>["StyxGame.exe"]}, "id"=>813, "name"=>"Styx: Master of Shadows"}, {"executables"=>{"win32"=>["Synthesia.exe"]}, "id"=>814, "name"=>"Synthesia"}, {"executables"=>{"win32"=>["sshock.exe"]}, "id"=>815, "name"=>"System Shock"}, {"executables"=>{"win32"=>["System Shock.exe"]}, "id"=>816, "name"=>"System Shock: Enhanced Edition"}, {"executables"=>{"win32"=>["t-engine.exe"]}, "id"=>817, "name"=>"Tales of Maj'Eyal"}, {"executables"=>{"win32"=>["MonkeyIsland101.exe", "MonkeyIsland102.exe", "MonkeyIsland103.exe", "MonkeyIsland104.exe", "MonkeyIsland105.exe"]}, "id"=>818, "name"=>"Tales of Monkey Island"}, {"executables"=>{"win32"=>["tetris.exe"]}, "id"=>819, "name"=>"Tetris"}, {"executables"=>{"win32"=>["Sims2EP9.exe"]}, "id"=>820, "name"=>"The Sims 2 Ultimate Collection"}, {"executables"=>{"win32"=>["Talos.exe"]}, "id"=>821, "name"=>"The Talos Principle"}, {"executables"=>{"win32"=>["Shipping-ThiefGame.exe"]}, "id"=>822, "name"=>"Thief"}, {"executables"=>{"win32"=>["This War of Mine.exe"]}, "id"=>823, "name"=>"This War of Mine"}, {"executables"=>{"win32"=>["Tomb2.exe"]}, "id"=>824, "name"=>"Tomb Raider II "}, {"executables"=>{"win32"=>["tomb3.exe"]}, "id"=>825, "name"=>"Tomb Raider III: Adventures of Lara Croft"}, {"executables"=>{"win32"=>["TRAOD_P4.exe"]}, "id"=>826, "name"=>"Tomb Raider: Angel of Darkness"}, {"executables"=>{"win32"=>["tra.exe"]}, "id"=>827, "name"=>"Tomb Raider: Anniversary"}, {"executables"=>{"win32"=>["PCTomb5.exe"]}, "id"=>828, "name"=>"Tomb Raider: Chronicles"}, {"executables"=>{"win32"=>["trl.exe"]}, "id"=>829, "name"=>"Tomb Raider: Legends"}, {"executables"=>{"win32"=>["tomb4.exe"]}, "id"=>830, "name"=>"Tomb Raider: The Last Revelation"}, {"executables"=>{"win32"=>["tru.exe"]}, "id"=>831, "name"=>"Tomb Raider: Underworld"}, {"executables"=>{"win32"=>["Attila.exe"]}, "id"=>832, "name"=>"Total War: Attila"}, {"executables"=>{"win32"=>["TriadWars.exe"]}, "id"=>833, "name"=>"Triad Wars"}, {"executables"=>{"win32"=>["tsunmajo.exe"]}, "id"=>834, "name"=>"Tsundertaker's Mahou Removal"}, {"executables"=>{"win32"=>["Unturned.exe"]}, "id"=>835, "name"=>"Unturned"}, {"executables"=>{"win32"=>["Vampire.exe"]}, "id"=>836, "name"=>"Vampire: The Masquerade - Bloodlines"}, {"executables"=>{"win32"=>["Wings Of Vi.exe"]}, "id"=>837, "name"=>"Wings of Vi"}, {"executables"=>{"win32"=>["WA.exe"]}, "id"=>838, "name"=>"Worms Armageddon"}, {"executables"=>{"win32"=>["Xonotic.exe"]}, "id"=>839, "name"=>"Xonotic"}, {"executables"=>{"win32"=>["cosmic.exe"]}, "id"=>840, "name"=>"Cosmic Break"}, {"executables"=>{"win32"=>["DyingLightGame.exe"]}, "id"=>841, "name"=>"Dying Light"}, {"executables"=>{"win32"=>["Client2.0.exe"]}, "id"=>842, "name"=>"Elite Lord of Alliance"}, {"executables"=>{"win32"=>["Fran Bow.exe"]}, "id"=>843, "name"=>"Fran Bow"}, {"executables"=>{"win32"=>["JustCause3.exe"]}, "id"=>844, "name"=>"Just Cause 3"}, {"executables"=>{"win32"=>["kofxiii.exe"]}, "id"=>845, "name"=>"King Of Fighters XIII"}, {"executables"=>{"win32"=>["King's Quest 1 SCI.exe"]}, "id"=>846, "name"=>"King's Quest I"}, {"executables"=>{"win32"=>["King's Quest 2.exe"]}, "id"=>847, "name"=>"King's Quest II"}, {"executables"=>{"win32"=>["King's Quest 3.exe"]}, "id"=>848, "name"=>"King's Quest III"}, {"executables"=>{"win32"=>["King's Quest 4.exe"]}, "id"=>849, "name"=>"King's Quest IV"}, {"executables"=>{"win32"=>["King's Quest 5.exe"]}, "id"=>850, "name"=>"King's Quest V"}, {"executables"=>{"win32"=>["King's Quest 6 Win.exe"]}, "id"=>851, "name"=>"King's Quest VI"}, {"executables"=>{"win32"=>["King's Quest 7.exe"]}, "id"=>852, "name"=>"King's Quest VII"}, {"executables"=>{"win32"=>["PlagueIncEvolved.exe"]}, "id"=>854, "name"=>"Plague Inc."}, {"executables"=>{"win32"=>["PokemonInsurgence.exe"]}, "id"=>855, "name"=>"Pokemon Insurgence"}, {"executables"=>{"win32"=>["South Park - The Stick of Truth.exe"]}, "id"=>856, "name"=>"South Park: The Stick of Truth"}, {"executables"=>{"win32"=>["Squad.exe"]}, "id"=>857, "name"=>"Squad"}, {"executables"=>{"win32"=>["TripleTown.exe"]}, "id"=>858, "name"=>"Triple Town"}, {"executables"=>{"win32"=>["WL2.exe"]}, "id"=>859, "name"=>"Wasteland 2"}, {"executables"=>{"win32"=>["RPG_RT.exe"]}, "id"=>860, "name"=>"Yume Nikki"}, {"executables"=>{"win32"=>["Arpiel.exe"]}, "id"=>861, "name"=>"Arpiel"}, {"executables"=>{"win32"=>["ShadowComplex-Win32-EGL.exe"]}, "id"=>862, "name"=>"Shadow Complex"}, {"executables"=>{"win32"=>["ffxiii2.exe"]}, "id"=>863, "name"=>"Final Fantasy XIII-2"}, {"executables"=>{"win32"=>["Openttd.exe"]}, "id"=>864, "name"=>"OpenTTD"}, {"executables"=>{"win32"=>["Wreckfest.exe", "Wreckfest_x64.exe"]}, "id"=>865, "name"=>"Next Car Game: Wreckfest"}, {"executables"=>{"win32"=>["misstake.exe"]}, "id"=>866, "name"=>"The Marvellous Miss Take"}, {"executables"=>{"win32"=>["GRIDAutosport_avx.exe"]}, "id"=>867, "name"=>"GRID: Autosport"}, {"executables"=>{"win32"=>["CrowfallClient.exe"]}, "id"=>868, "name"=>"Crowfall"}, {"executables"=>{"win32"=>["NEOScavenger.exe"]}, "id"=>869, "name"=>"Neo Scavenger"}, {"executables"=>{"win32"=>["RxGame-Win64-Shipping.exe"]}, "id"=>870, "name"=>"Gigantic"}, {"executables"=>{"win32"=>["Tibia.exe"]}, "id"=>871, "name"=>"Tibia"}, {"executables"=>{"win32"=>["BootGGXrd.exe", "GuiltyGearXrd.exe"]}, "id"=>872, "name"=>"Guilty Gear Xrd -SIGN-"}, {"executables"=>{"win32"=>["蒼の彼方のフォーリズム.exe"]}, "id"=>873, "name"=>"Ao no Kanata no Four Rhythm"}, {"executables"=>{"win32"=>["helldivers.exe"]}, "id"=>874, "name"=>"HellDivers"}, {"executables"=>{"win32"=>["S4Client.exe"]}, "id"=>875, "name"=>"S4 League"}, {"executables"=>{"win32"=>["LRFF13.exe"]}, "id"=>876, "name"=>"LIGHTNING RETURNS: FINAL FANTASY XIII"}, {"executables"=>{"win32"=>["CMW.exe"]}, "id"=>877, "name"=>"Chivalry: Medieval "}, {"executables"=>{"win32"=>["Chronicle.Exe"]}, "id"=>878, "name"=>"Chronicle - Runescape Legends"}, {"executables"=>{"win32"=>["SpinTires.exe"]}, "id"=>879, "name"=>"Spintires"}, {"executables"=>{"win32"=>["AIWar.exe"]}, "id"=>880, "name"=>"AI War: Fleet Command"}, {"executables"=>{"win32"=>["STEINSGATE.exe"]}, "id"=>881, "name"=>"STEINS;GATE"}, {"executables"=>{"win32"=>["XR_3DA.exe"]}, "id"=>882, "name"=>"S.T.A.L.K.E.R.: Shadow of Chernobyl"}, {"executables"=>{"win32"=>["WormsRevolution.exe"]}, "id"=>883, "name"=>"Worms Revolution"}, {"executables"=>{"win32"=>["EDLaunch.exe", "EliteDangerous64.exe"]}, "id"=>884, "name"=>"Elite Dangerous: Horizons"}, {"executables"=>{"win32"=>["SoulWorker100.exe"]}, "id"=>885, "name"=>"Soul Worker Online"}, {"executables"=>{"win32"=>["Proteus.exe"]}, "id"=>886, "name"=>"Mega Man Legacy Collection"}]
3
- end
data/util/update_lists.rb DELETED
@@ -1,20 +0,0 @@
1
- require 'open-uri'
2
- require 'json'
3
-
4
- # Thanks to abalabahaha for hosting this continually-updating version of the Discord games list.
5
- GAMES_LIST_URL = 'https://abal.moe/Discord/JSON/games.json'
6
- GAMES_LIST_FILE_PATH = 'lib/discordrb/games_list.rb'
7
-
8
- raw_json = open(GAMES_LIST_URL).read
9
- puts "Loaded #{raw_json.length} bytes from #{GAMES_LIST_URL}"
10
-
11
- parsed = JSON.parse(raw_json)
12
- puts "Loaded #{parsed.length} games"
13
-
14
- list = "module Discordrb::Games
15
- @raw_games = #{parsed}
16
- end
17
- "
18
-
19
- File.write(GAMES_LIST_FILE_PATH, list)
20
- puts "Successfully wrote games list to #{GAMES_LIST_FILE_PATH}"